辣子呀

2018年9月24日

堆排序

摘要: #include <stdio.h>#include <stdlib.h>typedef struct node{ int data; struct node *left,*right;}BTNode; BTNode *CreateWanTree(int a[],int n);void Forder 阅读全文

posted @ 2018-09-24 21:18 辣子呀 阅读(100) 评论(0) 推荐(0) 编辑

单向循环链表

摘要: #include<stdio.h>#include<stdlib.h>typedef struct node{ int data; struct node *next;}ElemSN; ElemSN *Creatlink(int a[],int n);void Printlink(ElemSN *h 阅读全文

posted @ 2018-09-24 18:39 辣子呀 阅读(163) 评论(0) 推荐(0) 编辑

单向链表的查找与删除

摘要: #include<stdio.h>#include<stdlib.h>#define N 7 typedef struct node{ int data; struct node *next;}ElemSN; ElemSN *Creatlink(int a[]);void Printlink(Ele 阅读全文

posted @ 2018-09-24 18:38 辣子呀 阅读(386) 评论(0) 推荐(0) 编辑

单向链表

摘要: #include<stdio.h>#include<stdlib.h>#define N 6 typedef struct node{ int data; struct node *next;}ElemSN; ElemSN * Creatlink(int a[]);int Count(ElemSN 阅读全文

posted @ 2018-09-24 18:33 辣子呀 阅读(104) 评论(0) 推荐(0) 编辑

导航