目录
83.删除排序链表中的重复元素
给定一个排序链表,删除所有重复的元素,使得每个元素只出现一次。
示例 1:
输入: 1->1->2
输出: 1->2
示例 2:输入: 1->1->2->3->3
输出: 1->2->3来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode deleteDuplicates(ListNode head) {
if(head==null){
return null;
}
ListNode p =head;
while(true){
if(p.next==null){
break;
}else{
if(p.val==p.next.val){
p.next=p.next.next;
}else{
p=p.next;
}
}
}
return head;
}
}
21.合并两个有序链表
将两个升序链表合并为一个新的 升序 链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
示例:
输入:1->2->4, 1->3->4
输出:1->1->2->3->4->4来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/merge-two-sorted-lists
/**
* 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 mergeTwoLists(ListNode l1, ListNode l2) {
if(l1==null&&l2!=null){
return l2;
}else if(l2==null&&l1!=null){
return l1;
}else if(l1==null&&l2==null){
return null;
}
ListNode p = null;
if(l1.val<=l2.val){
p = l1;
l1 = l1.next;
}else{
p = l2;
l2 = l2.next;
}
ListNode res = p;
while(true){
if(l1==null&&l2!=null){
p.next=l2;
break;
}else if(l2==null&&l1!=null){
p.next=l1;
break;
}else if(l1==null&&l2==null){
break;
}
if(l1.val<=l2.val){
p.next=l1;
l1=l1.next;
p=p.next;
}else{
p.next=l2;
l2=l2.next;
p=p.next;
}
}
return res;
}
}
141.环形链表
给定一个链表,判断链表中是否有环。
为了表示给定链表中的环,我们使用整数 pos 来表示链表尾连接到链表中的位置(索引从 0 开始)。 如果 pos 是 -1,则在该链表中没有环。
示例 1:
输入:head = [3,2,0,-4], pos = 1
输出:true
解释:链表中有一个环,其尾部连接到第二个节点。
示例 2:输入:head = [1,2], pos = 0
输出:true
解释:链表中有一个环,其尾部连接到第一个节点。
示例 3:输入:head = [1], pos = -1
输出:false
解释:链表中没有环。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/linked-list-cycle
/**
* Definition for singly-linked list.
* class ListNode {
* int val;
* ListNode next;
* ListNode(int x) {
* val = x;
* next = null;
* }
* }
*/
public class Solution {
public boolean hasCycle(ListNode head) {
if(head == null){
return false;
}
int pos = 0;
ListNode p1 = head;
ListNode p2 = p1;
HashSet<ListNode> set = new HashSet();
while(true){
if(p2.next==null){
pos = -1;
return false;
}
set.add(p1);
p1 = p1.next;
if(set.contains(p2.next)){
break;
}
p2 = p2.next;
}
p1 = head;
while(true){
if(p2.next==p1){
break;
}
p1 = p1.next;
pos++;
}
return true;
}
}
203.移除链表元素
删除链表中等于给定值 val 的所有节点。
示例:
输入: 1->2->6->3->4->5->6, val = 6 输出: 1->2->3->4->5
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode removeElements(ListNode head, int val) {
while(true){
if(head == null){
return null;
}
if(head.val == val){
head = head.next;
}else{
break;
}
}
if(head.next == null){
return head;
}
ListNode p = head;
while(true){
if(p.next.val==val){
p.next = p.next.next;
}else{
p = p.next;
}
if(p == null|| p.next == null){
break;
}
}
return head;
}
}