美文网首页
7天练|Day4:散列表和字符串

7天练|Day4:散列表和字符串

作者: 阳明先生x | 来源:发表于2020-06-27 17:41 被阅读0次

    关于散列表和字符串的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/

    相关文章

      网友评论

          本文标题:7天练|Day4:散列表和字符串

          本文链接:https://www.haomeiwen.com/subject/xvjvfktx.html