說明:思路中寫的是代碼,表達(dá)基本意思
一、刪除鏈表中所有與val相等的元素
定義兩個(gè)結(jié)點(diǎn):prev和cur
遍歷整個(gè)鏈表:
相等:prve.next=cur.next
cur=cur.next
prev=prev.next
不相等:cur=cur.next

創(chuàng)新互聯(lián)建站是一家專業(yè)提供岱岳企業(yè)網(wǎng)站建設(shè),專注與成都網(wǎng)站制作、做網(wǎng)站、H5技術(shù)、小程序制作等業(yè)務(wù)。10年已為岱岳眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)絡(luò)公司優(yōu)惠進(jìn)行中。
二、合并兩個(gè)有序鏈表
定義兩個(gè)結(jié)點(diǎn)result(合成的新鏈表的頭結(jié)點(diǎn)) last(result的最后一個(gè)結(jié)點(diǎn))
如果cur1.val<=cur2.val
last.next=cur1
cur1=cur1.next
否則,同理,更新cur2
```class Node {
int val;
Node next = null;
public Node(int val) {
this.val = val;
}
}
public class Solution {
Node removeAll(Node head, int val) {
Node prev = null;
Node cur = head;
while (cur != null) {
if (cur.val == val) {
if (cur == head) {
head = cur.next;
} else {
prev.next = cur.next;
}
} else {
prev = cur;
}
cur = cur.next;
}
return head;
}
Node merge(Node head1, Node head2) {
if (head1 == null) {
return head2;
}
if (head2 == null) {
return head1;
}
Node result = null;
Node last = null;
Node cur1 = head1;
Node cur2 = head2;
while (cur1 != null && cur2 != null) {
if (cur1.val <= cur2.val) {
if (result == null) {
result = cur1;
} else {
last.next = cur1;
}
last = cur1;
cur1 = cur1.next;
} else {
if (result == null) {
result = cur2;
} else {
last.next = cur2;
}
last = cur2;
cur2 = cur2.next;
}
}
if (cur1 != null) {
last.next = cur1;
} else {
last.next = cur2;
}
return result;
}
public static Node createList() {
Node n1 = new Node(6);
Node n3 = new Node(2);
Node n4 = new Node(6);
Node n6 = new Node(4);
Node n8 = new Node(6);
n1.next = n3;
n3.next = n4;
n4.next = n6;
n6.next = n8;
return n1;
}
public static Node createList1() {
Node n1 = new Node(1);
Node n2 = new Node(2);
n1.next = n2;
return n1;
}
public static Node createList2() {
Node n1 = new Node(1);
Node n2 = new Node(3);
Node n3 = new Node(5);
Node n4 = new Node(7);
n1.next = n2;
n2.next = n3;
n3.next = n4;
return n1;
}
public static void main(String[] args) {
Node head = createList();
Node result = new Solution().removeAll(head, 6);
for (Node cur = result; cur != null; cur = cur.next) {
System.out.println(cur.val);
}
System.out.println("=====================");
Node head1 = createList1();
Node head2 = createList2();
Node merged = new Solution().merge(head1, head2);//類中的函數(shù)返回值是Node類型,用merge接收
for (Node cur = merged; cur != null; cur = cur.next) {//merge相當(dāng)于head,代表整個(gè)鏈表
System.out.println(cur.val);
}
}
}
分享名稱:關(guān)于鏈表:removeAll()和mergeTwoList()
標(biāo)題來源:http://www.chinadenli.net/article46/iieihg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供企業(yè)建站、網(wǎng)站制作、品牌網(wǎng)站制作、標(biāo)簽優(yōu)化、營銷型網(wǎng)站建設(shè)、網(wǎng)站營銷
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)