diff --git a/kmaplib/HashMap_test.c b/kmaplib/HashMap_test.c index cad4e54..4ba27e6 100644 --- a/kmaplib/HashMap_test.c +++ b/kmaplib/HashMap_test.c @@ -1,7 +1,7 @@ #include #include #include -#include +#include "xiphashmap.h" static void name_print( int idx, char * key, void * value); @@ -21,7 +21,7 @@ int main() int i = 0; int length = 15; char tmpname[51]; - /*初始化put*/ + /*鍒濆鍖杙ut*/ for ( i = 0; i < length ; i++) { strcpy( tmpname, name[i]); @@ -29,29 +29,29 @@ int main() XipHashmapPut( hashmap, tmpname, tmpname, strlen(tmpname)+1); } - /*打印和检查*/ + /*鎵撳嵃鍜屾鏌*/ XipHashmapPrint(hashmap, NULL); - /*查看set是否好用*/ + /*鏌ョ湅set鏄惁濂界敤*/ printf("GetSize--[%d]", XipHashmapSize(hashmap, NULL, NULL, NULL, NULL, NULL)); XipHashmapPut( hashmap, "panzi", "iceskyiceskyicesky", strlen("iceskyiceskyicesky")+1); XipHashmapPrint(hashmap, name_print); printf("GetNum--[%d]", XipHashmapNum(hashmap)); printf("GetSize--[%d]", XipHashmapSize(hashmap, NULL, NULL, NULL, NULL, NULL)); - /*查看get是否好用*/ + /*鏌ョ湅get鏄惁濂界敤*/ for ( i = 0; i< length; i++) printf("get(%15s): %15s\n", name[i], (char *)XipHashmapGet(hashmap, name[i])); XipHashmapPrint(hashmap, NULL); - /*查看remove是否好用*/ + /*鏌ョ湅remove鏄惁濂界敤*/ printf("remove(%15s): %d\n", "lionsoul", XipHashmapRemove(hashmap, "lionsoul")); XipHashmapPrint(hashmap, NULL); - /*查看destory*/ + /*鏌ョ湅destory*/ XipHashmapDestory(hashmap); hashmap = NULL; - + system("pause"); return 0; }