辣子呀

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 辣子呀 阅读(101) 评论(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 辣子呀 阅读(166) 评论(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 辣子呀 阅读(388) 评论(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 辣子呀 阅读(108) 评论(0) 推荐(0) 编辑

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

导航

统计

点击右上角即可分享
微信分享提示