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
intval()
代码随想录算法训练营Day18| 二叉树part05
*publicclassTreeNode{*
intval
;*TreeNodeleft;*TreeNoderigh
唐崖凌
·
2023-12-29 01:51
代码随想录打卡
算法
leetcode
数据结构
代码随想录算法训练营Day21| 二叉树part07
*publicclassTreeNode{*
intval
;*TreeNodeleft;*Tree
唐崖凌
·
2023-12-29 01:51
算法
代码随想录算法训练营Day23| 二叉树part09
*publicclassTreeNode{*
intval
;*TreeNodeleft;*TreeNo
唐崖凌
·
2023-12-29 01:51
代码随想录打卡
算法
leetcode
数据结构
代码随想录算法训练营day14||二叉树的遍历
*publicclassTreeNode{*
intval
;*TreeNodeleft;*TreeNoderight;*TreeNode(){}*TreeNode(
intval
){this.val=val
[ ]898
·
2023-12-29 01:19
算法
代码随想录算法训练营day15 || 层序遍历、翻转二叉树,对称二叉树
*structTreeNode{*
intval
;*TreeNode*left;*TreeNode*right;*TreeNode():val(0),left
始皇di
·
2023-12-29 01:48
算法
leetcode
146. LRU Cache
classLRUCache{classNode{intkey;
intval
;Nodenext;Nodeprev;publicNode(intkey,
intval
){this.key=key;this.val
greatfulltime
·
2023-12-28 17:37
Leetcode—105.从前序与中序遍历序列构造二叉树【中等】
*structTreeNode{*
intval
;*TreeNode*left;*TreeNode*right;*TreeNode():val(0),left(nullptr),right(nullptr
源代码•宸
·
2023-12-28 14:47
LeetCode刷题
leetcode
算法
职场和发展
经验分享
c++
二叉树
递归
剑指offer——二叉树的镜像
代码/**publicclassTreeNode{
intval
=0;TreeNodeleft=null;TreeNoderight=null;publicTreeNode(
intval
){th
source201
·
2023-12-28 13:40
链表 典型习题
*structListNode{*
intval
;*ListNode*next;*ListNode(intx):val(x),next(NULL){}*};*/classSolution{public:ListNode
大法师安东尼ds
·
2023-12-28 12:01
算法与数据结构
链表
数据结构
动态内存管理(1)
对非动态开辟内存使用free释放3.4使用free释放一块动态开辟内存的一部分3.5对同一块动态内存多次释放3.6动态开辟内存忘记释放(内存泄漏)1.为什么存在动态内存分配我们已经掌握的内存开辟方式有:
intval
xi_nian123
·
2023-12-28 12:01
动态内存管理
c语言
动态内存管理
116. 填充每个节点的下一个右侧节点指针(中等)
二叉树定义如下:structNode{
intval
;Node*left;Node*right;Node*next;}填充它的每个next指针,让这个指针指向其下一个右侧节点。如果找不
Rock在学习
·
2023-12-28 01:42
二叉树
数据结构
算法
python
leetcode
IO进程线程 DAY8 作业
1.使用三个进程完成ABCABCABCABCABC的输出①信号灯封装函数代码#include//定义共用体类型unionsemun{
intval
;structsemid_ds*buf;unsignedshort
忆相逢cz
·
2023-12-27 22:21
算法
数据结构
Google模拟面试【面试】
示例二叉树答案是161/\23/\/\4567/\89publicclassMain{staticclassNode{
intval
;Nodeleft;Noderig
日星月云
·
2023-12-27 15:30
#
面试真题
面试
算法
数据结构
【洛谷 P1048】采药
采药(题目链接)思路典型的01背包问题,找到其状态转移方程即可代码#include#includeusingnamespacestd;#defineLOCAL0inttim[101];
intval
[101
Siding
·
2023-12-27 09:53
链表移除节点和反转链表
structListNode*removeElements(structListNode*head,
intval
){structListNode*prev=NULL,*cur=head;while(cur
微风拂柳絮
·
2023-12-26 07:52
链表
数据结构
Leetcode—86.分隔链表【中等】
*structListNode{*
intval
;*structListNode*next;*};*/structListNode*partition(structListNode*head,intx){
源代码•宸
·
2023-12-26 06:39
LeetCode刷题
leetcode
链表
linux
经验分享
c语言
算法
字节入职四个月,正值选offer季,聊聊体验
{nowcoder-vote}{99105}题解|#合并两个排序的链表#/***structListNode{*
intval
;*structListNode*next;*ListNode(intx):offer
2301_79125642
·
2023-12-26 06:14
java
2022-01-09 链表
*publicclassListNode{*
intval
;*ListNodenext;*ListNode(){}*ListNode(
intval
){this.val=val;}*ListNode(
intval
16孙一凡通工
·
2023-12-26 05:17
Leetcode-160 相交链表
*publicclassListNode{*
intval
;*ListNodenext;*ListNode(intx){*val=x;*next=null;*}*}*/publicclassSolution
肉松拿铁
·
2023-12-26 05:27
Leetcode刷题
leetcode
链表
算法
LeetCode-链表-160. 相交链表
*structListNode{*
intval
;*ListNode*next;*ListNode(intx):val(x),next(NULL){}*};*/classSolution{public:ListNode
尘埃飞舞
·
2023-12-26 05:27
#
链表问题
链表
leetcode
数据结构
27. 移除元素
27.移除元素题目链接:27.移除元素代码如下:classSolution{public:intremoveElement(vector&nums,
intval
){intcount=0;for(inti
咔咔咔的
·
2023-12-26 02:09
leetcode
算法
N叉树后序遍历
示例1:输入:root=[1,null,3,2,4,null,5,6]输出:[5,6,3,2,4,1]/*//DefinitionforaNode.classNode{public:
intval
;vectorchildren
恋上豆沙包
·
2023-12-25 15:07
算法
数据结构
leetcode
2. 两数相加
*structListNode{*
intval
;*ListNode*next;*ListNode():val(0
恋上豆沙包
·
2023-12-25 15:07
leetcode
算法
leetcode算法之队列
在每个树行中找最大值在leetcode中,队列一般都是搭配BFS,即宽度优先搜索算法进行使用1.N叉树的层序遍历N叉树的层序遍历/*//DefinitionforaNode.classNode{public:
intval
@A云淡风轻
·
2023-12-24 12:21
算法
算法
leetcode
职场和发展
21. Merge Two Sorted Lists 2019-03-19
*publicclassListNode{*
intval
;*ListNodenext;*ListNode(intx){val=x;}*}*/classSolution{publicListNodemergeTwoLists
Thinker_Lin
·
2023-12-24 06:19
《LeetCode力扣练习》代码随想录——双指针法(链表相交---Java)
*publicclassListNode{*
intval
;*ListNodenext;*ListNode(intx){*val=x;*next=null;*}*}*/publicclassSolutio
XRT_knives
·
2023-12-24 03:07
LeetCode
leetcode
链表
java
《LeetCode力扣练习》代码随想录——双指针法(环形链表II---Java)
*classListNode{*
intval
;*ListNodenext;*ListNode(intx){*val=x;*next=null;*}*}*/publicclassSolution{publi
XRT_knives
·
2023-12-24 03:07
LeetCode
leetcode
链表
java
17树的子结构
(ps:我们约定空树不是任意一个树的子结构)Java实现classTreeNode{
intval
;TreeNodeleft;TreeNoderight;publicTreeNode(
intval
){this.val
Bing_o_o
·
2023-12-24 01:54
leetcode203题目移除链表元素
*structListNode{*
intval
;*ListNode*next;*ListNode():val(0),next(nullptr){}*ListNode(intx):val(x),next(
今天我刷leetcode了吗
·
2023-12-24 01:33
c++
数据结构
算法
Leetcode21 合并两个有序链表
*structListNode{*
intval
;*ListNode*next;*ListNode():val(0),next(nullptr){}*ListNode(intx):val(x),next(
今天我刷leetcode了吗
·
2023-12-24 01:32
c++
学习
算法
leetcode141 环形链表通过递归算法求解(很妙的递归算法)
*structListNode{*
intval
;*ListNode*next;*ListNode(intx):val(x),next(NULL){}*};*/classSolution{public:boolhasCycle
今天我刷leetcode了吗
·
2023-12-24 01:32
c++
算法
LeetCode:155. 最小栈
voidpush(
intval
)将元素val推入堆栈。voidpop()删除堆栈顶部的元素。inttop()获取堆栈顶部的元素。intgetMin()获取堆栈中的最小元素。
alex很累
·
2023-12-24 00:07
二叉树的后续遍历
整理一份代码,之后要熟练掌握/***Definitionforbinarytree*structTreeNode{*
intval
;*TreeNode*left;*TreeNode*right;*TreeNode
球球球球笨
·
2023-12-23 23:18
【刷题·链表】两数相加
*structListNode{*
intval
;*ListNode*next;*ListNode():val(0),next
吴天德少侠
·
2023-12-23 22:15
leetcode
链表
数据结构
Leetcode—剑指Offer LCR 025.两数相加II【中等】
*structListNode{*
intval
;*structListNode*next;*};*/structListNode*addTwoNumbers(structListNode*l1,structListNode
源代码•宸
·
2023-12-23 21:17
LeetCode刷题
leetcode
linux
windows
经验分享
c语言
Leetcode—445.两数相加II【中等】
*structListNode{*
intval
;*structListNode*next;*};*/structListNode*addTwoNumbers(structListNode*l1,structListNode
源代码•宸
·
2023-12-23 16:36
LeetCode刷题
leetcode
linux
windows
经验分享
c语言
从上往下打印二叉树
出队的时候将子节点入队importjava.util.ArrayList;importjava.util.LinkedList;importjava.util.Queue;/**publicclassTreeNode{
intval
NetCedar
·
2023-12-23 06:34
力扣刷题61. 旋转链表
*publicclassListNode{*
intval
;*ListNodenext;*ListNode(){}*ListNode(
intval
){this.val=val;}*ListNode(in
grt要一直一直努力呀
·
2023-12-23 01:36
leetcode刷题
链表
leetcode
数据结构
力扣 61.旋转链表
*structListNode{*
intval
;*ListNode*next;*ListNode():val(0),next(nullptr){}*ListNode(intx):val(x),next(
爱吃代码的航航
·
2023-12-23 01:36
力扣
链表
leetcode
数据结构
力扣61. 旋转链表
*structListNode{*
intval
;*ListNode*next;*ListNode():val(0),next(nullptr){}*L
slowfastflow
·
2023-12-23 01:01
力扣实践
leetcode
链表
算法
lc 24.两两交换链表中的节点(链表,交换顺序)
*structListNode{*
intval
;*ListNode*next;*ListNode():val(0),next(nullptr){}*ListNode(intx):val(x),next(
三块桌布
·
2023-12-22 19:31
数据结构与算法
#
线性结构
剑指offerDay29----二叉搜索树与双向链表
源码:GitHub源码/**publicclassTreeNode{
intval
=0;TreeNodeleft=null;TreeNoderig
墨殇染泪
·
2023-12-22 18:56
代码随想录算法训练营第三天| 203.移除链表元素、707.设计链表、 206.反转链表
移除链表元素自己版本需要注意的地方:可以使用哨兵节点,方便操作使用两个指针,同时向后移动,这样便于删除操作classSolution{public:ListNode*removeElements(ListNode*head,
intval
ogier_maxwell
·
2023-12-22 16:20
代码随想录算法训练营
算法
链表
数据结构
leetcode
合并两个有序链表算法(leetcode第21题)
1,1,2,3,4,4]示例2:输入:l1=[],l2=[]输出:[]示例3:输入:l1=[],l2=[0]输出:[0]提示:两个链表的节点数目范围是[0,50]-100structListNode{
intval
蹲家宅宅
·
2023-12-22 14:53
算法
算法
链表
leetcode
搜索二叉搜索树
TreeNode*searchBST(TreeNode*root,
intval
){if(root==NULL||root->val==val)returnroot;TreeNode*result=
孟猛2023
·
2023-12-22 13:25
算法
代码随想录Day4——24. 两两交换链表中的节点 19.删除链表的倒数第N个节点 02.07. 链表相交 142.环形链表
*structListNode{*
intval
;*ListNode*next;*ListNode():val(0),next(nullptr){}*ListNode(int
cheng_dog
·
2023-12-21 23:31
链表
java
数据结构
stack刷题
voidpush(
intval
)将元素val推入堆栈。voidpop()删除堆栈顶部的元素。inttop()获取堆栈顶部的元素。intgetMin()获取堆栈中的最小元素。
绝世剑仙纪宁
·
2023-12-21 18:13
C++
神魔炼体-刷题
java
数据结构
开发语言
LeetCode刷题笔记之链表
*publicclassListNode{*
intval
;*ListNodenext;*ListNode(){}*ListNode(
intval
){this
abtgu
·
2023-12-21 16:23
课程复习
leetcode
笔记
链表
java算法_删除链表的倒数第 N 个结点(LeetCode_Hot100)
算法解析的私得全部代码/***2*@Author:LJJ*3*@Date:2023/7/139:17*4*/publicclassLinkedListUtil{staticclassListNode{
intval
佳-Mr.Li
·
2023-12-21 16:59
java算法
java
算法
LeetCode Hot100 19. 删除链表的倒数第 N 个结点
*publicclassListNode{*
intval
;*ListNodenext;*ListNode(){}*ListNode(
intval
){this.val=val;}*ListNode(
intval
hn小菜鸡
·
2023-12-21 16:59
算法刷题-链表
leetcode
链表
算法
上一页
8
9
10
11
12
13
14
15
下一页
按字母分类:
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
其他