随笔分类 -  数据结构

摘要:#include <stdio.h> #include <stdlib.h> struct Bintree { char info; struct Bintree *lchild,*rchild; }; typedef struct Bintree *BinTreeNode; typedef str 阅读全文
posted @ 2020-11-26 18:56 嘻嘻嘻ziixi 阅读(125) 评论(0) 推荐(0)
摘要:#include <iostream>#include <stdlib.h>using namespace std;struct node{ int data; struct node *link;};typedef struct node *plist;plist creat_list(int m 阅读全文
posted @ 2020-09-19 16:58 嘻嘻嘻ziixi 阅读(127) 评论(0) 推荐(0)