FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
leetcode/code/lc237.java at master · mJackie/leetcode · GitHub
mJackie
/
leetcode
Public
Notifications
You must be signed in to change notification settings
Fork
135
Star
405
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
leetcode
/
code
/
lc237.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
23 lines (22 loc) · 578 Bytes
Breadcrumbs
leetcode
/
code
/
lc237.java
Copy path
File metadata and controls
23 lines (22 loc) · 578 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package
code
;
/*
* 237. Delete Node in a Linked List
* 题意:删除链表中的一个节点,给的是这个节点,不知道前边的节点
* 难度:Easy
* 分类:Linked List
* 思路:剑指Offer上有,拷贝下一个节点的内容到该节点,删除下一个节点
* Tips:
*/
public
class
lc237
{
public
class
ListNode
{
int
val
;
ListNode
next
;
ListNode
(
int
x
) {
val
=
x
;
}
}
public
void
deleteNode
(
ListNode
node
) {
node
.
val
=
node
.
next
.
val
;
node
.
next
=
node
.
next
.
next
;
}
}
Back
|
FazBrowse Home
|
New Git URL