顺序队列和链表队列存储结构和基本操作 摘要:#include<iostream>using namespace std;/*队列的顺序存储结构*/#define …… 文章列表 2024年05月19日 0 点赞 0 评论 44 浏览 评分:0.0
地址指针操作字符串和字符串中的某个字符*p 摘要:char*p="Myintrests!""Myintrests!"这个字符串的意义只相当于首地址。=赋值后,相当于把字符串首地址…… 文章列表 2024年05月18日 0 点赞 0 评论 60 浏览 评分:0.0
顺序栈和链表栈存储结构和基本操作 摘要:#includeusing namespace std;/*顺序栈*/#define  MAXSIZE 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/*链表头结点内容为空*//*链表为顺序存取:从头指针一次按顺序找*/ typedef struct LNode{int&…… 文章列表 2024年05月15日 0 点赞 0 评论 53 浏览 评分:0.0
归并排序222 摘要:#include<iostream>using namespace std;int term[100];void&am…… 文章列表 2024年05月15日 0 点赞 0 评论 38 浏览 评分:0.0
快速排序111 摘要:#include<iostream>usingnamespacestd;voidqicksort(inta[],intl,intr){if(l>=r)retu…… 文章列表 2024年05月15日 0 点赞 0 评论 59 浏览 评分:0.0
两个链表合成2 摘要:#include<stdio.h>typedefstructLNode{ intdata; structLNode*next;}LNod…… 文章列表 2024年05月15日 0 点赞 0 评论 58 浏览 评分:0.0
两个链表合并 摘要:#include <stdio.h>typedef struct LNode{ int&nb…… 文章列表 2024年05月15日 0 点赞 0 评论 56 浏览 评分:0.0
线性表顺序表 摘要:#include<iostream>using namespace std;#define  MAX…… 文章列表 2024年05月15日 0 点赞 0 评论 53 浏览 评分:0.0