├── .gitignore ├── assests ├── book.jpg ├── cpp │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── 06.png │ ├── 07.png │ ├── 08.png │ ├── 09.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ └── 13.png ├── golang │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ └── 05.png ├── linux │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── 06.png │ ├── 07.png │ ├── 08.png │ ├── 09.png │ ├── 10.png │ ├── 11.jpg │ └── 11.png ├── mysql │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── 06.png │ ├── 07.png │ ├── 08.png │ ├── 09.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ └── 20.png ├── networking │ ├── 01.png │ ├── 02.jpg │ └── 02.png └── redis │ └── 01.png ├── bill.py ├── cpp ├── C++意外的生命周期.md ├── Intro to the C++ Object Model.md ├── Lock-free programming with modern C++ .md ├── LockFreeQueue.hpp ├── stl │ ├── CMakeLists.txt │ └── src │ │ ├── SGI_alloc.hpp │ │ ├── lock_free_queue.hpp │ │ └── stl_iterator.hpp ├── 模板编程入门-sfinae基础.md ├── 模板编程入门-优雅的容器输出器.md ├── 给小学六年级的简易模板元“编程”入门-基础编程.md └── 聊聊boost--Operators和继承链.md ├── ddia └── ddia.md ├── golang └── golang.md ├── leetcode ├── 3sum.py ├── 3sum_closest.py ├── 4sum_ii.py ├── add-two-numbers-ii.py ├── add_two_numbers.py ├── basic-calculator-ii.py ├── best-time-to-buy-and-sell-stock-ii.py ├── best_sightseeing_pair.py ├── binary-tree-level-order-traversal.py ├── binary-tree-zigzag-level-order-traversal.py ├── binary.py ├── candy.py ├── coin-change.py ├── construct_binary_tree_from_inorder_and_postorder_traversal.py ├── container_with_most_water.py ├── copy-list-with-random-pointer │ └── submissions.py ├── decode-ways.py ├── divide_two_integers.py ├── evaluate-reverse-polish-notation.py ├── find_first_and_last_position_of_element_in_sorted_array.py ├── find_minimum_in_rotated_sorted_array.py ├── first-unique-character-in-a-string.py ├── flatten-binary-tree-to-linked-list.py ├── generate_parentheses.py ├── house-robber.py ├── implement-trie-prefix-tree.py ├── increasing-triplet-subsequence.py ├── insert-into-a-cyclic-sorted-list │ └── submissions.py ├── integer_break.py ├── integer_to_roman.py ├── intersection-of-two-linked-lists.py ├── interview │ ├── bilibili │ │ ├── 01.py │ │ ├── 02.py │ │ └── 03.py │ ├── fast-speak-english │ │ ├── 01.py │ │ └── 02.py │ └── little-red-book │ │ ├── 01.py │ │ ├── 02.py │ │ ├── 03.py │ │ └── 04.py ├── invert_binary_tree.py ├── k_th_smallest_in_lexicographical_order.py ├── kth-smallest-element-in-a-bst.py ├── lcs.py ├── letter_combinations_of_a_phone_number.py ├── linked_list_cycle_ii.py ├── longest-consecutive-sequence.py ├── longest-string-chain.py ├── longest-substring-with-at-least-k-repeating-characters.py ├── longest-substring_without_repeating_characters.py ├── longest_increasing_subsequence.py ├── longest_palindromic_substring.py ├── longest_repeating_character_replacement.py ├── lowest-common-ancestor-of-a-binary-tree.py ├── lru_cache.py ├── majority-element.py ├── maximum-product-subarray.py ├── merge-sorted-array.py ├── min_stack.py ├── minimum_window_substring.py ├── next_node_bin_tree.py ├── next_permutation.py ├── number-of-longest-increasing-subsequence.py ├── number_of_atoms.py ├── odd_even_linked_list.py ├── package.py ├── palindrome-partitioning.py ├── part_link.py ├── path_sum_ii.py ├── regular_expression_matching.py ├── remove_nth_node_from_end_of_list.py ├── reorder-list.py ├── repeated-string-match.py ├── restore_ip_addresses.py ├── reverse-linked-list-ii.py ├── reverse-linked-list │ └── submissions.py ├── reverse-nodes-in-k-group.py ├── reverse-string.py ├── reverse_linked_list.py ├── rotate-array.py ├── search-a-2d-matrix-ii.PY ├── search_in_rotated_sorted_array.py ├── serialize_and_deserialize_binary_tree.py ├── set-matrix-zeroes.py ├── single-number.py ├── sliding-window-maximum.py ├── string_to_integer_atoi.py ├── super-egg-drop.py ├── symmetric_tree.py ├── trapping_rain_water.py ├── unique-paths-ii.py ├── unique-paths.py ├── utf_8_validation.py ├── valid-anagram.py ├── valid-palindrome.py ├── valid_sudoku.py ├── validate_stack_sequences.py ├── verify_preorder_sequence_in_binary_search_tree.py ├── wildcard-matching.py ├── word-break.py ├── word-search-ii.py └── zigzag_conversion.py ├── linux ├── linux.md ├── 中断和系统调用.md ├── 内核初始化.md ├── 启动引导.md └── 锁和进程间通信.md ├── mysql └── mysql复习重点.md ├── networking ├── tcp.md ├── 协程-事件循环-异步io并发.md └── 理解有栈协程.md ├── nginx └── nginx.md ├── other ├── CPU 你要知道的.md ├── parser.py ├── 思考cpu占用.md ├── 错误处理.md └── 闭包, call-cc和 cps 变换.md ├── python 源码 └── python.md ├── quic └── rfc.md ├── readme.md ├── redis ├── ae │ └── ae.h └── redis.md ├── 分布式 ├── tanlent_plan │ ├── 一条 sql 的旅行.md │ └── 进阶数据库-逻辑优化.md ├── 分布式学习笔记(一).md ├── 分布式学习笔记(三).md └── 分布式学习笔记(二).md ├── 基础算法 ├── binary_tree.md ├── heap.py ├── sort.md ├── 二分法.md └── 字符串 │ └── kmp.py ├── 杂谈 ├── 你会变成你的人设.md ├── 吐槽一下大学CS教育.md ├── 家长式政府的公信力和开放意识的觉醒.md └── 没有优秀, 也没必要优秀.md ├── 毕设.md ├── 秋招 ├── 岗位选择.md ├── 怎么写一份好看的校招简历.md ├── 秋招Q&A.md ├── 秋招总结.md ├── 给计算机相关专业找实习的朋友的一些话.md └── 面试速成.md ├── 面筋 └── 字节跳动_广告.md └── 面试迷思--理解内存管理从 Python 到 malloc 再到 linux(上).md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/.gitignore -------------------------------------------------------------------------------- /assests/book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/book.jpg -------------------------------------------------------------------------------- /assests/cpp/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/cpp/01.png -------------------------------------------------------------------------------- /assests/cpp/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/cpp/02.png -------------------------------------------------------------------------------- /assests/cpp/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/cpp/03.png -------------------------------------------------------------------------------- /assests/cpp/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/cpp/04.png -------------------------------------------------------------------------------- /assests/cpp/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/cpp/05.png -------------------------------------------------------------------------------- /assests/cpp/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/cpp/06.png -------------------------------------------------------------------------------- /assests/cpp/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/cpp/07.png -------------------------------------------------------------------------------- /assests/cpp/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/cpp/08.png -------------------------------------------------------------------------------- /assests/cpp/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/cpp/09.png -------------------------------------------------------------------------------- /assests/cpp/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/cpp/10.png -------------------------------------------------------------------------------- /assests/cpp/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/cpp/11.png -------------------------------------------------------------------------------- /assests/cpp/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/cpp/12.png -------------------------------------------------------------------------------- /assests/cpp/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/cpp/13.png -------------------------------------------------------------------------------- /assests/golang/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/golang/01.png -------------------------------------------------------------------------------- /assests/golang/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/golang/02.png -------------------------------------------------------------------------------- /assests/golang/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/golang/03.png -------------------------------------------------------------------------------- /assests/golang/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/golang/04.png -------------------------------------------------------------------------------- /assests/golang/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/golang/05.png -------------------------------------------------------------------------------- /assests/linux/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/linux/01.png -------------------------------------------------------------------------------- /assests/linux/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/linux/02.png -------------------------------------------------------------------------------- /assests/linux/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/linux/03.png -------------------------------------------------------------------------------- /assests/linux/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/linux/04.png -------------------------------------------------------------------------------- /assests/linux/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/linux/05.png -------------------------------------------------------------------------------- /assests/linux/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/linux/06.png -------------------------------------------------------------------------------- /assests/linux/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/linux/07.png -------------------------------------------------------------------------------- /assests/linux/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/linux/08.png -------------------------------------------------------------------------------- /assests/linux/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/linux/09.png -------------------------------------------------------------------------------- /assests/linux/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/linux/10.png -------------------------------------------------------------------------------- /assests/linux/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/linux/11.jpg -------------------------------------------------------------------------------- /assests/linux/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/linux/11.png -------------------------------------------------------------------------------- /assests/mysql/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/mysql/01.png -------------------------------------------------------------------------------- /assests/mysql/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/mysql/02.png -------------------------------------------------------------------------------- /assests/mysql/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/mysql/03.png -------------------------------------------------------------------------------- /assests/mysql/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/mysql/04.png -------------------------------------------------------------------------------- /assests/mysql/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/mysql/05.png -------------------------------------------------------------------------------- /assests/mysql/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/mysql/06.png -------------------------------------------------------------------------------- /assests/mysql/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/mysql/07.png -------------------------------------------------------------------------------- /assests/mysql/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/mysql/08.png -------------------------------------------------------------------------------- /assests/mysql/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/mysql/09.png -------------------------------------------------------------------------------- /assests/mysql/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/mysql/10.png -------------------------------------------------------------------------------- /assests/mysql/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/mysql/11.png -------------------------------------------------------------------------------- /assests/mysql/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/mysql/12.png -------------------------------------------------------------------------------- /assests/mysql/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/mysql/13.png -------------------------------------------------------------------------------- /assests/mysql/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/mysql/14.png -------------------------------------------------------------------------------- /assests/mysql/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/mysql/15.png -------------------------------------------------------------------------------- /assests/mysql/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/mysql/16.png -------------------------------------------------------------------------------- /assests/mysql/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/mysql/17.png -------------------------------------------------------------------------------- /assests/mysql/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/mysql/18.png -------------------------------------------------------------------------------- /assests/mysql/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/mysql/19.png -------------------------------------------------------------------------------- /assests/mysql/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/mysql/20.png -------------------------------------------------------------------------------- /assests/networking/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/networking/01.png -------------------------------------------------------------------------------- /assests/networking/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/networking/02.jpg -------------------------------------------------------------------------------- /assests/networking/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/networking/02.png -------------------------------------------------------------------------------- /assests/redis/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/assests/redis/01.png -------------------------------------------------------------------------------- /bill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/bill.py -------------------------------------------------------------------------------- /cpp/C++意外的生命周期.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/cpp/C++意外的生命周期.md -------------------------------------------------------------------------------- /cpp/Intro to the C++ Object Model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/cpp/Intro to the C++ Object Model.md -------------------------------------------------------------------------------- /cpp/Lock-free programming with modern C++ .md: -------------------------------------------------------------------------------- 1 | # C++ 无锁编程 2 | 3 | ## 4 | 5 | ![](https://user-gold-cdn.xitu.io/2019/7/27/16c32c7ed2eb88d8?w=676&h=274&f=png&s=12819) -------------------------------------------------------------------------------- /cpp/LockFreeQueue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/cpp/LockFreeQueue.hpp -------------------------------------------------------------------------------- /cpp/stl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/cpp/stl/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/stl/src/SGI_alloc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/cpp/stl/src/SGI_alloc.hpp -------------------------------------------------------------------------------- /cpp/stl/src/lock_free_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/cpp/stl/src/lock_free_queue.hpp -------------------------------------------------------------------------------- /cpp/stl/src/stl_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/cpp/stl/src/stl_iterator.hpp -------------------------------------------------------------------------------- /cpp/模板编程入门-sfinae基础.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/cpp/模板编程入门-sfinae基础.md -------------------------------------------------------------------------------- /cpp/模板编程入门-优雅的容器输出器.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/cpp/模板编程入门-优雅的容器输出器.md -------------------------------------------------------------------------------- /cpp/给小学六年级的简易模板元“编程”入门-基础编程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/cpp/给小学六年级的简易模板元“编程”入门-基础编程.md -------------------------------------------------------------------------------- /cpp/聊聊boost--Operators和继承链.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/cpp/聊聊boost--Operators和继承链.md -------------------------------------------------------------------------------- /ddia/ddia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/ddia/ddia.md -------------------------------------------------------------------------------- /golang/golang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/golang/golang.md -------------------------------------------------------------------------------- /leetcode/3sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/3sum.py -------------------------------------------------------------------------------- /leetcode/3sum_closest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/3sum_closest.py -------------------------------------------------------------------------------- /leetcode/4sum_ii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/4sum_ii.py -------------------------------------------------------------------------------- /leetcode/add-two-numbers-ii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/add-two-numbers-ii.py -------------------------------------------------------------------------------- /leetcode/add_two_numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/add_two_numbers.py -------------------------------------------------------------------------------- /leetcode/basic-calculator-ii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/basic-calculator-ii.py -------------------------------------------------------------------------------- /leetcode/best-time-to-buy-and-sell-stock-ii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/best-time-to-buy-and-sell-stock-ii.py -------------------------------------------------------------------------------- /leetcode/best_sightseeing_pair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/best_sightseeing_pair.py -------------------------------------------------------------------------------- /leetcode/binary-tree-level-order-traversal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/binary-tree-level-order-traversal.py -------------------------------------------------------------------------------- /leetcode/binary-tree-zigzag-level-order-traversal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/binary-tree-zigzag-level-order-traversal.py -------------------------------------------------------------------------------- /leetcode/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/binary.py -------------------------------------------------------------------------------- /leetcode/candy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/candy.py -------------------------------------------------------------------------------- /leetcode/coin-change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/coin-change.py -------------------------------------------------------------------------------- /leetcode/construct_binary_tree_from_inorder_and_postorder_traversal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/construct_binary_tree_from_inorder_and_postorder_traversal.py -------------------------------------------------------------------------------- /leetcode/container_with_most_water.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/container_with_most_water.py -------------------------------------------------------------------------------- /leetcode/copy-list-with-random-pointer/submissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/copy-list-with-random-pointer/submissions.py -------------------------------------------------------------------------------- /leetcode/decode-ways.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/decode-ways.py -------------------------------------------------------------------------------- /leetcode/divide_two_integers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/divide_two_integers.py -------------------------------------------------------------------------------- /leetcode/evaluate-reverse-polish-notation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/evaluate-reverse-polish-notation.py -------------------------------------------------------------------------------- /leetcode/find_first_and_last_position_of_element_in_sorted_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/find_first_and_last_position_of_element_in_sorted_array.py -------------------------------------------------------------------------------- /leetcode/find_minimum_in_rotated_sorted_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/find_minimum_in_rotated_sorted_array.py -------------------------------------------------------------------------------- /leetcode/first-unique-character-in-a-string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/first-unique-character-in-a-string.py -------------------------------------------------------------------------------- /leetcode/flatten-binary-tree-to-linked-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/flatten-binary-tree-to-linked-list.py -------------------------------------------------------------------------------- /leetcode/generate_parentheses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/generate_parentheses.py -------------------------------------------------------------------------------- /leetcode/house-robber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/house-robber.py -------------------------------------------------------------------------------- /leetcode/implement-trie-prefix-tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/implement-trie-prefix-tree.py -------------------------------------------------------------------------------- /leetcode/increasing-triplet-subsequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/increasing-triplet-subsequence.py -------------------------------------------------------------------------------- /leetcode/insert-into-a-cyclic-sorted-list/submissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/insert-into-a-cyclic-sorted-list/submissions.py -------------------------------------------------------------------------------- /leetcode/integer_break.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/integer_break.py -------------------------------------------------------------------------------- /leetcode/integer_to_roman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/integer_to_roman.py -------------------------------------------------------------------------------- /leetcode/intersection-of-two-linked-lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/intersection-of-two-linked-lists.py -------------------------------------------------------------------------------- /leetcode/interview/bilibili/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/interview/bilibili/01.py -------------------------------------------------------------------------------- /leetcode/interview/bilibili/02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/interview/bilibili/02.py -------------------------------------------------------------------------------- /leetcode/interview/bilibili/03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/interview/bilibili/03.py -------------------------------------------------------------------------------- /leetcode/interview/fast-speak-english/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/interview/fast-speak-english/01.py -------------------------------------------------------------------------------- /leetcode/interview/fast-speak-english/02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/interview/fast-speak-english/02.py -------------------------------------------------------------------------------- /leetcode/interview/little-red-book/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/interview/little-red-book/01.py -------------------------------------------------------------------------------- /leetcode/interview/little-red-book/02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/interview/little-red-book/02.py -------------------------------------------------------------------------------- /leetcode/interview/little-red-book/03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/interview/little-red-book/03.py -------------------------------------------------------------------------------- /leetcode/interview/little-red-book/04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/interview/little-red-book/04.py -------------------------------------------------------------------------------- /leetcode/invert_binary_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/invert_binary_tree.py -------------------------------------------------------------------------------- /leetcode/k_th_smallest_in_lexicographical_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/k_th_smallest_in_lexicographical_order.py -------------------------------------------------------------------------------- /leetcode/kth-smallest-element-in-a-bst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/kth-smallest-element-in-a-bst.py -------------------------------------------------------------------------------- /leetcode/lcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/lcs.py -------------------------------------------------------------------------------- /leetcode/letter_combinations_of_a_phone_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/letter_combinations_of_a_phone_number.py -------------------------------------------------------------------------------- /leetcode/linked_list_cycle_ii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/linked_list_cycle_ii.py -------------------------------------------------------------------------------- /leetcode/longest-consecutive-sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/longest-consecutive-sequence.py -------------------------------------------------------------------------------- /leetcode/longest-string-chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/longest-string-chain.py -------------------------------------------------------------------------------- /leetcode/longest-substring-with-at-least-k-repeating-characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/longest-substring-with-at-least-k-repeating-characters.py -------------------------------------------------------------------------------- /leetcode/longest-substring_without_repeating_characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/longest-substring_without_repeating_characters.py -------------------------------------------------------------------------------- /leetcode/longest_increasing_subsequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/longest_increasing_subsequence.py -------------------------------------------------------------------------------- /leetcode/longest_palindromic_substring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/longest_palindromic_substring.py -------------------------------------------------------------------------------- /leetcode/longest_repeating_character_replacement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/longest_repeating_character_replacement.py -------------------------------------------------------------------------------- /leetcode/lowest-common-ancestor-of-a-binary-tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/lowest-common-ancestor-of-a-binary-tree.py -------------------------------------------------------------------------------- /leetcode/lru_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/lru_cache.py -------------------------------------------------------------------------------- /leetcode/majority-element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/majority-element.py -------------------------------------------------------------------------------- /leetcode/maximum-product-subarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/maximum-product-subarray.py -------------------------------------------------------------------------------- /leetcode/merge-sorted-array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/merge-sorted-array.py -------------------------------------------------------------------------------- /leetcode/min_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/min_stack.py -------------------------------------------------------------------------------- /leetcode/minimum_window_substring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/minimum_window_substring.py -------------------------------------------------------------------------------- /leetcode/next_node_bin_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/next_node_bin_tree.py -------------------------------------------------------------------------------- /leetcode/next_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/next_permutation.py -------------------------------------------------------------------------------- /leetcode/number-of-longest-increasing-subsequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/number-of-longest-increasing-subsequence.py -------------------------------------------------------------------------------- /leetcode/number_of_atoms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/number_of_atoms.py -------------------------------------------------------------------------------- /leetcode/odd_even_linked_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/odd_even_linked_list.py -------------------------------------------------------------------------------- /leetcode/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/package.py -------------------------------------------------------------------------------- /leetcode/palindrome-partitioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/palindrome-partitioning.py -------------------------------------------------------------------------------- /leetcode/part_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/part_link.py -------------------------------------------------------------------------------- /leetcode/path_sum_ii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/path_sum_ii.py -------------------------------------------------------------------------------- /leetcode/regular_expression_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/regular_expression_matching.py -------------------------------------------------------------------------------- /leetcode/remove_nth_node_from_end_of_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/remove_nth_node_from_end_of_list.py -------------------------------------------------------------------------------- /leetcode/reorder-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/reorder-list.py -------------------------------------------------------------------------------- /leetcode/repeated-string-match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/repeated-string-match.py -------------------------------------------------------------------------------- /leetcode/restore_ip_addresses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/restore_ip_addresses.py -------------------------------------------------------------------------------- /leetcode/reverse-linked-list-ii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/reverse-linked-list-ii.py -------------------------------------------------------------------------------- /leetcode/reverse-linked-list/submissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/reverse-linked-list/submissions.py -------------------------------------------------------------------------------- /leetcode/reverse-nodes-in-k-group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/reverse-nodes-in-k-group.py -------------------------------------------------------------------------------- /leetcode/reverse-string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/reverse-string.py -------------------------------------------------------------------------------- /leetcode/reverse_linked_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/reverse_linked_list.py -------------------------------------------------------------------------------- /leetcode/rotate-array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/rotate-array.py -------------------------------------------------------------------------------- /leetcode/search-a-2d-matrix-ii.PY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/search-a-2d-matrix-ii.PY -------------------------------------------------------------------------------- /leetcode/search_in_rotated_sorted_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/search_in_rotated_sorted_array.py -------------------------------------------------------------------------------- /leetcode/serialize_and_deserialize_binary_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/serialize_and_deserialize_binary_tree.py -------------------------------------------------------------------------------- /leetcode/set-matrix-zeroes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/set-matrix-zeroes.py -------------------------------------------------------------------------------- /leetcode/single-number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/single-number.py -------------------------------------------------------------------------------- /leetcode/sliding-window-maximum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/sliding-window-maximum.py -------------------------------------------------------------------------------- /leetcode/string_to_integer_atoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/string_to_integer_atoi.py -------------------------------------------------------------------------------- /leetcode/super-egg-drop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/super-egg-drop.py -------------------------------------------------------------------------------- /leetcode/symmetric_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/symmetric_tree.py -------------------------------------------------------------------------------- /leetcode/trapping_rain_water.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/trapping_rain_water.py -------------------------------------------------------------------------------- /leetcode/unique-paths-ii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/unique-paths-ii.py -------------------------------------------------------------------------------- /leetcode/unique-paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/unique-paths.py -------------------------------------------------------------------------------- /leetcode/utf_8_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/utf_8_validation.py -------------------------------------------------------------------------------- /leetcode/valid-anagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/valid-anagram.py -------------------------------------------------------------------------------- /leetcode/valid-palindrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/valid-palindrome.py -------------------------------------------------------------------------------- /leetcode/valid_sudoku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/valid_sudoku.py -------------------------------------------------------------------------------- /leetcode/validate_stack_sequences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/validate_stack_sequences.py -------------------------------------------------------------------------------- /leetcode/verify_preorder_sequence_in_binary_search_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/verify_preorder_sequence_in_binary_search_tree.py -------------------------------------------------------------------------------- /leetcode/wildcard-matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/wildcard-matching.py -------------------------------------------------------------------------------- /leetcode/word-break.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/word-break.py -------------------------------------------------------------------------------- /leetcode/word-search-ii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/word-search-ii.py -------------------------------------------------------------------------------- /leetcode/zigzag_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/leetcode/zigzag_conversion.py -------------------------------------------------------------------------------- /linux/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/linux/linux.md -------------------------------------------------------------------------------- /linux/中断和系统调用.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/linux/中断和系统调用.md -------------------------------------------------------------------------------- /linux/内核初始化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/linux/内核初始化.md -------------------------------------------------------------------------------- /linux/启动引导.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/linux/启动引导.md -------------------------------------------------------------------------------- /linux/锁和进程间通信.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/linux/锁和进程间通信.md -------------------------------------------------------------------------------- /mysql/mysql复习重点.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/mysql/mysql复习重点.md -------------------------------------------------------------------------------- /networking/tcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/networking/tcp.md -------------------------------------------------------------------------------- /networking/协程-事件循环-异步io并发.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/networking/协程-事件循环-异步io并发.md -------------------------------------------------------------------------------- /networking/理解有栈协程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/networking/理解有栈协程.md -------------------------------------------------------------------------------- /nginx/nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/nginx/nginx.md -------------------------------------------------------------------------------- /other/CPU 你要知道的.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/other/CPU 你要知道的.md -------------------------------------------------------------------------------- /other/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/other/parser.py -------------------------------------------------------------------------------- /other/思考cpu占用.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/other/思考cpu占用.md -------------------------------------------------------------------------------- /other/错误处理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/other/错误处理.md -------------------------------------------------------------------------------- /other/闭包, call-cc和 cps 变换.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/other/闭包, call-cc和 cps 变换.md -------------------------------------------------------------------------------- /python 源码/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/python 源码/python.md -------------------------------------------------------------------------------- /quic/rfc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/quic/rfc.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/readme.md -------------------------------------------------------------------------------- /redis/ae/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/redis/ae/ae.h -------------------------------------------------------------------------------- /redis/redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/redis/redis.md -------------------------------------------------------------------------------- /分布式/tanlent_plan/一条 sql 的旅行.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/分布式/tanlent_plan/一条 sql 的旅行.md -------------------------------------------------------------------------------- /分布式/tanlent_plan/进阶数据库-逻辑优化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/分布式/tanlent_plan/进阶数据库-逻辑优化.md -------------------------------------------------------------------------------- /分布式/分布式学习笔记(一).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/分布式/分布式学习笔记(一).md -------------------------------------------------------------------------------- /分布式/分布式学习笔记(三).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/分布式/分布式学习笔记(三).md -------------------------------------------------------------------------------- /分布式/分布式学习笔记(二).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/分布式/分布式学习笔记(二).md -------------------------------------------------------------------------------- /基础算法/binary_tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/基础算法/binary_tree.md -------------------------------------------------------------------------------- /基础算法/heap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/基础算法/heap.py -------------------------------------------------------------------------------- /基础算法/sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/基础算法/sort.md -------------------------------------------------------------------------------- /基础算法/二分法.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/基础算法/二分法.md -------------------------------------------------------------------------------- /基础算法/字符串/kmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/基础算法/字符串/kmp.py -------------------------------------------------------------------------------- /杂谈/你会变成你的人设.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/杂谈/你会变成你的人设.md -------------------------------------------------------------------------------- /杂谈/吐槽一下大学CS教育.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/杂谈/吐槽一下大学CS教育.md -------------------------------------------------------------------------------- /杂谈/家长式政府的公信力和开放意识的觉醒.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/杂谈/家长式政府的公信力和开放意识的觉醒.md -------------------------------------------------------------------------------- /杂谈/没有优秀, 也没必要优秀.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/杂谈/没有优秀, 也没必要优秀.md -------------------------------------------------------------------------------- /毕设.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/毕设.md -------------------------------------------------------------------------------- /秋招/岗位选择.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/秋招/岗位选择.md -------------------------------------------------------------------------------- /秋招/怎么写一份好看的校招简历.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/秋招/怎么写一份好看的校招简历.md -------------------------------------------------------------------------------- /秋招/秋招Q&A.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/秋招/秋招Q&A.md -------------------------------------------------------------------------------- /秋招/秋招总结.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/秋招/秋招总结.md -------------------------------------------------------------------------------- /秋招/给计算机相关专业找实习的朋友的一些话.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/秋招/给计算机相关专业找实习的朋友的一些话.md -------------------------------------------------------------------------------- /秋招/面试速成.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/秋招/面试速成.md -------------------------------------------------------------------------------- /面筋/字节跳动_广告.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/面筋/字节跳动_广告.md -------------------------------------------------------------------------------- /面试迷思--理解内存管理从 Python 到 malloc 再到 linux(上).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcyCC/effective_note/HEAD/面试迷思--理解内存管理从 Python 到 malloc 再到 linux(上).md --------------------------------------------------------------------------------