由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - HashMap 和 Trie
相关主题
来问两个HashMap的问题怎样替换字符串中/n 到
JDK HashMap 的 Entry classJDK Source?
64bit java's performance really sucks问一个JavaScript的菜问题
Java中如何动态生成对象问个Hashtable的问题
Re: Confused!Java里有没有象cell array一样的东西
answer Re: how HashMap/Hashtable compare key?哪位大哥总结一下Iterator这些数据集合
[转载] How do I sort a map in Java? String[]怎么转成java.sql.Array?
怎样在JAVA里把浮点型变量转化成字符串?[转载] Java 1.5 Generic 问题
相关话题的讨论汇总
话题: trie话题: hashmap话题: complexity话题: what话题: string
进入Java版参与讨论
1 (共1页)
l******0
发帖数: 244
1
Time complexity, the worst case is O(N) for HashMap and O(K), where N is the
number of entries in the map, and K is the length of the input String S.
What about space complexity? 由于 Trie 可以共享字符串,好像要节省存储空间,
看资料说 trie 比 hashmap 更耗空间。为什么?
W***o
发帖数: 6519
2
hashmap是array of bag吧
trie的每个node都是一个实体object,占用的字节要多

the

【在 l******0 的大作中提到】
: Time complexity, the worst case is O(N) for HashMap and O(K), where N is the
: number of entries in the map, and K is the length of the input String S.
: What about space complexity? 由于 Trie 可以共享字符串,好像要节省存储空间,
: 看资料说 trie 比 hashmap 更耗空间。为什么?

1 (共1页)
进入Java版参与讨论
相关主题
[转载] Java 1.5 Generic 问题Re: Confused!
Java 面试常见问题!answer Re: how HashMap/Hashtable compare key?
问个String:replaceALL的问题[转载] How do I sort a map in Java?
help ...怎样在JAVA里把浮点型变量转化成字符串?
来问两个HashMap的问题怎样替换字符串中/n 到
JDK HashMap 的 Entry classJDK Source?
64bit java's performance really sucks问一个JavaScript的菜问题
Java中如何动态生成对象问个Hashtable的问题
相关话题的讨论汇总
话题: trie话题: hashmap话题: complexity话题: what话题: string