鱼C论坛

 找回密码
 立即注册
查看: 1713|回复: 2

C语言有道题不会做

[复制链接]
发表于 2020-5-31 14:31:11 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
题目要求:随机生成30对坐标(整数),删除距离(512,399)500以内的对坐标。
● 链表方式实现,需设计插入、删除、排序三个函数;
● 坐标对使用结构体方式构建,#typedef struct {…} Point;
● X坐标的范围控制在【0,1024】,Y坐标【0,798】;
● 输出要求:先输出30对坐标对,包括ID,X,Y,一行一个;空一行后输出删掉的坐标对的ID;再输出一遍剩下的坐标对,一行一个。(建议坐标输出设计一个函数)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-5-31 20:07:29 | 显示全部楼层
这个问题问的是赤裸裸啊  建议还是百度把  一般没人给你写程序的
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

发表于 2020-6-5 18:38:03 | 显示全部楼层
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
#include<math.h>
#define ERROR 1
#define LONG 1024
#define WILD 798
#define K 30
typedef struct point
{
    int x,y;
    struct point *next;
}point;

int n=K;

void print(struct point *b)
{
    struct point *a;
    a=b;
    while(a->next!=NULL)
    {
        printf("%d,%d\n",a->x,a->y);
        a=a->next;
    }
    printf("\n有%d个坐标\n",n);
}

int distance(struct point *m)
{
    int i;
    i=sqrt((m->x-512)*(m->x-512)+(m->y-399)*(m->y-399));
    return i;
}

struct point *make()
{
    n=0;
    srand((unsigned int)time(NULL));
    struct point *head,*p;
    head=p=(struct point *)malloc(sizeof(struct point));
    head->x=rand()%LONG+0;
    head->y=rand()%WILD+0;
    head->next=NULL;
    p=head;
    for(int i=0;i<K;i++)
    {
        p=head;
        head=(struct point *)malloc(sizeof(struct point));
        head->x=rand()%LONG+0;
        head->y=rand()%WILD+0;
        head->next=p;
        n++;
    }
    return (head);
}

struct point *delete(struct point *m)
{
    int x;
    struct point *p,*p1;
    p1=p=m;
    while(p1->next!=NULL)
    {
        x=distance(p1);
        p=p1->next;
        if(x<500)
        {
            p1->next=p->next;
            n--;
        }
        p1=p;
    }
    return m;
}

struct point *insert(struct point *m)
{
    int j,k,r,s,z=0;
    struct point *a,*b,*c;
    a=b=m;
    printf("插入坐标:\t");
    scanf("%d,%d",&j,&k);
    printf("放在哪个坐标前面: \n");
    scanf("%d,%d",&r,&s);
    c=(struct point *)malloc(sizeof(struct point));
    c->x=j;
    c->y=k;
    while(b->next!=NULL)
    {
        a=b;
        b=b->next;
    if(r==b->x&&s==b->y)
    {
        a->next=c;
        c->next=b;
        n++;
        z=1;
        break;
    }
    }
    if(z==0)
    {
        printf("errror!!\n");
    }
    if(z==1)
        print(m);
    return m;
}

void queue(struct point *m)
{
    struct point *a,*b,*temp;
    a=b=m;
    int c,d;
    c=distance(a);
    d=distance(b);
    printf("这里写个循环,让两个数换位置");
    while(b->next!=NULL)
    {
        b=a->next;
        if(c>d)
        {
            printf("按大小交换位置你应该是会的吧“);
        }
        b=a;
    }
}

void clean(struct point *b)
{
    while(b)
    {
        b=b->next;
        free(b);
    }
    b=NULL;
}

int main()
{
    int a;
    struct point *p;
    p=make();
    print(p);
    while(1)
    {
    printf ("你需要输入的操作:\n1-重新创建链表\n2-删除距离(512,399)500以内的对坐标\n3-插入数据\n4-排序\n");
    scanf("%d",&a);
    if(0<a&&5>a)
        switch(a)
        {
            case 1:clean(p);p=make();print(p);break;
            case 2: p=delete(p);print(p);break;
            case 3: p=insert(p);break;
            case 4: queue(p);print(p);break;  
        }
    else
    {
        printf("the operation is wrong!");
    }
    }
    return 0;
}
准备要吃饭了,排序的函数你就自己写吧,你要的功能都有实现,插入功能是按照插入到某个坐标前来设计的,要是要按个数的话,你稍微自己改一改,大概的写完了,没有那么的简洁
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-13 17:05

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表