[数据结构]---图示无头单向不循环链表及有头双向循环链表的一些简单操作

单链表进行以下简单操作.

1头插

 

cur->next=head;

head=cur;

2.头删

tmp=head;

head=head->next;

free(tmp);

3.后插

cur->next=pos->next;

pos->next=cur;

4.后删

tmp=pos->next;

pos->next=tmp->next;

free(tmp);

5.反转链表

 <1>

oldhead->next=tmp->next;

tmp->next=head;

head=tmp;

tmp=old->next;

<2>

next=next->next;

cur->next=prev;

pre=cur;

cur=next;

6.寻找入环节点

 

eg: 给定一个链表,返回链表开始入环的第一个节点。 如果链表无环,则返回 null

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     struct ListNode *next;
 * };
 */
struct ListNode* hasCycle(struct ListNode *head)
 {
    struct ListNode* fast=head;
    struct ListNode* slow=head;
    if(head==NULL)
        return head; 
    while(fast && fast->next)
    {
        slow=slow->next;
        fast=fast->next->next;
        if(slow==fast)
            return slow;
    }
    return NULL;
 }
struct ListNode *detectCycle(struct ListNode *head) {
    if(head==NULL)
        return head;
    //找到相遇点
    struct ListNode* head1,*slow1;
    slow1=hasCycle(head);
    head1=head;
    if(slow1)
    {
        while(slow1 != head1)
        {
            slow1=slow1->next;
            head1=head1->next;
        }
        return slow1;
    }
    return NULL;   
}

7.单链表还有最重要的遍历.

    之前我们一边在遍历时使用的是while循环,但是在单链表遍历时建议使用for循环,这样不用考虑循环结束的条件,下面这个可以作为公式记下.

for(cur=head ; cur ; cur=cur->next)

{

    cur ;  //cur可以完成一个遍历
}

有头双向循环链表简单操作

1.后插

 

pos->next=cur;

cur->prev=pos;

tmp->prev=cur;

cur->next=tmp;

 2.删除自己

pos->next->prev=pos->prev;

pos->prev->next=pos->next;

free(pos);

3.遍历

for(cur=head->next; cur!=head cur=cur->next)

{

      cur;//cur完成遍历
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值