第一范文网 - 专业文章范例文档资料分享平台

C语言学习知识程序设计100个简单的经典编辑例子

来源:用户分享 时间:2025/5/19 18:01:50 本文由loading 分享 下载这篇文档手机版
说明:文章内容仅供预览,部分内容可能不全,需要完整文档或者需要复制内容,请下载word后使用。下载word有问题请添加微信号:xxxxxxx或QQ:xxxxxx 处理(尽可能给您提供完整文档),感谢您的支持与谅解。

.\\

struct list { int data;

struct list *next; };

typedef struct list node; typedef node *link; void main() { link ptr,head; int num,i;

ptr=(link)malloc(sizeof(node)); ptr=head;

printf(\for(i=0;i<=4;i++) {

scanf(\ ptr->data=num;

ptr->next=(link)malloc(sizeof(node)); if(i==4) ptr->next=null; else ptr=ptr->next; }

ptr=head;

while(ptr!=null)

{ printf(\ ptr=ptr->next; } }

============================================================== 【程序73】

题目:反向输出一个链表。 1.程序分析: 2.程序源代码:

/*reverse output a list*/ #include \#include \struct list { int data;

struct list *next; };

typedef struct list node; typedef node *link; void main()

{ link ptr,head,tail; int num,i;

tail=(link)malloc(sizeof(node));

.\\

tail->next=null; ptr=tail;

printf(\ for(i=0;i<=4;i++) {

scanf(\ ptr->data=num;

head=(link)malloc(sizeof(node)); head->next=ptr; ptr=head; }

ptr=ptr->next; while(ptr!=null)

{ printf(\ ptr=ptr->next; }}

============================================================== 【程序74】

题目:连接两个链表。 1.程序分析: 2.程序源代码: #include \#include \struct list { int data;

struct list *next; };

typedef struct list node; typedef node *link;

link delete_node(link pointer,link tmp) {if (tmp==null) /*delete first node*/ return pointer->next; else

{ if(tmp->next->next==null)/*delete last node*/ tmp->next=null;

else /*delete the other node*/ tmp->next=tmp->next->next; return pointer; } }

void selection_sort(link pointer,int num) { link tmp,btmp; int i,min; for(i=0;i {

.\\

tmp=pointer; min=tmp->data; btmp=null;

while(tmp->next)

{ if(min>tmp->next->data) {min=tmp->next->data; btmp=tmp; }

tmp=tmp->next; }

printf(\

pointer=delete_node(pointer,btmp); } }

link create_list(int array[],int num) { link tmp1,tmp2,pointer; int i;

pointer=(link)malloc(sizeof(node)); pointer->data=array[0]; tmp1=pointer;

for(i=1;i{ tmp2=(link)malloc(sizeof(node)); tmp2->next=null; tmp2->data=array[i]; tmp1->next=tmp2; tmp1=tmp1->next; }

return pointer; }

link concatenate(link pointer1,link pointer2) { link tmp; tmp=pointer1; while(tmp->next) tmp=tmp->next; tmp->next=pointer2; return pointer1; }

void main(void)

{ int arr1[]={3,12,8,9,11}; link ptr;

ptr=create_list(arr1,5); selection_sort(ptr,5); }

============================================================== 【程序75】

.\\

题目:放松一下,算一道简单的题目。 1.程序分析: 2.程序源代码: main() {

int i,n;

for(i=1;i<5;i++) { n=0; if(i!=1) n=n+1; if(i==3) n=n+1; if(i==4) n=n+1; if(i!=4) n=n+1; if(n==3)

printf(\ } }

============================================================== 【程序76】

题目:编写一个函数,输入n为偶数时,调用函数求1/2+1/4+...+1/n,当输入n为奇数时,调用函数

1/1+1/3+...+1/n(利用指针函数) 1.程序分析: 2.程序源代码: main()

#include \main() {

float peven(),podd(),dcall(); float sum; int n; while (1) {

scanf(\ if(n>1) break; }

if(n%2==0) {

printf(\ sum=dcall(peven,n);

C语言学习知识程序设计100个简单的经典编辑例子.doc 将本文的Word文档下载到电脑,方便复制、编辑、收藏和打印
本文链接:https://www.diyifanwen.net/c6ab8e4t3l401k8300wxv0h1ll01eyq01c10_11.html(转载请注明文章来源)
热门推荐
Copyright © 2012-2023 第一范文网 版权所有 免责声明 | 联系我们
声明 :本网站尊重并保护知识产权,根据《信息网络传播权保护条例》,如果我们转载的作品侵犯了您的权利,请在一个月内通知我们,我们会及时删除。
客服QQ:xxxxxx 邮箱:xxxxxx@qq.com
渝ICP备2023013149号
Top