随笔分类 - 数据结构
摘要:#include <stdio.h> #include <stdlib.h> struct Bintree { char info; struct Bintree *lchild,*rchild; }; typedef struct Bintree *BinTreeNode; typedef str
阅读全文
摘要:#include <iostream>#include <stdlib.h>using namespace std;struct node{ int data; struct node *link;};typedef struct node *plist;plist creat_list(int m
阅读全文

浙公网安备 33010602011771号