亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

在鏈表中找出倒數第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

宣恩县| 延庆县| 新余市| 原阳县| 嘉禾县| 隆尧县| 大方县| 界首市| 同仁县| 岐山县| 邵武市| 班戈县| 柏乡县| 阜南县| 锦屏县| 北辰区| 建湖县| 徐闻县| 会东县| 墨竹工卡县| 漳平市| 平潭县| 响水县| 双辽市| 东乌珠穆沁旗| 德保县| 博罗县| 长沙县| 高淳县| 伊金霍洛旗| 洮南市| 塔河县| 西乌珠穆沁旗| 寿阳县| 临沂市| 鄂托克前旗| 晴隆县| 巍山| 含山县| 远安县| 麻江县|