2012年10月16日

正向最大长度匹配与逆向最大长度匹配

摘要: package com.smart.basic;public class TernarySearchTrie { public final class TSTNode { /** * 节点的值,词原文,词性,词频等 */ public String data = null; /** * 低节点 */ protected TSTNode loNode; /** * 相等节点 */ protected TSTNod... 阅读全文

posted @ 2012-10-16 23:18 雨渐渐 阅读(967) 评论(0) 推荐(0) 编辑

守则

摘要: 1,先画图,后写代码,数据结构画图,流程也画图 阅读全文

posted @ 2012-10-16 17:36 雨渐渐 阅读(144) 评论(0) 推荐(0) 编辑

eclipse去掉拼写检查

摘要: Myeclipse菜单 window——General——Editors——Text Editors——Spelling——把右边的Enable spell checking的勾去掉就行了,也就是取消单词的拼写检查。 阅读全文

posted @ 2012-10-16 13:58 雨渐渐 阅读(469) 评论(0) 推荐(0) 编辑

导航