Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2341813
  • 博文数量: 816
  • 博客积分: 10000
  • 博客等级: 上将
  • 技术积分: 5010
  • 用 户 组: 普通用户
  • 注册时间: 2008-12-17 17:57
文章分类

全部博文(816)

文章存档

2011年(1)

2008年(815)

分类:

2008-12-17 18:04:44

// fasdfs.cpp : Defines the entry point for the console application.
//



#include "stdafx.h"
#include
#define NUMBER 17
struct node{
int date;
node *link;
};


int main(int argc, char* argv[])
{
node *frist=new node;
node *current=new node;
frist->date=1;
frist->link =NULL;
current=frist;
int i=2;
while(i<=NUMBER)
{
node *p=new node;
p->date=i;
p->link=NULL;
current->link =p;
current=p;
if(i current->link =NULL;
else
{
current->link =frist;
current=frist;
}
i++;
}

current=frist->link ;
node *p;
p=current->link;
current->link =p->link ;
delete p;
int n=2;
while(n {

current=current->link->link;
p=current->link ;

current->link=p->link;
n++;
delete p;

}
cout<date< return 0;
}





--------------------next---------------------

阅读(1216) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~