摘要: 1 #include 2 #include 3 typedef struct node{ 4 char data; 5 struct node *left; 6 struct node *right; 7 }Node; 8 9 int i = 0; 10 char str[100]; 11 12 void create(Node** p){ 13 ... 阅读全文
posted @ 2016-05-19 22:28 赤云封天 阅读(388) 评论(0) 推荐(0) 编辑
摘要: 样例输入 4 0 1 0 1 1 0 0 0 0 0 0 1 1 0 1 0 样例输出 0 1 3 2 1 #include <stdio.h> 2 #include <memory.h> 3 #define COUNT 55 4 typedef struct { 5 int arc[COUNT][ 阅读全文
posted @ 2016-05-19 22:27 赤云封天 阅读(410) 评论(0) 推荐(0) 编辑