码迷,mamicode.com
首页 > 其他好文 > 详细

找到链表的倒数第K位

时间:2014-05-23 23:06:05      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   c   code   java   

bubuko.com,布布扣
#include<iostream>
using namespace std;

class node{
public:
    node():value(0),next(NULL){}
    ~node(){}
    int value;
    node* next;
};///be careful this ;

node* createlist(int a[],int n)
{
 node* startnode = new node[n];
 node* ret = startnode;
 for(int i = 0;i<n;i++)
 {
     startnode[i].value = a[i];
     if(i<n-1) 
         startnode[i].next = startnode + i + 1;
 }
 while(startnode)
 {
     cout<<" "<<startnode->value;
     startnode = startnode->next;
 }
 cout<<endl;
 return ret;
}

int helper(node* nd,int k)
{
 node* cursor1 = nd;
 node* cursor2 = nd;
 while(--k)
     cursor2 = cursor2->next;
 
 while(cursor2->next)
 {
     cursor1 = cursor1->next;
     cursor2 = cursor2->next;
 }

 return cursor1->value;

}

int main()
{
    int a[] = {1,2,3,4,5,6,7,8,9};
    node * t = createlist(a,9);
    cout<<helper(t,3);
}
bubuko.com,布布扣

 

找到链表的倒数第K位,布布扣,bubuko.com

找到链表的倒数第K位

标签:style   class   blog   c   code   java   

原文地址:http://www.cnblogs.com/berkeleysong/p/3737090.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!