摘要:
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
阅读(141)
评论(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
阅读(151)
评论(0)
推荐(0)