# leetcode_records **Repository Path**: yangizone/leetcode_records ## Basic Information - **Project Name**: leetcode_records - **Description**: leetcode_records - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-03-02 - **Last Updated**: 2022-06-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # leetcode_records 力扣上刷过的题的思路和代码 tags:查找、递归、动态规划、队列、分治、哈希、链表、排序、广度/深度优先搜索、数组、栈、字符串、树、回溯算法 commit包括当前已完成和尝试过未完成的题,这样有以下好处: 一、可以显示当天做了那些题 二、也可以看出哪些题随着时间过去和技能的增长能够轻易地解决了 力扣前150道题要全部刷三遍以上(C/C++) 格式为【Year/Month/Day:FinishedNums(TryedNums)/TotalNums】 2019/12/29: 35/1311 2020/01/01: 37/1312 2020/01/12: 38(6)/1324 2020/01/13: 38(1)/1324 2020/01/14: 40(3)/1324 2020/01/15: 40(1)/1324 2020/01/17: 43(5)/1324 2020/01/18: 47/1327 2020/01/19: 47(15/29/3)/1331 2020/01/21: 50(16/31/3)/1331->40/150 2020/01/25: 50(16/31/3)/1225->40/150 2022/03/17: 235/2559->(85/669->124/1360->26/530) commit内容修改为tag:xxx + problem.no Strongly recommend : https://github.com/wisdompeak/LeetCode Tip1:有向无环图求连通分量,这种基本场景bfs应该要会求,变形:2157、2192