关于散列表和字符串的4个必知必会的代码实现
散列表
实现一个基于链表法解决冲突问题的散列表
实现一个LRU缓存淘汰算法
字符串
实现一个字符集,只包含a~z这26个英文字母的Trie树
实现朴素的字符串匹配算法
对应的LeetCode练习题(@Smallfly 整理)
字符串
Reverse String (反转字符串)
英文版:https://leetcode.com/problems/reverse-string/
中文版:https://leetcode-cn.com/problems/reverse-string/
Reverse Words in a String(翻转字符串里的单词)
英文版:https://leetcode.com/problems/reverse-words-in-a-string/
https://leetcode-cn.com/problems/reverse-words-in-a-string/
中文版:
String to Integer (atoi)(字符串转换整数 (atoi))
英文版:https://leetcode.com/problems/string-to-integer-atoi/
中文版:https://leetcode-cn.com/problems/string-to-integer-atoi/
网友评论