這是我第一次嘗試創建一個基本列表(我需要這個在學校),我得到一個奇怪的錯誤。我收到一個'找不到標識符'的錯誤
這是腳本:
#include "stdafx.h"
#include<iostream>
#include<conio.h>
using namespace std;
using namespace System;
using namespace System::Threading;
struct nod
{
int info;
nod *leg;
};
int n, info;
nod *v;
void main()
{
....
addToList(v, info); //I get the error here
showList(v); //and here
}
void addToList(nod*& v, int info)
{
nod *c = new nod;
c->info=info;
c->leg=v;
v=c;
}
void showList(nod* v)
{
nod *c = v;
while(c)
{
cout<<c->info<<" ";
c=c->leg;
}
}
確切的錯誤是: 錯誤C3861:「addToList」:找不到
我不知道爲什麼我得到這個......對不起,如果是標識符一個愚蠢的問題,但我對此很新。感謝您的理解。
愚蠢的愚蠢問題...謝謝你的回答 – Sp3ct3R