摘要: 1 #include <stdio.h> 2 #include <string.h> 3 #define N 50 //叶子结点数 4 #define M 2*N-1 //树中结点总数 5 typedef struct 6 { 7 char data[5]; //结点值 8 int weight; 阅读全文
posted @ 2020-04-29 11:53 沅清的小窝 阅读(590) 评论(0) 推荐(0)