91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

在鏈表中找出倒數第K個節點

發布時間:2020-06-16 14:54:43 來源:網絡 閱讀:290 作者:秋笙夏笛 欄目:編程語言

(1)遍歷兩遍,第一次計算出鏈表長度n,第二次找到(n-k)個節點,也就是倒數第K個節點。

(2)遍歷一遍,定義兩個指針,一個指針fast,一個指針slow,都指向頭結點,fast指針先向前走K,然后再同時遍歷,當fast遍歷到最后一個節點時,slow所指向的節點就是倒數第K個節點。

#include<stdio.h>
#include<stdlib.h>
#include<assert.h>
 
struct Listnode
{
    int _value;
    Listnode* _next;
};
void Init(Listnode*& head)
{
    Listnode* cur =head;
    if(cur==NULL)
    {
        cur=(Listnode*)malloc(sizeof(Listnode));
        cur->_next=NULL;
        cur->_value=0;
    }
    head=cur;
}
 
void push(Listnode*& head,int value)
{
    Listnode* cur =head;
 
        while(cur->_next)
        {
            cur=cur->_next;
        }
        Listnode* tmp=NULL;
        tmp=(Listnode*)malloc(sizeof(Listnode));
        tmp->_next=NULL;
        tmp->_value=value;
        cur->_next=tmp;
     
         
 
}
void pop(Listnode* head)
{
    Listnode* cur=head;
    Listnode* prev=NULL;
    while(cur->_next!=NULL)
    {
        prev=cur;
        cur=cur->_next;
    }
    prev->_next=NULL;
    free(cur);
    cur=NULL;
}
void print(Listnode* head)
{
    Listnode* cur=head;
    while(cur)
    {
        printf("%d\n",cur->_value);
        cur=cur->_next;
    }
}
Listnode* Find(Listnode* head,int k)
{
    assert(head);
	assert(k>0);
	Listnode* slow=head;
	Listnode* fast=head;
	while(k--)
	{
		fast=fast->_next;
	}
	while(fast)
	{
		slow=slow->_next;
		fast=fast->_next;
	}
	return slow;

}

void test()
{
    Listnode* head=NULL;
    Init(head);
    push(head,1);
    push(head,2);
    push(head,3);
    /*pop(head);*/
     print(head);
	Listnode* ret=Find(head,2);
	printf("倒數第K個數:%d\n",ret->_value);
   
 
}
int main()
{
    test();
    system("pause");
    return 0;
}

結果:

在鏈表中找出倒數第K個節點

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

巫山县| 鄂尔多斯市| 临海市| 金堂县| 屯留县| 三河市| 咸阳市| 桓台县| 东台市| 久治县| 栖霞市| 承德市| 邓州市| 黔东| 虞城县| 武川县| 昌宁县| 乌拉特前旗| 新源县| 云和县| 义马市| 竹山县| 沙湾县| 斗六市| 阿荣旗| 乌审旗| 元氏县| 赞皇县| 杂多县| 观塘区| 资兴市| 宁国市| 金门县| 西藏| 得荣县| 南岸区| 上饶市| 准格尔旗| 伊吾县| 石门县| 集安市|