- 1、本文档共7页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
#include stdio.h#include stdlib.h#define N 8typedef struct list{ int data; struct list *next;} SLIST;void fun( SLIST *h){ SLIST *p, *q; p=h-next; if (p!=NULL){ q=p-next; while(q!=NULL){ if (p-data==q-data){ p-next=q-next;/**********found**********/ free(q);//answer/**********found**********/ q=p-next;//answer } else{ p=q;/**********found**********/ q=q-next; } } }}SLIST *creatlist(int *a){ SLIST *h,*p,*q; inti; h=p=(SLIST *)malloc(sizeof(SLIST));for(i=0; iN; i++){ q=(SLIST *)malloc(sizeof(SLIST)); q-data=a[i]; p-next=q; p=q; } p-next=0; return h;}void outlist(SLIST *h){ SLIST *p; p=h-next; if (p==NULL) printf(\nThe list is NULL!\n); else{ printf(\nHead); do { printf(-%d,p-data); p=p-next; } while(p!=NULL);printf(-End\n); }}main( ){ SLIST *head; int a[N]={1,2,2,3,4,4,4,5}; head=creatlist(a);printf(\nThe list before deleting :\n); outlist(head); fun(head);printf(\nThe list after deleting :\n); outlist(head);}#include stdio.h#define N 20void fun(int a[], int n){ inti, j, t, p; for (j = 0 ;j n-1 ;j++) {/************found************/ p = j; for (i = j;i n; i++) if(a[i] a[p])/************found************/ p = i; t = a[p] ; a[p] = a[j] ; a[j] = t; }}main(){int a[N]={9,6,8,3,-1},i, m = 5;printf(排序前的数据:) ;for(i = 0;i m;i++) printf(%d ,a[i]); printf(\n); fun(a,m);printf(排序后的数据:) ;for(i = 0;i m;i++) printf(%d ,a[i]); printf(\n);}#include stdio.h#define M 100void fun ( int m, int *a , int *n ){inti,j=0; for(i=1;i=m;i++) if(i%7==0||i%11==0) a[j++]=i; *n=j; }main( ){ int aa[M], n, k; void NONO ( ); fun ( 50, aa, n ); for ( k = 0; k n; k++ ) if((k+1)%20==0) printf(\n); else printf( %4d, aa[k] );printf(\n) ;NONO( );}void NONO ( ){/* 本函数用于打开文件,输入数据,调用函数,输出数据,关闭文件。 */ FILE *fp, *wf ;inti, n, j, k, aa[M], sum ;fp = fopen(in.dat,r) ;wf = fopen(out.dat,w) ;for(i = 0 ; i 10 ;
您可能关注的文档
最近下载
- 办公用品订购合同范本.docx VIP
- WORD版本刻度尺-A4纸打印可用.doc
- 90nm逻辑产品Peeling缺陷的解决方案.pdf
- 神经系统的分级调节.pptx VIP
- 中建施工总平面布置图设计(69页).pdf
- 2024年公共卫生与预防医学继续教育平台“大学习”活动线上培训栏目考试题库(1392题).docx
- 北师大版(2023)必修第一册 Unit 2 Sports and Fitness单元教学设计.pdf VIP
- 2016-2023年长沙民政职业技术学院高职单招(英语/数学/语文)笔试历年参考题库含答案解析.docx
- 农业经济学-农业资金.ppt VIP
- 齐鲁医学神经系统疾病的辅助检查.ppt VIP
文档评论(0)