乾貨滿滿!!!面試必備OJ題:連結串列篇(一)
1、反轉一個單連結串列
示例:
輸入: 1->2->3->4->5->NULL
輸出: 5->4->3->2->1->NULL
class Solution {
public ListNode reverseList(ListNode head) {
ListNode newHead = null;
ListNode cur = head;
ListNode prev = null;
while(cur != null) {
ListNode curNext = cur.next;
if(curNext == null) {
newHead = cur;
}
cur.next = prev;
prev = cur;
cur = curNext;
}
return newHead;
}
}
2、連結串列的中間節點
給定一個頭結點為 head 的非空單連結串列,返回連結串列的中間結點。
如果有兩個中間結點,則返回第二個中間結點。
示例1:
輸入:[1,2,3,4,5]
輸出:3
示例2:
輸入:[1,2,3,4,5,6]
輸出:4 (由於該列表有兩個中間結點,值分別為 3 和 4,我們返回第二個結點。)
class Solution {
public ListNode middleNode(ListNode head) {
ListNode fast = head;
ListNode slow = head;
while(fast != null && fast.next != null) {
fast = fast.next.next;
slow = slow.next;
}
return slow;
}
}
3、迴文連結串列
示例 1:
輸入: 1 2
輸出: false
示例 2:
輸入: 1 2 2 1
輸出: true
class Solution {
public boolean isPalindrome(ListNode head) {
if(head == null) {
return true;
}
if(head.next == null) {
return true;
}
ListNode fast = head;
ListNode slow = head;
while(fast != null && fast.next != null) {
fast = fast.next.next;
slow = slow.next;
}
//slow就是中間位置,開始進行第二步
//2、進行反轉
ListNode cur = slow.next;
while(cur != null) {
ListNode curNext = cur.next;
cur.next = slow;
slow = cur;
cur = curNext;
}
//3、開始判斷
while(head != slow) {
if(head.val != slow.val) {
return false;
}
//偶數情況下
if(head.next == slow) {
return true;
}
head = head.next;
slow = slow.next;
}
return true;
}
}
4、判斷連結串列是否有環
給定一個連結串列,判斷連結串列中是否有環。
如果連結串列中存在環,則返回 true 。 否則,返回 false。
public class Solution {
public boolean hasCycle(ListNode head) {
ListNode fast = head;
ListNode slow = head;
while(fast != null && fast.next != null) {
fast = fast.next.next;
slow = slow.next;
if(fast == slow) {
break;
}
}
if(fast == null || fast.next == null) {
return false;
}
return true;
}
}
5、環形連結串列
給定一個連結串列,返回連結串列開始入環的第一個節點。 如果連結串列無環,則返回 null。
public class Solution {
public ListNode detectCycle(ListNode head) {
ListNode fast = head;
ListNode slow = head;
while(fast != null && fast.next != null) {
fast = fast.next.next;
slow = slow.next;
if(fast == slow) {
break;
}
}
if(fast == null || fast.next == null) {
return null;
}
slow = head;
while(slow != fast) {
fast = fast.next;
slow = slow.next;
}
return slow;
}
}
6、刪除重複節點
在一個排序的連結串列中,存在重複的結點,請刪除該連結串列中重複的結點,重複的結點不保留,返回連結串列頭指標。
public ListNode deleteDuplicates(ListNode head) {
ListNode cur = head;
ListNode newHead = new ListNode(-1);
ListNode tmp = newHead;
while(cur != null) {
if(cur.next != null && cur.val == cur.next.val) {
while(cur.next != null && cur.val == cur.next.val) {
cur = cur.next;
}
cur = cur.next;
}else {
tmp.next = cur;
tmp = tmp.next;
cur = cur.next;
}
}
tmp.next = null;
return newHead.next;
}
7、分隔連結串列
給定一個連結串列和一個特定值 x,對連結串列進行分隔,使得所有小於 x 的節點都在大於或等於 x 的節點之前。
示例:
輸入: head = 1->4->3->2->5->2, x = 3
輸出: 1->2->2->4->3->5
//暴力解法
class Solution {
public ListNode partition(ListNode head, int x) {
ListNode bs = null;
ListNode be = null;
ListNode as = null;
ListNode ae = null;
ListNode cur = head;
while(cur != null) {
if(cur.val < x) {
if(bs == null) {
bs = cur;
be = cur;
}else {
be.next = cur;
be = be.next;
}
}else {
if(as == null) {
as = cur;
ae = cur;
}else {
ae.next = cur;
ae = ae.next;
}
}
cur = cur.next;
}
if(bs == null) {
return as;
}
//bs!=null;
be.next = as;
if(as != null) {
ae.next = null;
}
return bs;
}
}
相關文章
- 一份資料工程師必備的學習資源,乾貨滿滿(附連結)工程師
- 【乾貨滿滿】1.5w字初中級前端面試複習總結前端面試
- 面試必備的「反轉連結串列」面試
- 乾貨滿滿,騰訊雲+社群技術沙龍 Kafka Meetup 深圳站圓滿結束Kafka
- 面試中必知必會的那些題——第一題 單連結串列倒置面試
- 乾貨滿滿的 Go Modules 和 goproxy.cnGo
- Jeff Dean執筆谷歌團隊2017年終總結,乾貨滿滿谷歌
- 連結串列面試題(二)---連結串列逆序(連結串列反轉)面試題
- 乾貨滿滿!10分鐘看懂Docker和K8SDockerK8S
- GopherChina 2021 定了,乾貨滿滿的來了Go
- Golang進階,揉碎資料庫中介軟體,乾貨滿滿!Golang資料庫
- 連結串列專題——面試中常見的連結串列問題面試
- 連結串列面試題(九)---判斷一個連結串列是否帶環面試題
- 【乾貨滿滿】貝塞爾曲線(Bézier curve)——什麼神仙操作
- ES6的概念以及執行環境~滿滿的乾貨
- 乾貨滿滿!深入解析增強分析的概念及其優勢
- 【圖解連結串列類面試題】移除連結串列元素圖解面試題
- 【圖解連結串列類面試題】環形連結串列圖解面試題
- 又跳槽!3年Java經驗收割成都大廠的面試心得(乾貨滿滿&文末有福利)Java面試
- Java面試題-基礎篇三(乾貨)Java面試題
- 推薦系統演算法合集,滿滿都是乾貨(建議收藏)演算法
- 【LeetCode-連結串列】面試題-反轉連結串列LeetCode面試題
- 連結串列面試題(七)---合併兩個有序連結串列面試題
- 連結串列面試題(一)---刪除一個無頭單連結串列的非尾結點面試題
- 【FAQ】乾貨滿滿,接入HMS Core應用內購買服務過程中一些常見問題總結(2)來啦
- 一個node連結串列翻轉的面試題面試題
- 手把手教你實現 Tree 元件搜尋過濾功能,乾貨滿滿!元件
- 乾貨滿滿 | 微服務化的資料庫設計與讀寫分離微服務資料庫
- 乾貨滿滿 | 美團資料庫運維自動化系統構建之路資料庫運維
- 乾貨滿滿2017中國軟體生態大會亮點搶先看
- 連結串列面試題(四)---查詢連結串列的中間節點面試題
- 乾貨好文帶你理解C語言中的連結串列C語言
- 演算法面試(一) 連結串列演算法面試
- java面試題總結(開發者必備)Java面試題
- 搞懂單連結串列常見面試題面試題
- 連結串列面試題(八)---約瑟夫環面試題
- 去騰訊面試了,我自信滿滿!面試
- 滿滿乾貨!手把手教你實現基於eTS的分散式計算器分散式