E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
LeetCode.cn
周赛368(模拟、前后缀分解、枚举+数学、预处理+划分型DP)
文章目录周赛368[100106.元素和最小的山形三元组I](https://
leetcode.cn
/problems/minimum-sum-of-mountain-triplets-i/)模拟[100114
Miraclo_acc
·
2023-11-11 10:20
算法刷题记录
#
LC周赛
算法
数据结构
[LeetCode]-225. 用队列实现栈
目录225.用队列实现栈题目思路代码225.用队列实现栈225.用队列实现栈-力扣(LeetCode)https://
leetcode.cn
/problems/implement-stack-using-queues
敲敲er
·
2023-11-11 05:31
LeetCode刷题分享
leetcode
算法
【LeetCode704.二分查找】——二分查找方法汇总
链接:https://
leetcode.cn
/problems/b
木瓜星灵TT
·
2023-11-11 04:02
LeetCode学习笔记
算法
leetcode
数据结构
c++
Leetcode SQL 584. 寻找用户推荐人
https://
leetcode.cn
/problems/find-customer-referee/selectnamefromcustomerwherereferee_id!
轻松的风
·
2023-11-11 03:52
sql
数据库
leetcode_811. 子域名访问计数
题目链接:https://
leetcode.cn
/problems/subdomain-visit-count/description/涉及知识点:库函数atoi,库函数strstr,库函数strchr
Kane886
·
2023-11-10 22:05
leetcode
算法
散列表
leetcode-经典面/笔试题目
1.消失的数字面试题17.04.消失的数字-力扣(LeetCode)https://
leetcode.cn
/problems/missing-number-lcci/这个题目当然有好几种解法,这里我推荐一种比较优秀的思路
进击的小C
·
2023-11-10 17:37
题目
算法
数据结构
c语言
学习
【Leetcode】【简单】13. 罗马数字转整数
https://
leetcode.cn
/problems/roman-to-integer/description/罗马数字包含以下七种字符:I,V,X,L,C,D和M。
have_to_be
·
2023-11-10 14:27
Leetcode
leetcode
算法
职场和发展
【Leetcode】【每日一题】【中等】187. 重复的DNA序列 官方题解待更新
https://
leetcode.cn
/problems/repeated-dna-sequences/description/?
have_to_be
·
2023-11-10 14:27
Leetcode
算法
【Leetcode】【每日一题】【简单】2609. 最长平衡子字符串
https://
leetcode.cn
/problems/find-the-longest-balanced-substring-of-a-binary-string/description/?
have_to_be
·
2023-11-10 14:23
Leetcode
leetcode
算法
职场和发展
LeetCode 454. 四数相加 II
题目链接:https://
leetcode.cn
/problems/4sum-ii/C++代码如下:classSolution{public:intfourSumCount(vector&nums1,vector
早睡身体好呀
·
2023-11-09 22:00
LeetCode
leetcode
c++
哈希表
leetcode30. 串联所有单词的子串
思路每次移动一位会导致很多的重复,所以我们每次判断一个单词要一次判断一个单词,应该有单词长度减一个起点i,可以参考下面连接https://
leetcode.cn
/problems/substring-with-concatenation-of-all-words
996冲冲冲
·
2023-11-09 14:59
滑动窗口
数据结构
python
算法
Leetcode62. 不同路径
题目传送地址:https://
leetcode.cn
/problems/unique-paths/运行效率:代码如下:publicstaticintuniquePaths(intm,intn){HashMapmap
Java全栈研发大联盟
·
2023-11-09 07:53
数据结构和算法
算法
leetcode
java
力扣(LeetCode)每日一题 137. 只出现一次的数字 II
题目链接https://
leetcode.cn
/problems/single-number-ii/description/?
一般路过糸.
·
2023-11-09 07:48
leetcode
算法
职场和发展
力扣(LeetCode)每日一题 136. 只出现一次的数字
题目链接https://
leetcode.cn
/problems/single-number/description/?
一般路过糸.
·
2023-11-09 07:48
leetcode
算法
职场和发展
LeetCode 63. 不同路径 II
题目链接https://
leetcode.cn
/problems/unique-paths-ii/description/动态规划算法:与上一题62一样,只是多了石头挡路classSolution{publicintuniquePathsWithObstacles
一般路过糸.
·
2023-11-09 07:48
leetcode
算法
职场和发展
LeetCode 62. 不同路径
题目链接https://
leetcode.cn
/problems/unique-paths/动态规划算法classSolution{publicintuniquePaths(intm,intn){int
一般路过糸.
·
2023-11-09 07:15
leetcode
算法
职场和发展
④ 链表
24.两两交换链表中的节点题目链接:https://
leetcode.cn
/problems/swap-nodes-in-pairs/注意点:遍历链表的时候什么时候截止(避免空指针异常或无限死循环的问题
奥奥奥曼
·
2023-11-09 03:51
Java之路
链表
数据结构
leetcode
⑥ 哈希表
242.有效的字母异位词题目链接:https://
leetcode.cn
/problems/valid-anagram/异位词定义:两个字符串的异位词等价于两个字符串排序后相等。
奥奥奥曼
·
2023-11-09 03:20
Java之路
散列表
leetcode
数据结构
每日一题(LeetCode)----数组--移除元素(四)
每日一题(LeetCode)----数组–移除元素(四)1.题目([844.比较含退格的字符串](https://
leetcode.cn
/problems/sqrtx/))给定s和t两个字符串,当它们分别被输入到空白的文本编辑器后
程序小白的code之路(记录分享)
·
2023-11-09 00:20
每日一题
leetcode
算法
15. 三数之和
15.三数之和原题链接:完成情况:解题思路:参考代码:错误经验吸取原题链接:15.三数之和https://
leetcode.cn
/problems/3sum/description/完成情况:解题思路:
Wzideng
·
2023-11-08 18:52
java学习
算法知识
#
LeetCode题解
链表
数据结构
推荐算法
算法
机器学习
18. 四数之和
18.四数之和原题链接:完成情况:解题思路:参考代码:错误经验吸取原题链接:18.四数之和https://
leetcode.cn
/problems/4sum/description/完成情况:解题思路:
Wzideng
·
2023-11-08 17:03
java学习
算法知识
#
LeetCode题解
链表
数据结构
矩阵
线性代数
算法
每日一题2609. 最长平衡子字符串
每日一题2609.最长平衡子字符串LeetCode题目:https://
leetcode.cn
/problems/find-the-longest-balanced-substring-of-a-binary-string
Foolish鱼
·
2023-11-08 16:01
数据结构
java
开发语言
leetcode:141.环形链表
141.环形链表来源:力扣(LeetCode)链接:https://
leetcode.cn
/problems/linked-list-cycle/给你一个链表的头节点head,判断链表中是否有环。
uncle_ll
·
2023-11-08 07:46
编程练习-Leetcode
leetcode
环形链表
快慢指针
哈希表
算法训练营
每日一题(LeetCode)----数组--移除元素(二)
每日一题(LeetCode)----数组–移除元素(二)1.题目([26.删除有序数组中的重复项](https://
leetcode.cn
/problems/sqrtx/))给你一个非严格递增排列的数组
程序小白的code之路(记录分享)
·
2023-11-08 06:49
每日一题
leetcode
算法
每日一题(LeetCode)----数组--移除元素(三)
每日一题(LeetCode)----数组–移除元素(三)1.题目([283.移动零](https://
leetcode.cn
/problems/sqrtx/))给定一个数组nums,编写一个函数将所有0
程序小白的code之路(记录分享)
·
2023-11-08 06:49
每日一题
leetcode
算法
LeetCode 2586. 统计范围内的元音字符串数:模拟
【LetMeFly】2586.统计范围内的元音字符串数:模拟力扣题目链接:https://
leetcode.cn
/problems/count-the-number-of-vowel-strings-in-range
Tisfy
·
2023-11-08 04:02
题解
#
力扣LeetCode
leetcode
算法
题解
模拟
字符串
链表经典 10题
文章目录1.反转链表2.链表的中间结点3.链表中倒数第k个结点_4.合并两个有序链表5.链表分割6.链表的回文结构7.相交链表8.环形链表[9.环形链表II](https://
leetcode.cn
/problems
牧..
·
2023-11-08 00:56
新数据结构
链表
数据结构
1024程序员节
链表题(1)
链表题今天给大家带来道链表题的练习链表的中间节点先给大家奉上链接:https://
leetcode.cn
/problems/middle-of-the-linked-list/description/题目描述
EDG.TSWS
·
2023-11-08 00:15
算法刷题专栏
数据结构篇
链表
数据结构
双指针解决链表题
数据结构:单链表OJ
https://
leetcode.cn
/problems/remove-linked-list-eleme
东方月初☾
·
2023-11-07 23:09
数据结构
数据结构
算法
LeetCode 318. 最大单词长度乘积
原题链接:https://
leetcode.cn
/problems/maximum-xor-of-two-numbers-in-an-array/description/?
liangchaaaaa
·
2023-11-07 20:49
LeetCode
leetcode
算法
职场和发展
LeetCode 2586. 统计范围内的元音字符串数
原题链接:https://
leetcode.cn
/problems/maximum-xor-of-two-numbers-in-an-array/description/?
liangchaaaaa
·
2023-11-07 20:18
LeetCode
leetcode
算法
代码随想录算法训练营第十四天| 144. 二叉树的前序遍历、94. 二叉树的中序遍历、145. 二叉树的后序遍历。
144.二叉树的前序遍历题目链接:https://
leetcode.cn
/problems/binary-tree-preorder-traversal/description/题目要求:给你二叉树的根节点
玩复杂点
·
2023-11-07 20:28
算法
java
代码随想录训练营第十四天|144.二叉树的前序遍历、145.二叉树的后序遍历、94.二叉树的中序遍历
144.二叉树的前序遍历题目链接:https://
leetcode.cn
/problems/binary-tree-preorder-traversal/1.递归方法前提说明根节点为val、左节点为left
Veronica-
·
2023-11-07 20:58
代码随想录
javascript
前端
开发语言
leetcode
算法
383. 赎金信
383.赎金信原题链接:完成情况:解题思路:参考代码:错误经验吸取原题链接:383.赎金信https://
leetcode.cn
/problems/ransom-note/description/完成情况
Wzideng
·
2023-11-07 13:04
java学习
算法知识
#
LeetCode题解
链表
数据结构
推荐算法
算法
机器学习
454. 四数相加 II
454.四数相加II原题链接:完成情况:解题思路:参考代码:错误经验吸取原题链接:454.四数相加IIhttps://
leetcode.cn
/problems/4sum-ii/description/完成情况
Wzideng
·
2023-11-07 13:04
java学习
算法知识
#
LeetCode题解
算法
matplotlib
数据结构
网络
15. 三数之和
15.三数之和原题链接:完成情况:解题思路:参考代码:__15三数之和__官方题解__15三数之和__优化错误经验吸取原题链接:15.三数之和https://
leetcode.cn
/problems/3sum
Wzideng
·
2023-11-07 13:45
java学习
算法知识
#
LeetCode题解
排序算法
算法
链表
矩阵
线性代数
数据结构
1024程序员节
力扣 2586. 统计范围内的元音字符串数
题目来源:https://
leetcode.cn
/problems/count-the-number-of-vowel-strings-in-range/C++题解:将words中的字符串一个一个的取出来
江湖人称贺行风
·
2023-11-07 10:08
开始C++吧
leetcode
c++
【039】2559. 统计范围内的元音字符串数【前缀和】
https://
leetcode.cn
/problems/c
秃秃然然
·
2023-11-07 10:06
每日一题
java
leetcode
算法
LeetCode·每日一题·2559. 统计范围内的元音字符串数·前缀和
作者:小迅链接:https://
leetcode.cn
/problems/count-vowel-strings-in-ranges/solutions/2293401/qian-zhui-he-zhu-shi-chao-ji-xiang-xi-by-b6z0
迅~
·
2023-11-07 10:33
LeetCode刷题笔记
leetcode
算法
数据结构
LeetCode 28. 找出字符串中第一个匹配项的下标
题目链接:https://
leetcode.cn
/problems/find-the-index-of-the-first-occurrence-in-a-string/C++代码如下:classSolution
早睡身体好呀
·
2023-11-07 00:56
LeetCode
leetcode
c++
kmp
每日一题411数组中两个数的最大异或值(哈希表、前缀树:实现前缀树)
数组中两个数的最大异或值(哈希表、前缀树:实现前缀树)LeetCode题目:https://
leetcode.cn
/problems/maximum-xor-of-two-numbers-in-an-array
Foolish鱼
·
2023-11-06 17:19
数据结构
数据结构
java
每日一题318. 最大单词长度乘积
每日一题318.最大单词长度乘积LeetCode题目:https://
leetcode.cn
/problems/maximum-product-of-word-lengths/哈希表解法 直接构建二维数组
Foolish鱼
·
2023-11-06 16:08
数据结构
java
数据结构
202. 快乐数
202.快乐数原题链接:完成情况:解题思路:参考代码:原题链接:202.快乐数https://
leetcode.cn
/problems/happy-number/description/完成情况:解题思路
Wzideng
·
2023-11-06 11:10
java学习
算法知识
#
LeetCode题解
链表
数据结构
推荐算法
算法
机器学习
1. 两数之和
1.两数之和原题链接:完成情况:解题思路:参考代码:错误经验吸取)原题链接:1.两数之和https://
leetcode.cn
/problems/two-sum/description/完成情况:解题思路
Wzideng
·
2023-11-06 11:55
java学习
算法知识
#
LeetCode题解
链表
数据结构
线性代数
矩阵
算法
LeetCode 187. 重复的DNA序列
原题链接:https://
leetcode.cn
/problems/repeated-dna-sequences/?
liangchaaaaa
·
2023-11-06 09:53
LeetCode
leetcode
算法
【算法】单调栈 每日温度 接雨水
739.每日温度42.接雨水相关练习1475.商品折扣后的最终价格901.股票价格跨度1019.链表中的下一个更大节点84.柱状图中最大的矩形单调栈【基础算法精讲26】例题739.每日温度https://
leetcode.cn
小威W
·
2023-11-06 05:41
算法
算法
单调栈
接雨水
最大最小
[LeetCode]-160. 相交链表-141. 环形链表-142.环形链表II-138.随机链表的复制
目录160.相交链表题目思路代码141.环形链表题目思路代码142.环形链表II题目思路代码160.相交链表160.相交链表-力扣(LeetCode)https://
leetcode.cn
/problems
敲敲er
·
2023-11-06 02:02
LeetCode刷题分享
leetcode
链表
算法
[LeetCode]-876.链表的中间结点-206.反转链表-21.合并两个有序链表-203.移除链表元素
链表的中间结点题目思路代码206.反转链表题目思路代码21.合并两个有序链表题目思路代码203.移除链表元素题目思路代码876.链表的中间结点876.链表的中间结点-力扣(LeetCode)https://
leetcode.cn
敲敲er
·
2023-11-06 02:32
数据结构
LeetCode刷题分享
leetcode
链表
算法
第二章 链表_19. 删除链表的倒数第 N 个结点
文章目录[19.删除链表的倒数第N个结点](https://
leetcode.cn
/problems/remove-nth-node-from-end-of-list/description/)一、题目二
(ง'-')ง
·
2023-11-06 01:31
链表
数据结构
第二章 链表_02.07. 链表相交
文章目录[02.07.链表相交](https://
leetcode.cn
/problems/intersection-of-two-linked-lists-lcci/description/)一、题目二
(ง'-')ง
·
2023-11-06 01:31
链表
数据结构
leetcode
上一页
14
15
16
17
18
19
20
21
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他