文章列表

筛选

自加自减单目运算符++ --使用()无法改变优先级

摘要:C和C++中,自加++自减--都是从右向左运算。a=++i,从右向左就是i变量的左边是++,先自增1,即(i+1)运算后给a赋值,--于此相同。a=i++,从右向左就是i变量的左边是=,先赋值,然后才……

链表的基础操作

摘要:#include/*链表头结点内容为空*//*链表为顺序存取:从头指针一次按顺序找*/ typedef struct LNode{int&……

归并排序222

摘要:#include<iostream>using namespace std;int term[100];void m……

快速排序111

摘要:#include<iostream>usingnamespacestd;voidqicksort(inta[],intl,intr){if(l>=r)return;inti=l-1;……

两个链表合成2

摘要:#include<stdio.h>typedefstructLNode{ intdata; structLNode*next;}LNode,*linkL……

两个链表合并

摘要:#include <stdio.h>typedef struct LNode{ int data;……

线性表顺序表

摘要:#include<iostream>using namespace std;#define  MAXSIZE&amp……