摘要: 感动天感动地啊!这道题我提交了整整11次!Runtime Error(ACCESS_VIOLATION)。错的地方在代码里写吧。。主要还是trie树的各种方法没写熟。#include<stdio.h>#include<malloc.h>#include<string.h>#define MAXNUM 27typedef struct tnode{ int mark,count; tnode *next[MAXNUM]; char words[20]; }tnode;tnode *root;char result[20];void init(){ int i; 阅读全文
posted @ 2013-04-18 21:32 Yuki_i 阅读(180) 评论(0) 推荐(0)