主题:用栈实现数组的逆序输出
feng109
[专家分:0] 发布于 2006-04-19 21:52:00
那位编程高手帮帮忙,编写一个用栈实现数组的逆序输出呀,要是数组.谢谢各位啦
回复列表 (共17个回复)
11 楼
tmgirl [专家分:10] 发布于 2006-04-20 20:30:00
新手呀,不要这么瞧不起人呀,真是的,刚学的,这么简单,你干嘛不写出来呀
[em18]
12 楼
lbm717ls [专家分:170] 发布于 2006-04-20 20:34:00
typedef int SElemType;
请问这句是什么意思啊
谁能告诉我一下吗??
13 楼
中国台湾 [专家分:2140] 发布于 2006-04-21 13:17:00
变相的宏定义 这样定义后 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 楼
zhoul [专家分:260] 发布于 2006-04-22 09:37:00
[quote]typedef int SElemType;
请问这句是什么意思啊
谁能告诉我一下吗??[/quote]
就是说,写了这语句以后,后面,SELEMTYPE就变成了INT~
15 楼
318198 [专家分:0] 发布于 2006-07-15 09:15:00
那如果用线性表的顺序结构实现呢,又怎么写算法
16 楼
318198 [专家分:0] 发布于 2006-07-15 09:16:00
那如果用线性表的顺序结构实现呢,又怎么写这个的算法
17 楼
linkin412 [专家分:0] 发布于 2006-07-15 10:43:00
栈的输出是容易,可用链表或顺序表就没那么容易了
我是个初学者,请教下用用链表或顺序表实现数组的逆序输出该怎么办,
我试了好多次,都不成功
顺便问下
Linking...
LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
Debug/lj.exe : fatal error LNK1120: 1 unresolved externals
执行 link.exe 时出错.
这段错误是什么意思?
我来回复