摘要: 初步实现了一个接口: 1 #include 2 #include 3 #include 4 #include "lyPublic/lyCodeConvert.h" 5 #define X_LONGSEN 500 6 #define Y_LONGWORD 100 7 struct node 8 { 9 char MWord[Y_LONGWORD]; //对应的最高权权值 10 int order; //权值、并作为标记是否有词 11 struct node *next[16]; 12 }; 13 14 typedef struct node n... 阅读全文
posted @ 2013-07-26 13:24 煮人为乐 阅读(4013) 评论(0) 推荐(0) 编辑