摘要: 1.#include <stdio.h>#include <stdlib.h>#include "Hash.h"/* 哈希技术的实现 */struct Student{ char* id; char* name; int age;};int compare_id(HashKey* k1, HashK 阅读全文
posted @ 2016-12-19 13:19 王小波私人定制 阅读(1429) 评论(0) 推荐(0) 编辑
摘要: 1.#include <stdio.h>#include <stdlib.h>#include "BSTree.h"/* 二叉树排序算法 */struct Node{ BSTreeNode header; char v;};void printf_data(BSTreeNode* node){ if 阅读全文
posted @ 2016-12-19 13:00 王小波私人定制 阅读(865) 评论(0) 推荐(0) 编辑
DON'T FORGET TO HAVE FUN