自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 资源 (2)
  • 收藏
  • 关注

原创 6 Binary tree

144. Binary Tree Preorder Traversal145. Binary Tree Postorder TraversalPre, In, Post Iteratively SummarizationIn preorder, the order should be: root -> left -> rightBut when we use stack, the order should be reversed: right -> left -> rootPreIn i

2022-06-16 12:35:55 52

原创 5 Substring & Sliding WIndow

76. Minimum Window Substring30. Substring with Concatenation of All Words 395. Longest Substring with At Least K Repeating Characters209. Minimum Size Subarray Sum

2022-06-16 11:55:17 52

原创 4 Sliding Window

228. Summary Ranges 475. Heaters481. Magical String 565. Array Nesting 424. Longest Repeating Character Replacement 239. Sliding Window Maximum

2022-06-14 13:24:02 42

原创 数据结构(Python)

免费的 online Compiler And Editor常见的几种数据结构

2022-06-07 23:36:13 78

原创 3 双指针

26. Remove Duplicates from Sorted Array27. Remove Element80. Remove Duplicates from Sorted Array II11. Container With Most Water16. 3Sum Closest42. Trapping Rain Water

2022-06-05 13:27:05 51

原创 1 二分查找(b)

33. Search in Rotated Sorted Array81. Search in Rotated Sorted Array II 153. Find Minimum in Rotated Sorted Array154. Find Minimum in Rotated Sorted Array II

2022-06-03 05:22:54 40

原创 2 二维数组

419. Battleships in a Board74. Search a 2D Matrix240. Search a 2D Matrix II 378. Kth Smallest Element in a Sorted Matrix

2022-06-03 03:22:44 35

原创 1 二分查找(a)

35. Search Insert Position(easy)34. Find First and Last Position of Element in Sorted Array374. Guess Number Higher or Lower278. First Bad Version162. Find Peak Element167. Two Sum II - Input Array Is Sorted

2022-06-02 11:51:18 51

原创 练习code1

217:class Solution { public boolean containsDuplicate(int[] nums) { HashSet<Integer> set = new HashSet<>(); for (int i = 0; i < nums.length; i++) { if (!set.add(nums[i])) { return true; ...

2021-05-16 13:47:27 120

coding 面试注意事项

Interview Cheat Sheet The 3 pillars of good code What skills interviewer is looking for Step By Step through a problem

2022-06-08

Leetcode 频率及 companies

leetcode + title + difficulty + topics + frequency + acceptance + companies Excel 文件可自己选择按频率排序,或者公司tag。每个题目都有leetcode链接。

2022-06-07

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除