摘要:
待更新~ 参考:http://blog.csdn.net/hguisu/article/details/6155636 阅读全文
摘要:
Determine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules. The Sudoku board could be partially filled, where empty cells are filled wit 阅读全文
摘要:
Given a pattern and a string str, find if str follows the same pattern. Here follow means a full match, such that there is a bijection between a lette 阅读全文
摘要:
1、总结hashcode的一个很好的文章:http://blog.csdn.net/fenglibing/article/details/8905007 http://blog.csdn.net/zhouj634620500/article/details/450344092、实现代码:/** 1、... 阅读全文
摘要:
待更新~ 阅读全文
摘要:
散列表的概念注意: ①由同一个散列函数、不同的解决冲突方法构造的散列表,其平均查找长度是不相同的。 ②散列表的平均查找长度不是结点个数n的函数,而是装填因子α(填入表中的记录个数/散列表的槽数 n/m)。因此在设计散列表时可选择α以控制散列表的平均查找长度。(平均查找长度=总查找(插入)/记... 阅读全文