摘要:
初步实现了一个接口: 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... 阅读全文