基本数据结构-带头节点单链表-将A分解成含奇数位置元素A和含偶数元素位置的B,且相对位置不变 摘要:#代码```cvoidcreat(LNode*&A){LNode*B=newLNode;B->next=NULL;LNode*ra=A,*rb=B,*p=A->next;A->…… 文章列表 2023年10月02日 0 点赞 0 评论 97 浏览 评分:0.0
基本数据结构-单链表-将{a1,b1,a2,b2,,,,,,an,bn}拆分成{a1,a2,,,,,an}和{bn,bn-1,,,,b2,b1} 摘要:#代码```cLinkListcreat(LNode*&A){LNode*B=newLNode;B->next=NULL;LNode*ra=A,*p=A->next,*q;whil…… 文章列表 2023年10月03日 0 点赞 0 评论 52 浏览 评分:0.0
基本数据结构-单链表-删除递增中重复元素 摘要:#代码```cvoiddel_same(LNode*&L){LNode*p=L->next;LNode*q;if(p==NULL)returnfalse;while(p->next…… 文章列表 2023年10月03日 0 点赞 0 评论 70 浏览 评分:0.0
基本数据结构-单链表-两个递增序列组合成非递减有序链表 摘要:#代码```cvoidfun(LNode*&A,LNode*&B){LNode*p=A->next;*q=B->next;A-next=NULL,B->next=NU…… 文章列表 2023年10月03日 0 点赞 0 评论 74 浏览 评分:0.0
基本数据结构-单链表-两个递增有序表合成非递增有序链表 摘要:#代码```cvoidfun(LNode*&A,LNode*&B){LNode*p=A->next,*q=B->next,*s;A->next=NULL,B->…… 文章列表 2023年10月03日 0 点赞 0 评论 59 浏览 评分:0.0
基本数据结构-单链表-A,B中找出公共元素产生C(不破坏A,B) 摘要:#代码```cLinkListcreate(LNode*&A,LNode*&B){LNode*p=A-next;LNode*q=B->next;LNode*C=newLNode;…… 文章列表 2023年10月04日 0 点赞 0 评论 75 浏览 评分:0.0
C语言成绩评价 摘要:#include&nbsp;<stdio.h>int&nbsp;main(){int&nbsp;a,&nbsp;b;scanf_s("%d&quo…… 文章列表 2023年10月13日 0 点赞 0 评论 28 浏览 评分:0.0
待测试一; 摘要:#include&nbsp;<bits/stdc++.h>#include&nbsp;<unistd.h>#include&nbsp;<conio…… 文章列表 2023年10月14日 0 点赞 0 评论 30 浏览 评分:0.0
发表新文章 文章 > 写新文章 摘要:#include&nbsp;<bits/stdc++.h>using&nbsp;namespace&nbsp;std;int&nbsp;main(){&am…… 文章列表 2023年11月04日 0 点赞 0 评论 22 浏览 评分:0.0
大连交通大学五年制C语言试卷一 考试笔记 摘要:24.程序执行总是从main函数开始,如果有有其他函数,则完成对其他函数的调用后再返回到主函数,最后由main函数结束整个程序…… 文章列表 2023年11月14日 0 点赞 0 评论 85 浏览 评分:0.0