摘要: 由于这几天各种忙,于是拖到现在才解决Chapter#03.这里是课件: Data Structure下面是这次的作业。。。Assignment 3: Data Structures·2418 Hardwood Species (1)统计相同字符串的个数,用BST或者排序都可以解决,我是用BST做的,第一次用指针打数据结构,打的真是头痛...View Code #include <stdio.h>#include <string.h>#include <stdlib.h>struct node{ char name[32]; int count; n 阅读全文
posted @ 2012-11-07 13:37 nevergo 阅读(251) 评论(0) 推荐(0) 编辑