回 帖 发 新 帖 刷新版面

主题:用栈实现数组的逆序输出

那位编程高手帮帮忙,编写一个用栈实现数组的逆序输出呀,要是数组.谢谢各位啦

回复列表 (共17个回复)

11 楼

新手呀,不要这么瞧不起人呀,真是的,刚学的,这么简单,你干嘛不写出来呀
[em18]

12 楼

typedef int SElemType;
请问这句是什么意思啊
谁能告诉我一下吗??

13 楼

变相的宏定义  这样定义后  SElemType 就相当于 int
即 int a=5; 与 SElemType a=5; 是等价的
C provides a facility called typedef for creating new data type names. For example, the declaration 
   typedef int Length;

makes the name Length a synonym for int. The type Length can be used in declarations, casts, etc., in exactly the same ways that the int type can be: 
   Length len, maxlen;
   Length *lengths[];

come from  the c programming language

14 楼

[quote]typedef int SElemType;
请问这句是什么意思啊
谁能告诉我一下吗??[/quote]
就是说,写了这语句以后,后面,SELEMTYPE就变成了INT~

15 楼

那如果用线性表的顺序结构实现呢,又怎么写算法

16 楼

那如果用线性表的顺序结构实现呢,又怎么写这个的算法

17 楼

栈的输出是容易,可用链表或顺序表就没那么容易了
我是个初学者,请教下用用链表或顺序表实现数组的逆序输出该怎么办,
我试了好多次,都不成功
顺便问下
Linking...
LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
Debug/lj.exe : fatal error LNK1120: 1 unresolved externals
执行 link.exe 时出错.
这段错误是什么意思?

我来回复

您尚未登录,请登录后再回复。点此登录或注册