摘要:
1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 #include <vector> 5 #include <stack> 6 #include <algorithm> 7 using namespace std; 8 9 typedef enum{ 10 Thread, 11 Link 12 }Tag; 13 14 typedef struct Node 15 { 16 int data; 17 struct Node * lchild; 阅读全文
posted @ 2013-01-07 16:21
brainworm
阅读(166)
评论(0)
推荐(0)