首页
AI Coding
NEW
沸点
课程
直播
活动
AI刷题
APP
插件
搜索历史
清空
创作者中心
写文章
发沸点
写笔记
写代码
草稿箱
创作灵感
查看更多
会员
登录
注册
Leetcode
AQin
创建于2022-07-06
订阅专栏
一起来科学刷题٩(˃̶͈̀௰˂̶͈́)و
等 15 人订阅
共62篇文章
创建于2022-07-06
订阅专栏
默认顺序
默认顺序
最早发布
最新发布
【终极排序】一篇文章精通十大排序算法
说到排序算法,是不是总让你觉得头大?别慌!这篇文章通过专业版+人话版的“双语”说明,手把手带你轻松搞懂十大排序算法( ^ ^ )/■
【LeetCode·中等】454.四数相加 II (4sum-ii)
题目描述 英文版描述 Given four integer arrays nums1, nums2, nums3, and nums4 all of length n, return the numb
【LeetCode·中等】 18.四数之和(4sum)
题目描述 英文版描述 Given an array nums of n integers, return an array of all the unique quadruplets [nums[a]
【LeetCode·中等】143. 重排链表(reorder-list)
题目描述 描述 给定一个单链表 L **的头节点 head ,单链表 L 表示为: L(0) → L(1) → … → L(n - 1) → L(n) 请将其重新排列后变为: L(0) → L(n)
【LeetCode·中等】92. 反转链表 II(reverse-linked-list-ii)
题目描述 英文版描述 Given a linked list, swap every two adjacent nodes and return its head. You must solve th
【LeetCode】 59.螺旋矩阵 II (spiral Matrix II)
2023.10.19 题目描述 英文版描述 Given a positive integer n, generate an n x n matrix filled with elements from
【数据结构与算法】“黑白标记法”带你彻底吃透二叉树的前中后序遍历(超好记的迭代法模版)
做过二叉树前中后序遍历的同学应该有些印象,这三种遍历方式的递归法非常的简单,并且非常的相似,只需要稍微调整下处理逻辑(这里指将节点值添加进集合)的位置即可 递归法 前序遍历 中序遍历 后序遍历 可是迭
代码随想录完结撒花🎉!!!
看到自己Leetcode最近两个月绿油油的还真挺有成就感的 很多题目都是看了卡哥的题解才写出来的,60天下来(周日会休息下)真的收获良多,学到了很多以前绝对想不到的思路和解题方法,特别是对于动态规划的
【陪伴式刷题】Day 53|单调栈|84.柱状图中最大的矩形(Largest Rectangle in Histogram)
刷题顺序以及题解参考卡哥的代码随想录 题目描述 英文版描述 Given an array of integers heights representing the histogram's bar he
【陪伴式刷题】Day 52|单调栈|503.下一个更大元素II(Next Greater Element II)
刷题顺序以及题解参考卡哥的代码随想录 题目描述 英文版描述 Given a circular integer array nums (i.e., the next element of nums[nu
【陪伴式刷题】Day 51|单调栈|739.每日温度(aily Temperatures)
刷题顺序以及题解参考卡哥的代码随想录 题目描述 英文版描述 Given an array of integers temperatures represents the daily temperatu
【陪伴式刷题】Day 50|动态规划|647.回文子串(Palindromic Substring)
2023.12.6 题目描述 英文版描述 Given a string s, return the number of palindromic substrings in it. A string i
【陪伴式刷题】Day 49|动态规划|583.两个字符串的删除操作(Delete Operation for Two Strings)
刷题顺序以及题解参考卡哥的代码随想录 题目描述 英文版描述 Given two strings word1 and word2, return the minimum number of steps
【陪伴式刷题】Day 48|动态规划|115.不同的子序列(Distinct Subsequence)
刷题顺序以及题解参考卡哥的代码随想录 题目描述 英文版描述 Given two strings s and t, return the number of distinct subsequences
【陪伴式刷题】Day 47|动态规划|53.大子数组和(Maximum Subarray)
刷题顺序以及题解分析参考卡哥的代码随想录 题目描述 英文版描述 Given an integer array nums, find the subarray with the largest sum,
【陪伴式刷题】Day 46|动态规划|300.最长递增子序列(Longest increasing Subsequence)
(刷题顺序以及题解参考卡哥的代码随想录) 题目描述 英文版描述 Given an integer array nums, return the length of the longest strict
【陪伴式刷题】Day 45|动态规划|从1次到k次从冷冻期到手续费(123+188+309+714)
我们在上一篇文章【陪伴式刷题】Day 43|动态规划|121.买卖股票的最佳时机中介绍了如何从1笔交易中获取的最大利润的方法,今天这篇我们进一步拓展开来,从123.买卖股票的最佳时机 III和188.
【陪伴式刷题】Day 44|动态规划|123.买卖股票的最佳时机 III
123.买卖股票的最佳时机 III 题目描述 给定一个数组,它的第 **i 个元素是一支给定的股票在第 i **天的价格。 设计一个算法来计算你所能获取的最大利润。你最多可以完成 两笔 交易。 注意:
【陪伴式刷题】Day 43|动态规划|121.买卖股票的最佳时机
刷题顺序参考卡哥的代码随想录 121.买卖股票的最佳时机 题目描述 给定一个数组 prices ,它的第 i 个元素 prices[i] 表示一支给定股票第 i 天的价格。 你只能选择 某一天 买入这
【陪伴式刷题】Day 42|动态规划|“打家劫舍”专题(198、213、337)
本文通过对198.打家劫舍、213.打家劫舍II、337.打家劫舍III三道题的总结分析,一篇文章打包解决“打家劫舍”专题(本专题的刷题顺序与题解分析均参考卡哥的代码随想录)
下一页