问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

C语言、数据结构。

发布网友 发布时间:2022-04-30 08:32

我来回答

2个回答

热心网友 时间:2022-06-19 20:31

方案一#include <stdio.h>
#include <conio.h>
#define N 10typedef struct node
{
char name[20];
struct node *link;
}stud;stud * creat()
{
stud *p,*h,*s;
int i,n;
puts("\nPlease input the number of linklist:");
scanf("%d",&n);
if((h=(stud *)malloc(sizeof(stud)))==NULL)
{
printf("cannot find space!");
exit(0);
}
h->name[0]='\0';
h->link=NULL;
p=h;
for(i=0;i<n;i++)
{
if((s= (stud *) malloc(sizeof(stud)))==NULL)
{
printf("cannot find space!");
exit(0);
}
p->link=s;
printf("please input %d student's name: ",i+1);
scanf("%s",s->name);
s->link=NULL;
p=s;
} return(h);
}stud * search(stud *h,char *x)
{
stud *p;
char *y;
p=h->link;
while(p!=NULL)
{
y=p->name;
if(strcmp(y,x)==0)
return(p);
else p=p->link;
}
if(p==NULL)
printf("data not find!");
return 0;
}stud * search2(stud *h,char *x)
{
stud *p,*s;
char *y;
p=h->link;
s=h;
while(p!=NULL)
{
y=p->name;
if(strcmp(y,x)==0)
return(s);
else
{
p=p->link;
s=s->link;
}
}
if(p==NULL)
printf("data not find!");
return 0;
}void insert(stud *p)
{
char stuname[20];
stud *s;
if((s= (stud *) malloc(sizeof(stud)))==NULL)
{
printf("cannot find space!");
exit(0);
}
printf("\nplease input the student's name: ");
scanf("%s",stuname);
strcpy(s->name,stuname);
s->link=p->link;
p->link=s;
}void del(stud *x,stud *y)
{
stud *s;
s=y;
x->link=y->link;
free(s);
}void print(stud *h)
{
stud *p;
p=h->link;
printf("Now the link list is:\n");
while(p!=NULL)
{
printf("%s ",&*(p->name));
p=p->link;
}
printf("\n");
}void quit()
{
clrscr();
puts("\n Thank you for your using!\n Press any key to quit...");
getch();
exit(0);
}void menu(void)
{
clrscr();
printf(" simple linklise realization of c\n");
printf(" ||=====================================||\n");
printf(" || ||\n");
printf(" || [1] create linklist ||\n");
printf(" || [2] seach ||\n");
printf(" || [3] insert ||\n");
printf(" || [4] delete ||\n");
printf(" || [5] print ||\n");
printf(" || [6] exit ||\n");
printf(" || ||\n");
printf(" || if no list exist,create first ||\n");
printf(" || ||\n");
printf(" ||=====================================||\n");
printf(" Please input your choose(1-6): ");
}main()
{
int choose;
stud *head,*searchpoint,*forepoint;
char fullname[20];
while(1)
{
menu();
scanf("%d",&choose);
switch(choose)
{
case 1:
clrscr();
head=creat();
puts("Linklist created successfully! \nPress any key to return...");
getch();
break;
case 2:
clrscr();
printf("Input the student's name which you want to find:\n");
scanf("%s",fullname);
searchpoint=search(head,fullname);
printf("The stud name you want to find is:%s",*&searchpoint->name);
printf("\nPress any key to returen...");
getchar();
getchar();
break;
case 3:
clrscr();
insert(head);
print(head);
printf("\nPress any key to returen...");
getchar();getchar();
break;
case 4:
clrscr();
print(head);
printf("\nInput the student's name which you want to delete:\n");
scanf("%s",fullname);
searchpoint=search(head,fullname);
forepoint=search2(head,fullname);
del(forepoint,searchpoint);
print(head);
puts("\nDelete successfully! Press any key to return...");
getchar();
getchar();
break;
case 5:print(head);
printf("\nPress any key to return...");
getchar();getchar();
break;
case 6:quit();
break;
default:
clrscr();
printf("Illegal letter! Press any key to return...");
menu();
getchar();
}
}
}方案二#include "stdafx.h"
#include "stdio.h"
#ifndef SQLIST_H
#define SQLIST_H
#include <stdlib.h>
#define List_INIT_SIZE 100 //线性表的存储空间初始大小
#define LIST_INCREMENT 10 //分配增量
#define OVERFLOW -2
#define OK 1
#define ERROR -1
#define TRUE 1
#define FALSE 0
typedef int ElemType;
typedef struct{
ElemType *elem; //存储空间基址
int length; //当前长度
int size; //当前存储容量(sizeof(ElemType)为单位)
}SqList;
int InitList(SqList &L)
{
//构建一个线性表L
L.elem = (ElemType*)malloc(List_INIT_SIZE*sizeof(ElemType));
if(!L.elem)
{
exit(OVERFLOW);
}
L.length = 0;
L.size = List_INIT_SIZE;
return OK;
}//InitListvoid DestoryList(SqList &L)
{
if(!L.elem)
{
delete L.elem;
L.elem = NULL;
}
L.length = 0;
L.size = 0;
}//DestoryListvoid ClearList(SqList &L)
{
L.elem = NULL;
L.length = 0;
L.size = List_INIT_SIZE;
}//ClearListint ListEmpty(SqList L)
{
if(L.length > 0)
{
return TRUE;
}
else
{
return FALSE;
}
}//ListEmptyint ListLength(SqList L)
{
return L.length;
}//ListLengthint ListInsert(SqList &L, int i, ElemType e)
{
if(i<1 || i>ListLength(L)+1) //需满足条件1<i<ListLength(L)+1
{
return ERROR;
}
ElemType * NewBase; //新的基址
if(L.length > L.size) //空间已满
{
NewBase = (ElemType*)malloc((L.size+LIST_INCREMENT)*sizeof(ElemType)); //申请新的空间
if(!NewBase)
{
exit(OVERFLOW);
}
L.elem = NewBase;
L.size +=LIST_INCREMENT;
delete NewBase;
NewBase = NULL;
}
ElemType *p;
ElemType *temp;
p = &(L.elem[i-1]); //取得i的位置,即插入位置
for(temp = &(L.elem[L.length-1]);temp>p;--temp) //将插入点后的所有元素向后移动一位
{
*(temp+1) = *temp;
}
*p = e;
++L.length;
return OK;
}//ListInsertint ListDelete(SqList &L, int i, ElemType &e)
{
if (i<0 || i>ListLength(L)) {
return ERROR;
}
ElemType *p;
p = &(L.elem[i-1]);
e = *p;
ElemType *pos;
pos =&(L.elem[L.length-1]);
for(++p; p<=pos; ++p){
*(p-1) = *p;
}
--L.length;
return OK;
}
#endif //SQLIST_H
int main(){
SqList list;
ElemType e;
InitList(list);
ListInsert(list, 1, 1);
ListInsert(list, 2, 2);
ListInsert(list, 3, 3);
ListInsert(list, 4, 4);
ListInsert(list, 5, 5);
for(int i =0; i<list.length; i++){
printf("%d\n",list.elem[i]);
}
ListDelete(list, 2, e);
for(i =0; i<list.length; i++){
printf("%d\n",list.elem[i]);
} printf("%d\n", list.length);

return 1;
}

