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
LeetCodeOJ
复杂度相关OJ题(LeetCode、C语言、复杂度、消失的数字、旋转数组)
两道关于复杂度的
LeetCodeOJ
题消失的数字轮转数组代码:C语言文章目录1.消失的数字1.1题目描述1.2解决思路及代码实现1.2.1思路11.2.2思路22.轮转数组2.1题目描述2.2解决思路及代码实现
如何写出最优雅的代码
·
2023-11-28 19:55
数据结构与算法
c语言
数据结构
算法
leetcode
数据结构初阶
leetcodeOJ
题(二)
目录第一题思路:第二题思路第三题描述示例1思路总结:这种类似的题,都是用快慢指针,相差一定的距离然后输出慢指针。第一题给你一个链表的头节点head和一个整数val,请你删除链表中所有满足Node.val==val的节点,并返回新的头节点。示例1:输入:head=[1,2,6,3,4,5,6],val=6输出:[1,2,3,4,5]示例2:输入:head=[],val=1输出:[]示例3:输入:he
深中笃行
·
2023-11-20 23:16
数据结构
数据结构
考研
c语言
链表
算法
算法:链表的重排
LeetCodeOJ
:ReorderListGivenasinglylinkedlistL:L0→L1→…→Ln-1→Ln,reorderitto:L0→Ln→L1→Ln-1→L2→Ln-2→…Youmustdothisin-placewithoutalteringthenodes'values.Forexample
hello_world_hust
·
2023-11-12 19:05
LeetCode
LeetCode OJ题解系列
其实
LeetCodeOJ
之前已经做过了,近日上去看了一下,发现题目增加了很多。我打算重新刷一遍,并把题目思路和结果放到博客上来,当做一次刷题记录吧。
「已注销」
·
2023-10-14 06:57
LeetCode
leetcode
栈的简单应用之括号匹配问题
这两次有关栈的代码均已上传到gitee的thestack文件中,欢迎自取:濡白的学习小仓库目录前言基本思路QUESTIONS:ANSWERS:代码实现
LeetcodeOJ
链接觉得对你有帮助的话记得三连哦
濡 白
·
2022-05-06 08:07
数据结构和算法
c语言
经验分享
数据结构
leetcode
[LeetCode OJ]- Merge K Sorted Lists
见[
LeetCodeOJ
]-Merge2SortedLists那么怎么做合适呢?想到了上上学期算法课上学的一个【归并排序】的东东。
其中一个cc
·
2021-05-02 00:53
动态规划4:最大子段和问题到最大子矩阵问题(四):最大子矩阵面积问题
找出它的一个子矩阵,使得这个子矩阵内的所有元素之和最大但是这个矩形的大小不一定是最大的,现在我们来找一个最大面积的子矩阵转自:《浅谈用极大化思想解决最大子矩形问题》问题1:来看LeetCode上的一道题:
LeetCodeOJ
_王川
·
2020-09-14 04:45
动态规划
leetcode(354)—— Russian Doll Envelopes(俄罗斯套娃信封)
原题位置:RussianDollEnvelopes|
LeetCodeOJ
俄罗斯套娃信封问题的本质是一个二维版的LIS(最长递增子列)的问题。
Inside_Zhang
·
2020-09-12 18:53
leetcode
用java来写ACM
因此从今天开始我要转换自己的acm平台,开始使用
LeetCodeOJ
有点跑题,毕竟这篇博客还是偏向技术一些,不搞心灵鸡汤类似的东
低调小一
·
2020-09-12 01:22
java
ACM
Leet Code OJ 刷题顺序参考
出现频度为5:1.
LeetCodeOJ
1.TwoSum[Difficulty:Easy]2.
LeetCodeOJ
8.StringtoInteger(atoi)[Difficulty:Easy]3.
LeetCodeOJ
15.3Sum
渣渣琪
·
2020-08-20 03:33
leetcode刷题
算法
leet code之Surrounded Regions
题目地址:SurroundedRegions|
LeetCodeOJ
https://leetcode.com/problems/surrounded-regions/此题可用DFS和BFS两种方法解:解题思路
vanquishedzxl
·
2020-08-18 17:35
leetcode难度及面试频率
刷题顺序:出现频度为5:1.
LeetCodeOJ
1.TwoSum[Difficulty:Easy]2.
LeetCodeOJ
8.StringtoInteger(atoi)[Difficulty:Easy]
Kaido0
·
2020-08-17 20:09
leetcode
LeetCodeOJ
.ZigZag Conversion
试题请参见:https://leetcode.com/problems/zigzag-conversion/题目概述Thestring“PAYPALISHIRING”iswritteninazigzagpatternonagivennumberofrowslikethis:(youmaywanttodisplaythispatterninafixedfontforbetterlegibility)
谢浩哲
·
2020-08-14 00:05
算法解题报告
Zig-Zag
LeetCode
模拟
LeetCodeOJ
.Jump Game II
试题请参见:https://leetcode.com/problems/jump-game-ii/题目概述Givenanarrayofnon-negativeintegers,youareinitiallypositionedatthefirstindexofthearray.Eachelementinthearrayrepresentsyourmaximumjumplengthatthatpos
谢浩哲
·
2020-08-14 00:05
算法解题报告
LeetCode
Jump-Game
BFS
广度优先搜索
LeetCodeOJ
. Valid Parentheses
试题请参见:https://oj.leetcode.com/problems/valid-parentheses/题目概述Givenastringcontainingjustthecharacters'(',')','{','}','['and']',determineiftheinputstringisvalid.Thebracketsmustcloseinthecorrectorder,"()
谢浩哲
·
2020-08-14 00:05
算法解题报告
leetcode
parenthese
stack
括号匹配
堆栈
LeetCode刷题指南(一)
1.
LeetCodeOJ
1.TwoSum[Difficulty:Easy]2.
LeetCodeOJ
8.StringtoInteger(atoi)[Difficulty:Easy]3.
LeetCodeOJ
15.3Sum
binbigdata
·
2020-08-13 10:58
刷题
新坑 Leet Code DP(动态规划)题解总和
毕业老,挖新坑,同学推荐了一个
LeetCodeOJ
给我,之前搞ACM我最喜欢做DP题,所以对于新OJ,我想说的是,DP题就交给我吧。
Sithope
·
2020-08-10 20:34
LeetCode
DP
学习笔记1:c++实现LRU算法
LeetCodeOJ
上有一道题目,要编程实现cache的LRU算法,刚看到这道题的时候,我想到了用队列来做,但是若用单链表来做,必须要保存尾节点的上一个节点指针,才能实现快速增加一条数据,编程起来很不方便
_王川
·
2020-08-04 01:11
我的私房菜
双向队列
循环队列
hash
LRU
LeetCode刷题之链表
以下使用C代码均通过
LeetCodeOJ
系统的检测,没有通过的会特别声明,但肯定是能通过微软的VS中的编译器的。
Chneny辰星
·
2020-08-01 10:17
数据结构与算法
Leetcode OJ 91 Decode Ways [Medium]
LeetcodeOJ
79WordSearch[Medium]《剑指offer》第5章(3)题目描述:AmessagecontaininglettersfromA-Zisbeingencodedtonumbersusingthefollowingmapping
曦西
·
2020-07-28 05:18
Leetcode
Leetcode OJ 131 Palindrome Partitioning [Medium]
LeetcodeOJ
131PalindromePartitioning[Medium]题目描述:Givenastrings,partitionssuchthateverysubstringofthepartitionisapalindrome.Returnallpossiblepalindromepartitioningofs.Forexample
曦西
·
2020-07-28 05:18
Leetcode
leetcode
Leetcode OJ 77 Combinations [Medium]
LeetcodeOJ
77Combinations[Medium]题目描述:Giventwointegersnandk,returnallpossiblecombinationsofknumbersoutof1
曦西
·
2020-07-28 05:18
Leetcode
leetcode
Leetcode OJ 129 Sum Root to Leaf Numbers [Medium]
LeetcodeOJ
129SumRoottoLeafNumbers[Medium]题目描述:Givenabinarytreecontainingdigitsfrom0-9only,eachroot-to-leafpathcouldrepresentanumber.Anexampleistheroot-to-leafpath1
曦西
·
2020-07-28 05:18
Leetcode
Leetcode OJ 102 Binary Tree Level Order Traversal [Medium]
LeetcodeOJ
102BinaryTreeLevelOrderTraversal[Medium]《剑指offer》第4章-面试题32题目描述:Givenabinarytree,returnthelevelordertraversalofitsnodes'values
曦西
·
2020-07-28 05:18
Leetcode
[LeetCode]1 Two Sum(C++,Python实现)
LeetCodeOJ
的第一题,如果有问题或者给我指点欢迎来信讨论
[email protected]
题目描述
LeetCodeOJ
的第一题,题目描述如下:Givenanarrayofintegers
Linuth9
·
2020-07-27 17:06
算法
LeetCode
leetcode(三)—— Longest Substring Without Repeating Characters(最长不重复子串 Python/C++)
LongestSubstringWithoutRepeatingCharacters|
LeetCodeOJ
使用hash判重问题首先想到的就是hash(或者使用map);思路:遍历全部子串(n+(n-1)
Inside_Zhang
·
2020-07-09 18:13
leetcode
LeetCode OJ10 Regular Expression Matching
LeetCodeOJ
10RegularExpressionMatching题目要求Implementregularexpressionmatchingwithsupportfor‘.’and‘*’.‘.
枯萎的海风
·
2020-07-09 06:46
算法与OJ
二叉树反转(java版)
leetcodeoj
第226题,难度级别为easy,巩固一下二叉树的相关知识。
kecongxiao
·
2020-07-09 02:26
java
单链表逆置
最近在
LeetCodeOJ
上刷题,将一些算法题的解法记录下来,也期待一些新的更好的方法。
KaiwenT
·
2020-07-08 09:44
算法
数据结构
单链表
算法
数据结构
合并2个有序链表=> 进阶 合并k个有序链表---C++实现
合并2个有序链表三种方法
LeetCodeOJ
链接(戳我)一般方法有合并2个链表作为前提,再来看这题简直是简单,最简单容易想到该方法。
~AC~
·
2020-07-08 02:55
数据结构
c/c++面试
LeetCode OJ-18.4Sum(四数和)
LeetCodeOJ
-18.4Sum(四数和)题目描述GivenanarraySofnintegers,arethereelementsa,b,c,anddinSsuchthata+b+c+d=target
Morrisss_
·
2020-07-07 18:51
OJ
剑指offer4-(LCA)Lowest Common Ancestor
题目可以参考leetcode,写完顺便可以用
leetcodeOJ
测试一下自己代码的正确性。这一题不难,一般的递归思想就可以解决。但当时面试京东的时候,别人总说我遍历了两次,能否只遍历一次?
小羊哈利
·
2020-07-05 17:37
C++
leetcode(300)—— Longest Increasing Subsequence(最长递增子序列)
参考Python解法:动态规划——最长递增子序列(LIS)原题位置:LongestIncreasingSubsequence|
LeetCodeOJ
题目的说明:严格递增;子序列不要求连续;解法1,O(n2
Inside_Zhang
·
2020-07-02 07:02
leetcode
LeetCode刷题笔记 01 Two Sum
恰好今天是周末,时间比较宽裕,我们来刷一道leetcode链接TwoSum|
LeetCodeOJ
题目给定一个整型数组和另外一个整数,在数组找出两个整数,使得
Monet66
·
2020-06-25 02:48
C++
Leetcode Linked List Problem 链表问题合集
1.
LeetCodeOJ
2.AddTwoNumbersYouaregiventwonon-emptylinkedlistsrepresentingtwonon-negativeintegers.Thedigitsarestoredinreverseorderandeachoftheirnodescontainasingledigit.Addthetwonumbersandreturnitasali
JeffCoding
·
2020-06-23 21:12
LeetCode
LeetCode 第3题 python
3.LongestSubstringWithoutRepeatingCharacters不重复字符的最长子字符串本文题目来自
LeetCodeOJ
,解法不是最优,本人初学python,还望各位多指点。
24thAUG
·
2020-06-23 20:59
算法
Max product subarray
这几天为了准备wap的techinterview,无意间看到了
leetcodeOJ
,上面目前有150多道题目,粗粗浏览了一下都是质量较高的算法题,突然有了一种大一时候ACM的感觉,虽然很多都不熟悉了,还有一些从来没熟悉过
MR_LUXY
·
2020-06-23 11:59
LeetCode
JAVA之路
Leetcode Tree Problem 树问题合集
树问题规律总结出现树问题,多数情况都是需要递归遍历(dfs和bfs),并且要根据题目要求,来思考相关的树的性质:二叉树的一些性质问题汇总1.
LeetCodeOJ
101.SymmetricTree程序:/
JeffCoding
·
2020-06-21 02:37
LeetCode
LeetCode 4.Median of Two Sorted Arrays (Python)
4.MedianofTwoSortedArrays(Python)两个排序数组的中位数本题来自
LeetCodeOJ
题目翻译有两个已经排好序的数组nums1和nums2大小分别为m和n。
24thAUG
·
2020-06-21 02:38
算法
[LeetCode]5 Longest Palindromic Substring(C++,Python实现)
LeetCodeOJ
的第五题,如果有问题或者给我指点欢迎来信讨论
[email protected]
题目描述GivenastringS,findthelongestpalindromicsubstringinS.YoumayassumethatthemaximumlengthofSis1000
Linuth9
·
2020-06-20 23:08
算法
LeetCode
leetcode-cli: 体验不一样的刷题风
leetcode-cli是基于NodeJS开发的一个命令行工具,其最初的想法是针对
leetcodeOJ
提供另外一种完整而又便捷的刷题体验。相信读完本文的你至少会有这样的感受:原来刷题还可以这样刷!
skygragon
·
2020-03-28 16:56
LeetCode刷题系列(1)
LeetCodeOJ
1.TwoSum题目:Givenanarrayofintegers,returnindicesofthetwonumberssuchthattheyadduptoaspecifictarget.Youmayassumethateachinputwouldhaveexactlyonesolution.Ex
胡二囧
·
2020-03-04 23:56
Binary Tree Inorder Traversal - 中序遍历二叉树
中序遍历二叉树分为两种方法,第一种是递归法,第二种是迭代法,递归法在
LeetCodeOJ
上被称为是trivial(不重要的),所以重点在迭代法遍历二叉树递归法structTreeNode{intvalue
郑明明
·
2020-02-24 03:01
在线编程及其学习平台
3eUVRn1、codepad:http://codepad.org/2、ideone:http://ideone.com/3、codecademy:http://www.codecademy.com/4、
LeetCodeOJ
Kenny_W_Zhang
·
2020-02-13 11:07
#LeetCode OJ#273.Integer to English Words /CPP
最近发现一个很好的网站叫做
LeetCodeOJ
,注册一个账号之后就可以在上面刷题,进一步加深对语言的熟悉。多造点轮子什么的。网址:https://leetcode.com/这是我今晚在上面写的一道题。
SparkLiu
·
2019-12-31 21:30
【算法】-二叉树的问题整理
持续更新中……判断类型的题目:1.判断两棵二叉树是否相同[
LeetCodeOJ
]-SameTree关键字:递归2.判断一颗二叉树是否为二叉搜索树[
LeetCodeOJ
]-ValidBinarySearchTree
其中一个cc
·
2019-12-16 06:31
LeetCode OJ-129.Sum Root to Leaf Numbers
LeetCodeOJ
-129.SumRoottoLeafNumbers题目描述Givenabinarytreecontainingdigitsfrom0-9only,eachroot-to-leafpathcouldrepresentanumber.Anexampleistheroot-to-leafpath1
Morrisss_
·
2017-09-10 12:27
OJ
OJ
leetcode
二叉树遍历
二叉树路径和
LeetCodeOJ
_002: Add Two Numbers
本文目录本文目录题目AC代码每天一道LeetCode.原题目:https://leetcode.com/problems/add-two-numbers/题目TotalAccepted:293186TotalSubmissions:1071927Difficulty:MediumContributor:LeetCodeYouaregiventwonon-emptylinkedlistsrepres
zxca368
·
2017-06-08 17:52
刷题
Leetcode
LeetCode OJ-392.Is Subsequence
LeetCodeOJ
-392.IsSubsequence题目描述Givenastringsandastringt,checkifsissubsequenceoft.YoumayassumethatthereisonlylowercaseEnglishlettersinbothsandt.tispotentiallyaverylong
Morrisss_
·
2017-05-12 16:28
OJ
ACM
leetcode
OJ
子序列
LeetCode OJ-560.Subarray Sum Equals K
LeetCodeOJ
-560.SubarraySumEqualsK题目描述Givenanarrayofintegersandanintegerk,youneedtofindthetotalnumberofcontinuoussubarrayswhosesumequalstok.Example1
Morrisss_
·
2017-05-06 15:47
OJ
ACM
OJ
leetcode
子数组和
上一页
1
2
下一页
按字母分类:
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
其他