栈和队列的简易区别图解之我见

首先介绍一下栈和队列的基本书写代码。

栈的书写情况:

#pragma warning(disable:4996)

#include <stdio.h>
#include <stdlib.h>

typedef struct Node * List;

struct Node
{
	int number;
	List next;
};

List Create(int n);

int main()
{
	List list;
	int n;
	scanf("%d",&n);
	list = Create(n);
	while (list)
	{
		printf("%d",list->number);
		list = list->next;
	}
}

List Create(int n)
{
	List L, t,cycle;
	L = (List)malloc(sizeof(struct Node));
	L->next = NULL;
	t = L;
	for (int i=0;i<n;i++)
	{
		List temp;
		temp = (List)malloc(sizeof(struct Node));
		temp->next = NULL;
		int number;
		scanf("%d",&number);
		temp->number = number;
		temp->next = t->next;
		t->next = temp;
	}
	cycle = L;
	L = L->next;
	free(cycle);
	return L;
}

队列的书写情况:

 

#pragma warning(disable:4996)

#include <stdio.h>
#include <stdlib.h>

typedef struct Node * List;

struct Node
{
	int number;
	List next;
};

List Create(int n);

int main()
{
	List list;
	int n;
	scanf("%d",&n);
	list = Create(n);
	while (list)
	{
		printf("%d",list->number);
		list = list->next;
	}
}

List Create(int n)
{
	List L, t,cycle;
	L = (List)malloc(sizeof(struct Node));
	L->next = NULL;
	t = L;
	for (int i=0;i<n;i++)
	{
		List temp;
		temp = (List)malloc(sizeof(struct Node));
		temp->next = NULL;
		int number;
		scanf("%d",&number);
		temp->number = number;
		temp->next = t->next;
		t->next = temp;
	}
	cycle = L;
	L = L->next;
	free(cycle);
	return L;
}

 

通过以上的代码不免看出,队列和栈的主要区别在于:

//栈:
temp->next=t->next;
t->next=temp;

//队列:
t->next=temp;
t=temp;

可能有不少人在看到这几行代码的时候,觉得栈与队列的操作模式十分相近,无法准确区别开代码中的先进先出,先进后出的区别。

我个人就自己的理解,简易地画了一个示意图,希望能帮到大家。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值