热心网友 时间:2022-06-19 20:32

代码还是有些多。我想直接把代码打包发给你。
留个邮箱?
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
陕西职务侵占案立案准则 结婚后我的恋情维系了十年,怎么做到的? 玉米仁子饭产自哪里 中国期货交易所的交易品种有哪些? 历史要怎么读,有啥诀窍 高中历史诀窍 年终会活动策划方案 深度解析:第一财经回放,探索财经新风向 逆水寒手游庄园怎么邀请好友同住 逆水寒手游 逆水寒不同区可以一起组队吗? 关于C语言数据结构的问题 C语言数据结构问题 女生发破涕为笑的表情一般怎么回复? 数据结构(C语言),请救高手,万分感谢. 大连径点科技,笔试通过了,明天要我去面试,软件开发C语言的,急求大师提示都问什么题?在线等!!!!! C和数据结构就业问题 没错,又是那个我!求图,四月是你的谎言图,和我发的差不多就行,要清晰 他是没错就是我表情包 有道C语言的面试题: C语言中的数据结构问题 没错,又是我,又来求高清原图了...小鹿的这张高清原图? C程序数据结构线性链表 排序sort(面试题 填空题 )自己做了一部分,后面不会做 前面的还不知对否 oppo手机屏幕没事 触屏失灵怎么办 oppo手机触屏失灵输不了密码 辩论会善意的谎言反方资料 “善意的谎言”辩论会反方 辩论赛:善意的谎言反方 善意的谎言与诚实辩论赛辩词 列举善意的谎言辩论会反方问题有哪些? 急急急!!!洗衣机进水了,不能正常工作了 28号在抖音上买的衣服到现在没到货怎么查? c语言求助,关于数据结构方面 请问&#xF91D;这个表情是“我也是”还是“你好”的意思? 想找一个表情包,就是一些人总发“哦”,想那个表情包上写着再发“哦”我就怎么样的。 手机投屏看电视怎么才可以把微信声音抖音声音关掉 跪求一篇高三后的学习计划书...1000字左右 学习计划800字 高三最后一百天学习计划的作文,谢谢… 高三学习的计划 如何避免装修安全隐患 家装隐患有哪些 如何避开家装隐患 不开玩笑,春季装修警惕三大安全隐患! 安全小知识,装修中哪些安全隐患需注意? 如何在装修时规避火灾隐患? 家庭装修涉及到很多安全问题,家庭装修安全隐患有什么? 绝味擀面皮配方。 ? 怎么做。 好想吃。 这边都买不到 家庭装修有哪些不正确的做法,如何去避免安全隐患 求宿迁擀面皮的汤汁的正宗做法~ 家装中有哪些安全隐患 解除十大隐患方法 家居装修不得不防的7个细节隐患 你可了解?