
反转二叉树
Invert Binary Tree ⭐️ LeetCode每日一题 2020.09.16 翻转一棵二叉树。
Invert Binary Tree ⭐️ LeetCode每日一题 2020.09.16 翻转一棵二叉树。
单词搜索(Word Search) ⭐️⭐️⭐️ LeetCode每日一题 2020.09.13 给定一个二维网格和一个单词, 找出该单词是否存在于网格中。 单词必须按照字母顺序, 通过相邻的单元格内的字母构成, 其中”相邻”单元格是那些水平相邻或垂直相邻的单元格。 同一个单元格内的字母不允许被重复使用。
Average of Levels in Binary Tree ⭐️ LeetCode每日一题 2020.09.12 Given a non-empty binary tree, return the average value of the nodes on each level in the form of an array.
Redis的性能优越,应用普遍,可以存储的键值个数大到上亿条记录,依然保持较高的效率。作为一个内存数据库,Redis内部采用了字典(哈希表)的数据结构实现了键值对的存储。但是长期将Redis作为缓存使用,难免会遇到内存空间存储瓶颈,当Redis内存超出物理内存限制时,内存数据就会与磁盘产生频繁交换,使Redis性能急剧下降。此时如何淘汰无用数据释放空间?
Palindrome NumberDetermine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward.
Reverse IntegerGiven a 32-bit signed integer, reverse digits of an integer.