清风小天鹅 2021-06-10 11:52 采纳率: 100%
浏览 64
已采纳

为啥用vs2012报错,用DevC++却不报错

数据结构做链式堆栈遇到了这个问题,以下是我的代码。看了好久都没有发现错误。以下是本人的代码:

// ConsoleApplication4.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <iostream>

using namespace std;

typedef int ElemType;
typedef struct Node
{
	ElemType data;
	struct Node *next;
}*Listack;

void InitListack(Listack &top)
{
	top=NULL;
}

void Push(Listack &top,ElemType e)
{
	Node *s;
	s=new Node();
	s->data=e;
	s->next=top;
	top=s;
}

void Pop(Listack &top)
{
	ElemType e;
	Node *p=top;。
	if(top==NULL)
	{
		cout<<"栈空"<<endl;
	}else
	{
		e=top->data;
		top=top->next;
		delete p;
	}
}

void ShowLiStack(Listack &top)
{
	Listack p;
	p=NULL;
	p=top;
	while (p!=NULL)
	{
		cout<<p->data<<"";
		p=p->next;
	}
}


int _tmain(int argc, _TCHAR* argv[])
{
	Listack Ls;
	cout<<"请输入你要插入的位数(大于等于1)"<<endl;
	int n;
	cin>>n;
	if (n<=0)
	{
		cout<<"非法值,重新输入"<<endl;
	}
	for (int i = 0; i < n; i++)
	{
		cout<<"请输入你想输入的第"<<i+1<<"个值"<<endl;
		int e;
		cin>>e;
		Push(Ls,e);
	}
	ShowLiStack(Ls);
	cout<<"打印完成"<<endl;
	getchar();
	getchar();


	return 0;
}


  • 写回答

2条回答 默认 最新

  • CSDN专家-link 2021-06-10 11:55
    关注

    Listack Ls;

    InitListack(Ls);

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 换yum源但仍然用不了httpd
  • ¥50 C# 使用DEVMOD设置打印机首选项
  • ¥15 麒麟V10 arm安装gdal
  • ¥15 想用@vueuse 把项目动态改成深色主题,localStorge里面的vueuse-color-scheme一开始就给我改成了dark,不知道什么原因(相关搜索:背景颜色)
  • ¥20 OPENVPN连接问题
  • ¥15 flask实现搜索框访问数据库
  • ¥15 mrk3399刷完安卓11后投屏调试只能显示一个设备
  • ¥100 如何用js写一个游戏云存档
  • ¥15 ansys fluent计算闪退
  • ¥15 有关wireshark抓包的问题