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

C经典之12-用链表存1-10的数字---ShinePans

时间:2014-05-22 10:51:06      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:c

bubuko.com,布布扣


#include <stdio.h>
#include <conio.h>
#include <stdlib.h>  //system(); 这个指令需要用到此头文件
#include <ctype.h> //toupper要用到
#include <malloc.h> //在内存管理时用到的头文件
void main()
{
	

	int i;

	struct ListEntry {
		int number;
		struct ListEntry *next;
	} start, *node;

	start.next = NULL;  // Empty list

	node = &start;      // Point to the start of the list

	for (i = 1; i <= 10; i++)
	{
		node->next = (struct ListEntry *) malloc(sizeof(struct ListEntry));
		node = node->next;
		node->number = i;
		node->next = NULL;
	}

	// Display the list

	node = start.next;

	while (node)
	{
		printf("%d ", node->number);
		node = node->next;
	}


	system("pause");
	
	
}


C经典之12-用链表存1-10的数字---ShinePans,布布扣,bubuko.com

C经典之12-用链表存1-10的数字---ShinePans

标签:c

原文地址:http://blog.csdn.net/shinepan/article/details/26103937

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