顺序队列和链表队列存储结构和基本操作 摘要:#include<iostream>using&nbsp;namespace&nbsp;std;/*队列的顺序存储结构*/#define&nbsp;MAXQSIZE…… 文章列表 2024年05月19日 0 点赞 0 评论 44 浏览 评分:0.0
地址指针操作字符串和字符串中的某个字符*p 摘要:char*p="Myintrests!""Myintrests!"这个字符串的意义只相当于首地址。=赋值后,相当于把字符串首地址赋值给了指针变量p。妙用无穷啊。…… 文章列表 2024年05月18日 0 点赞 0 评论 61 浏览 评分:0.0
顺序栈和链表栈存储结构和基本操作 摘要:#includeusing&nbsp;namespace&nbsp;std;/*顺序栈*/#define&nbsp;&nbsp;MAXSIZE&nbsp;100…… 文章列表 2024年05月18日 0 点赞 0 评论 63 浏览 评分:0.0
自加自减单目运算符++ --使用()无法改变优先级 摘要:C和C++中,自加++自减--都是从右向左运算。a=++i,从右向左就是i变量的左边是++,先自增1,即(i+1)运算后给a赋值,--于此相同。a=i++,从右向左就是i变量的左边是=,先赋值,然后才…… 文章列表 2024年05月18日 0 点赞 0 评论 78 浏览 评分:9.9
链表的基础操作 摘要:#include/*链表头结点内容为空*//*链表为顺序存取:从头指针一次按顺序找*/&nbsp;typedef&nbsp;struct&nbsp;LNode{int&…… 文章列表 2024年05月15日 0 点赞 0 评论 53 浏览 评分:0.0
归并排序222 摘要:#include<iostream>using&nbsp;namespace&nbsp;std;int&nbsp;term[100];void&nbsp;m…… 文章列表 2024年05月15日 0 点赞 0 评论 38 浏览 评分:0.0
快速排序111 摘要:#include<iostream>usingnamespacestd;voidqicksort(inta[],intl,intr){if(l>=r)return;inti=l-1;…… 文章列表 2024年05月15日 0 点赞 0 评论 59 浏览 评分:0.0
两个链表合成2 摘要:#include<stdio.h>typedefstructLNode{&nbsp;intdata;&nbsp;structLNode*next;}LNode,*linkL…… 文章列表 2024年05月15日 0 点赞 0 评论 59 浏览 评分:0.0
两个链表合并 摘要:#include&nbsp;<stdio.h>typedef&nbsp;struct&nbsp;LNode{&nbsp;int&nbsp;data;…… 文章列表 2024年05月15日 0 点赞 0 评论 56 浏览 评分:0.0
线性表顺序表 摘要:#include<iostream>using&nbsp;namespace&nbsp;std;#define&nbsp;&nbsp;MAXSIZE&…… 文章列表 2024年05月15日 0 点赞 0 评论 53 浏览 评分:0.0