顺序队列和链表队列存储结构和基本操作 摘要:#include<iostream> using namespace std; /*队列的顺序存储结构*/ #define MAXQSIZE 100 typedef struct { …… 文章列表 2024年05月19日 0 点赞 0 评论 118 浏览 评分:0.0
地址指针操作字符串和字符串中的某个字符*p 摘要:char *p="My intrests! ""My intrests! "这个字符串的意义只相当于首地址。=赋值后,相当于把字符串首地址赋值给了指针变量p。妙用无穷啊。比数组方便,不用初始化数组元素…… 文章列表 2024年05月18日 0 点赞 0 评论 149 浏览 评分:0.0
顺序栈和链表栈存储结构和基本操作 摘要:#includeusing namespace std; /*顺序栈*/ #define MAXSIZE 100 /*如果是顺序栈,栈顶和栈底指针也可以用int型,通过下标定位*/ type…… 文章列表 2024年05月18日 0 点赞 0 评论 147 浏览 评分:0.0
自加自减单目运算符++ --使用()无法改变优先级 摘要:C和C++中,自加++自减--都是从右向左运算。a=++i, 从右向左就是i变量的左边是++,先自增1,即(i+1)运算后给a赋值,--于此相同。a=i++, 从右向左就是i变量的左边是=,先赋值,然…… 文章列表 2024年05月18日 0 点赞 0 评论 187 浏览 评分:9.9
链表的基础操作 摘要:#include/*链表头结点内容为空*/ /*链表为顺序存取:从头指针一次按顺序找*/ typedef struct LNode { int data; struct LNode …… 文章列表 2024年05月15日 0 点赞 0 评论 126 浏览 评分:0.0
归并排序222 摘要:#include<iostream> using namespace std; int term[100]; void mergsort(int a[],int l,int r) { if…… 文章列表 2024年05月15日 0 点赞 0 评论 109 浏览 评分:0.0
快速排序111 摘要:#include<iostream>using namespace std;void qicksort(int a[],int l,int r){ if(l>=r) return; int i=l-1…… 文章列表 2024年05月15日 0 点赞 0 评论 130 浏览 评分:0.0
两个链表合成2 摘要:#include <stdio.h>typedef struct LNode{ int data; struct LNode* next;}LNode,*linkList;void initList(…… 文章列表 2024年05月15日 0 点赞 0 评论 128 浏览 评分:0.0
两个链表合并 摘要:#include <stdio.h> typedef struct LNode{ int data; struct LNode* next; }LNode,*linkList; vo…… 文章列表 2024年05月15日 0 点赞 0 评论 164 浏览 评分:0.0
线性表顺序表 摘要:#include<iostream> using namespace std; #define MAXSIZE 1000000 typedef struct { int *elem; …… 文章列表 2024年05月15日 0 点赞 0 评论 128 浏览 评分:0.0