c语言
得意霄尽欢
人生得意须尽欢,莫使金樽空对月。
展开
-
c语言单链表反转
#include<stdio.h>#include<stdlib.h>typedef struct Node{ int data; struct Node *next;}Node,*LinkedList;int InitList(LinkedList L){//初始化单链表 L=(LinkedList)malloc(sizeof(Node)); if(!L...原创 2019-10-20 22:03:47 · 247 阅读 · 1 评论 -
c语言顺序表一趟希尔排序
#include<stdio.h>#include<stdlib.h>typedef struct{ int *elem; int length;//记录存储的数据个数 }SqList;void Shell(SqList &L,int i){//单位为i的一躺希尔排序 if(i>=L.length||i<1){ return; }...原创 2019-10-20 21:04:51 · 713 阅读 · 0 评论 -
c语言栈的括号匹配
#include<stdio.h>#include<stdlib.h>#include<malloc.h>typedef struct{ char *top; char *base; int stacksize; }SqStack;int InitStack(SqStack &L){ L.base=(char *)malloc(100...原创 2019-10-20 21:02:55 · 171 阅读 · 0 评论