关于链表的经典OJ题1

简介: 关于链表的经典OJ题

1.反转单链表:请你反转链表,并返回反转后的链表。


例图:


q1.png


思路一:

q2.png



疑问1:为什么不是n3==NULL停止循环了???


q3.png


疑问2:要是链表为空了


答:要是链表为空了,直接返回NULL


注:重复的过程一般是用循环解决


循环三要素:初识值,迭代过程,结束条件


思路一代码实现:


/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     struct ListNode *next;
 * };
 */
struct ListNode* reverseList(struct ListNode* head){
    if(head==NULL)
    return NULL;
    //初始化
    struct ListNode* n1 = NULL,*n2 = head,*n3 = n2->next;
    //结束条件
    while(n2)
    {
        //迭代过程(重复过程)
        n2->next = n1;
        n1 = n2;
        n2 = n3;
        if(n3)
        n3 = n3->next;
    }
    return n1;
}


思路二:头插法

q4.png



思路二代码实现:


/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     struct ListNode *next;
 * };
 */
struct ListNode* reverseList(struct ListNode* head){
    if(head==NULL)
    {
        return NULL;
    }
   struct ListNode *cur = head,*next = cur->next;
   struct ListNode* newhead = NULL;
   while(cur)
   {
       cur->next = newhead;
       newhead = cur;
       cur = next;
       if(next)
       next = next->next;
   }
   return newhead;
}


2.链表的中间结点:


给定一个头结点为head的非空单链表,返回链表的中间结点。


如果有两个中间结点,则返回第二个中间结点。


例1:输入【1,2,3,4,5】  输出:3


例2:输入【3,4,5,6】   输出:5


思路:

w1.png



大家从上面的思路中也可以看出它也是迭代的过程,初始条件是slow,fast都指向第一个结点,迭代过程,slow走一步,fast走两步,结束条件fast->next,fast只要有一个为空就结束。

代码:


/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     struct ListNode *next;
 * };
 */
struct ListNode* middleNode(struct ListNode* head){
    struct ListNode *slow = head,*fast = head;
    while(fast && fast->next)
    {
        slow = slow->next;
        fast = fast->next->next;
    }
    return slow;
}


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


w2.png

w3.png



/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     struct ListNode *next;
 * };
 */
struct ListNode* mergeTwoLists(struct ListNode* list1, struct ListNode* list2){
    if(list1==NULL)
    {
        return list2; 
    }
    if(list2==NULL)
    {
        return list1;
    }
    struct ListNode *head = NULL,*tail = NULL;
    while(list1 != NULL && list2 != NULL)
    {
        if(list1->val < list2->val)
        {
            if(tail == NULL)
            {
                head = tail = list1;
            }
            else
            {
                tail->next = list1;
                tail = tail->next;
            }
            list1=list1->next;
        }
        else
        {
            if(tail == NULL)
            {
                head = tail = list2;
            }
            else
            {
                tail->next = list2;
                tail=tail->next;
            }
            list2=list2->next;
        }
    }
    if(list1)
    {
        tail->next = list1;
    }
    if(list2)
    {
        tail->next = list2;
    }
    return head;
}


表锅,表集,表die,表美 们今天就到这里了哦!!!


相关文章
|
3月前
|
存储 Java
数据结构第三篇【链表的相关知识点一及在线OJ习题】
数据结构第三篇【链表的相关知识点一及在线OJ习题】
37 7
|
6月前
【数据结构OJ题】环形链表
力扣题目——环形链表
44 3
【数据结构OJ题】环形链表
|
6月前
【数据结构OJ题】复制带随机指针的链表
力扣题目——复制带随机指针的链表
59 1
【数据结构OJ题】复制带随机指针的链表
|
6月前
【数据结构OJ题】环形链表II
力扣题目——环形链表II
39 1
【数据结构OJ题】环形链表II
|
6月前
【数据结构OJ题】相交链表
力扣题目——相交链表
39 1
【数据结构OJ题】相交链表
|
6月前
【数据结构OJ题】合并两个有序链表
力扣题目——合并两个有序链表
45 8
【数据结构OJ题】合并两个有序链表
|
6月前
【数据结构OJ题】移除链表元素
力扣题目——移除链表元素
49 2
【数据结构OJ题】移除链表元素
|
6月前
【数据结构OJ题】链表中倒数第k个结点
牛客题目——链表中倒数第k个结点
42 1
【数据结构OJ题】链表中倒数第k个结点
|
6月前
【数据结构OJ题】链表分割
牛客题目——链表分割
35 0
【数据结构OJ题】链表分割
|
6月前
【数据结构OJ题】链表的回文结构
牛客题目——链表的回文结构
52 0
【数据结构OJ题】链表的回文结构

热门文章

最新文章