Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/liuyib/fucking-algorithm

🤡 Fuuuuuucking algorithm
https://github.com/liuyib/fucking-algorithm

algorithm leetcode

Last synced: 4 months ago
JSON representation

🤡 Fuuuuuucking algorithm

Awesome Lists containing this project

README

        

- [面试前必刷题](#面试前必刷题)
- [滑动窗口](#滑动窗口)
- [链表](#链表)
- [二叉树](#二叉树)
- [Kadane 算法(卡丹算法)](#kadane-算法卡丹算法)
- [其他(暂未分类)](#其他暂未分类)

## 面试前必刷题

LeetCode [面试经典 150 题](https://leetcode.cn/studyplan/top-interview-150/) 要刷熟练。

### 滑动窗口

- [3. 无重复字符的最长子串](https://leetcode.cn/problems/longest-substring-without-repeating-characters/)

### 链表

- [92. 反转链表 II](https://leetcode.cn/problems/reverse-linked-list-ii/)
- [25. K 个一组翻转链表](https://leetcode.cn/problems/reverse-nodes-in-k-group/)
- [23. 合并 K 个升序链表](https://leetcode.cn/problems/merge-k-sorted-lists/)

### 二叉树

- [124. 二叉树中的最大路径和](https://leetcode.cn/problems/binary-tree-maximum-path-sum/)

### Kadane 算法(卡丹算法)

- [53. 最大子数组和](https://leetcode.cn/problems/maximum-subarray/)

### 其他(暂未分类)

- [46. 全排列](https://leetcode.cn/problems/permutations/description/)
- [47. 全排列 II](https://leetcode.cn/problems/permutations-ii/description/)
- [77. 组合](https://leetcode.cn/problems/combinations/)
- [39. 组合总和](https://leetcode.cn/problems/combination-sum/)
- [40. 组合总和 II](https://leetcode.cn/problems/combination-sum-ii/)
- [216. 组合总和 III](https://leetcode.cn/problems/combination-sum-iii/)