当前位置:网站首页>Leetcode-02 (linked list question)
Leetcode-02 (linked list question)
2022-07-07 03:12:00 【Fairy wants carry】
Iterative method :
Ideas : Divide a local location , Then use an auxiliary node and auxiliary pointer , Compare the size and then connect the auxiliary pointer , Push back every time ;
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
// Auxiliary iteration method
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
ListNode help=new ListNode(-1);
ListNode pre=help;// Auxiliary pointer
// Traverse
while (l1 != null && l2 != null){
if(l1.val<=l2.val){
// Connect
pre.next=l1;
pre=pre.next;
l1=l1.next;
}else{
pre.next=l2;
pre=pre.next;
l2=l2.next;
}
}
// Connect the remaining nodes directly
if(l1!=null){
pre.next=l1;
}
if(l2!=null){
pre.next=l2;
}
return help.next;
}
}
The recursive method
class Solution {
// recursive
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
//1. The end condition
if(l1==null){
return l2;
}
if(l2==null){
return l1;
}
//2. Recursive thinking
if(l1.val<=l2.val){
l1.next=mergeTwoLists(l1.next,l2);
return l1;
}else{
l2.next=mergeTwoLists(l1,l2.next);
return l2;
}
}
}
The recursive method , Similar to the above
class Solution {
// recursive
public ListNode mergeTwoLists(ListNode list1, ListNode list2) {
//1. The end condition
if(list1==null){
return list2;
}
if(list2==null){
return list1;
}
//2. Recursive thinking
if(list1.val<=list2.val){
list1.next=mergeTwoLists(list1.next,list2);
return list1;
}else{
list2.next=mergeTwoLists(list1,list2.next);
return list2;
}
}
}
Iterative method
Pay attention to the use of pointer pointing head, Then point to the previous node , Push back slowly
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
class Solution {
public ListNode reverseList(ListNode head) {
ListNode pre=null;
ListNode cur=head;
// Each cycle is exchanged in pairs
while(cur!=null){
ListNode next=cur.next;
cur.next=pre;
pre=cur;
cur=next;
}
return pre;
}
Speed pointer :
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
class Solution {
public ListNode middleNode(ListNode head) {
int n = 0;
ListNode cur = head;
while (cur != null) {
++n;
cur = cur.next;
}
int k = 0;
cur = head;
while (k < n / 2) {
++k;
cur = cur.next;
}
return cur;
}
}
边栏推荐
- 杰理之发射端在接收端关机之后假死机【篇】
- mos管實現主副電源自動切換電路,並且“零”壓降,靜態電流20uA
- Don't you know the relationship between JSP and servlet?
- mos管实现主副电源自动切换电路,并且“零”压降,静态电流20uA
- CVPR 2022 最佳论文候选 | PIP: 6个惯性传感器实现全身动捕和受力估计
- Hazel engine learning (V)
- Use of promise in ES6
- [tools] basic concept of database and MySQL installation
- Jerry's broadcast has built-in flash prompt tone to control playback pause [chapter]
- The first symposium on "quantum computing + application of financial technology" was successfully held in Beijing
猜你喜欢
Analysis of USB network card sending and receiving data
Jerry's broadcast has built-in flash prompt tone to control playback pause [chapter]
尚硅谷JVM-第一章 类加载子系统
Redis getting started complete tutorial: client management
Le tube MOS réalise le circuit de commutation automatique de l'alimentation principale et de l'alimentation auxiliaire, et la chute de tension "zéro", courant statique 20ua
How-PIL-to-Tensor
又一百万量子比特!以色列光量子初创公司完成1500万美元融资
“去虚向实”大潮下,百度智能云向实而生
Make (convert) ICO Icon
商城商品的知识图谱构建
随机推荐
unrecognized selector sent to instance 0x10b34e810
Redis introduction complete tutorial: client case analysis
Centerx: open centernet in the way of socialism with Chinese characteristics
uniapp适配问题
Babbitt | metauniverse daily must read: is IP authorization the way to break the circle of NFT? What are the difficulties? How should holder choose the cooperation platform
杰理之播内置 flash 提示音控制播放暂停【篇】
tensorboard的使用
Qt蓝牙:QBluetoothDeviceInfo
Left path cloud recursion + dynamic planning
How to find file accessed / created just feed minutes ago
Uniapp adaptation problem
input_delay
Starting from 1.5, build a micro Service Framework -- log tracking traceid
Development of wireless communication technology, cv5200 long-distance WiFi module, UAV WiFi image transmission application
Form validation of uniapp
How-PIL-to-Tensor
A complete tutorial for getting started with redis: AOF persistence
Redis Getting started tutoriel complet: positionnement et optimisation des problèmes
HDU 4337 King Arthur&#39;s Knights 它输出一个哈密顿电路
input_ delay