
leetcode总结
文章平均质量分 92
进击的小豪
这个作者很懒,什么都没留下…
展开
-
leetcode刷题大纲
15、三数之和16、最接近的三数之和18、四数之和42、接雨水 hard75、颜色分类78、子集79、84、88、90、216、287、907、969、原创 2023-04-23 22:02:16 · 163 阅读 · 0 评论 -
leetcode刷题知识点
知识点整理:一、数组1、求数组长度sizeof(arr1) / sizeof(arr1[0]);结果是三维数组的空间申请: char*** res = (int **)malloc(sizeof(char**) * stringsSize); for (int i = 0; i < stringsSize; i++) { res[i] = (char**)malloc(stringsSize * sizeof(char*));原创 2022-03-20 12:06:07 · 679 阅读 · 0 评论 -
leetcode题目分类 & 常用代码
leetcode题目分类 & 常用算法模板1、DFS+BFShttps://leetcode-cn.com/problems/number-of-provinces/https://leetcode-cn.com/problems/keys-and-rooms/https://leetcode-cn.com/problems/deepest-leaves-sum/https://leetcode-cn.com/problems/binary-tree-right-side-viewhtt原创 2021-06-04 18:57:36 · 472 阅读 · 0 评论 -
leetcode刷题总结
专栏专栏c语言基础数据结构与算法博客分类数据结构算法leetcode总结错题面试题 10.02. 变位词组罗马数字转整数c语言基础二维数组sizeof的用法宏定义:取最大值MAX&MIN数据结构与算法博客leetcode中整数转字符的使用C语言中库函数总结结构体数学字符串leetcode简单题题型分类一维数组分类数据结构Linked List 链表原创 2021-04-14 08:40:45 · 1421 阅读 · 0 评论 -
leetcode字符串类型分类及说明
strstr、strtok用法:https://leetcode-cn.com/problems/check-if-a-word-occurs-as-a-prefix-of-any-word-in-a-sentence/submissions/原创 2020-12-08 01:11:56 · 328 阅读 · 0 评论