摘要: interface C{ public void func();}interface D{ public void fund();}class A{ static class B implements C,D{ public void func(){ System.out.println... 阅读全文
posted @ 2013-01-12 09:17 N3verL4nd 阅读(138) 评论(0) 推荐(0) 编辑
摘要: public class PrefixTrie { // supports 7-bit chars. private static final int SIZE = 128; Node root = new Node(); public void put(... 阅读全文
posted @ 2013-01-12 09:07 N3verL4nd 阅读(135) 评论(0) 推荐(0) 编辑