链表LeetCode综合练习Java实现

1.给出两个 非空 的链表用来表示两个非负的整数。其中,它们各自的位数是按照 逆序 的方式存储的,并且它们的每个节点只能存储 一位 数字。

如果,我们将这两个数相加起来,则会返回一个新的链表来表示它们的和。

您可以假设除了数字 0 之外,这两个数都不会以 0 开头。

示例:

输入:(2 -> 4 -> 3) + (5 -> 6 -> 4)
输出:7 -> 0 -> 8
原因:342 + 465 = 807

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
        ListNode head=new ListNode(0);
        ListNode p=l1,q=l2,tail=head;
        int sum=0,cp=0;
        while(p!=null||q!=null){
            int x=(p!=null)?p.val:0;
            int y=(q!=null)?q.val:0;
            sum=x+y+cp;
            cp=sum/10;
            tail=tail.next=new ListNode(sum%10);
            if(p!=null)p=p.next;
            if(q!=null)q=q.next;
        }
        if(cp==1){
            tail=tail.next=new ListNode(1); 
        }
		return head.next;
    }
}

2.

给定一个链表,删除链表的倒数第 n 个节点,并且返回链表的头结点。

示例:

给定一个链表: 1->2->3->4->5, 和 n = 2.

当删除了倒数第二个节点后,链表变为 1->2->3->5.
说明:

给定的 n 保证是有效的。

class Solution {
    public ListNode removeNthFromEnd(ListNode head, int n) {
        ListNode p,q,t;
        p=head;
        int i=0;
        while(i

3.

将两个有序链表合并为一个新的有序链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。 

示例:

输入:1->2->4, 1->3->4
输出:1->1->2->3->4->4

class Solution {
    public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
        if(l1==null&&l2==null)return null;
        if(l1==null&&l2!=null)return l2;
        if(l1!=null&&l2==null)return l1;
        ListNode firstNode,t,p;
        firstNode=t=null;
        while(l1!=null&&l2!=null){
            if(l1.val

4.

合并 k 个排序链表,返回合并后的排序链表。请分析和描述算法的复杂度。

示例:

输入:
[
  1->4->5,
  1->3->4,
  2->6
]
输出: 1->1->2->3->4->4->5->6

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
import java.util.*;
class Solution {
    //自己解决本题的思路是仍是两个链表两两合并,代码能够运行出来,但是时间复杂度和空间复杂度较高
    /*public ListNode mergeKLists(ListNode[] lists) {
        if(lists.length==1)return lists[0];
        ListNode first=new ListNode(-1);
        first.next=null;
        for(int i=0;i list=new ArrayList();
        ListNode p,head;
        for(int i=0;i

5.

给定一个链表,两两交换其中相邻的节点,并返回交换后的链表。

你不能只是单纯的改变节点内部的值,而是需要实际的进行节点交换。

示例:

给定 1->2->3->4, 你应该返回 2->1->4->3.

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    /*public ListNode swapPairs(ListNode head) {
        if(head==null)return null;
        ListNode p,q=null,t=null;
        int count=0;
        for(p=head;p!=null;){
            count++;
            if(count%2==0){
                q.next=p.next;
                p.next=q;
                if(count==2){
                    head=p;
                    t=head.next;
                }
                else{
                    t=t.next=p;
                    t=t.next=q;
                }
                p=q.next;
            }else{
                q=p;
                p=p.next;
            }
        }
        return head;
    }*/
    public ListNode swapPairs(ListNode head) {
        ListNode p;
        int count=0;
        for(p=head;p!=null;p=p.next){
            count++;
        }
        int[] arr=new int[count];
        int k=0;
        for(p=head;p!=null;p=p.next){
            arr[k++]=p.val;
        }
        for(int i=0;i

6.

给你一个链表,每 k 个节点一组进行翻转,请你返回翻转后的链表。

k 是一个正整数,它的值小于或等于链表的长度。

如果节点总数不是 k 的整数倍,那么请将最后剩余的节点保持原有顺序。

示例 :

给定这个链表:1->2->3->4->5

当 k = 2 时,应当返回: 2->1->4->3->5

当 k = 3 时,应当返回: 3->2->1->4->5

说明 :你的算法只能使用常数的额外空间。
你不能只是单纯的改变节点内部的值,而是需要实际的进行节点交换。

import java.util.*;
/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode reverseKGroup(ListNode head, int k) {
        ListNode first=new ListNode(-1);
		first.next=head;
		ListNode pre=first;
		ListNode end=first;
		while(end.next!=null) {
			for(int i=0;i

7.

给定一个链表,旋转链表,将链表每个节点向右移动 k 个位置,其中 k 是非负数。

示例 1:

输入: 1->2->3->4->5->NULL, k = 2
输出: 4->5->1->2->3->NULL
解释:
向右旋转 1 步: 5->1->2->3->4->NULL
向右旋转 2 步: 4->5->1->2->3->NULL
示例 2:

输入: 0->1->2->NULL, k = 4
输出: 2->0->1->NULL
解释:
向右旋转 1 步: 2->0->1->NULL
向右旋转 2 步: 1->2->0->NULL
向右旋转 3 步: 0->1->2->NULL
向右旋转 4 步: 2->0->1->NULL

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode rotateRight(ListNode head, int k) {
        ListNode h1=null,p,q=null;
	    int count=0;
	        for(p=head;p!=null;count++,p=p.next);
        	if(count==0||count==1)return head;
        	if(k==0||k%count==0)return head;
	        if(k>count){
	            k=k%count;
	        }
	        p=head;
            for(int i=0;p!=null&&i

8.

给定一个排序链表,删除所有含有重复数字的节点,只保留原始链表中 没有重复出现 的数字。

示例 1:

输入: 1->2->3->3->4->4->5
输出: 1->2->5
示例 2:

输入: 1->1->1->2->3
输出: 2->3

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode deleteDuplicates(ListNode head) {
        //特别要注意加上表头结点之后,会简单很多
        ListNode first=new ListNode(-1);
        first.next=head;
        ListNode p=head;
        ListNode q=first;
        while(p!=null&&p.next!=null){
            if(p.val==p.next.val){
                int val=p.val;
                while(p!=null&&p.val==val){
                    p=p.next;
                }
                q.next=p;
            }else{
                q=p;
                p=p.next;
            }
        }
        return first.next;
    }
}

9.

给定一个排序链表,删除所有重复的元素,使得每个元素只出现一次。

示例 1:

输入: 1->1->2
输出: 1->2
示例 2:

输入: 1->1->2->3->3
输出: 1->2->3

/**
 * 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,q;
        for(q=head,p=head.next;p!=null;){
            if(q.val==p.val){
                q.next=p.next;
                p=q.next;
            }else{
                q=p;
                p=p.next;
            }
        }
        return head;
    }
}

 

你可能感兴趣的:(数据结构和算法)