cpp文件和h文件包含的问题
整个程序是照着高一凡《数据结构算法解析》中的“6.1 二叉树”来敲的。出现的问题是:1."bo6-1.cpp"编译出错, 具体错误信息如下所示:
F:\控制台工程\1\bo6-1.cpp(9) : error C2065: 'SqBiTree' : undeclared identifier
F:\控制台工程\1\bo6-1.cpp(9) : error C2146: syntax error : missing ')' before identifier 'T'
F:\控制台工程\1\bo6-1.cpp(9) : error C2182: 'InitBiTree' : illegal use of type 'void'
F:\控制台工程\1\bo6-1.cpp(9) : error C2059: syntax error : ')'
F:\控制台工程\1\bo6-1.cpp(10) : error C2143: syntax error : missing ';' before '{'
F:\控制台工程\1\bo6-1.cpp(10) : error C2447: missing function header (old-style formal list?)
F:\控制台工程\1\bo6-1.cpp(22) : error C2146: syntax error : missing ')' before identifier 'T'
F:\控制台工程\1\bo6-1.cpp(22) : error C2182: 'CreateBiTree' : illegal use of type 'void'
F:\控制台工程\1\bo6-1.cpp(22) : error C2059: syntax error : ')'
F:\控制台工程\1\bo6-1.cpp(23) : error C2143: syntax error : missing ';' before '{'
F:\控制台工程\1\bo6-1.cpp(23) : error C2447: missing function header (old-style formal list?)
2."func6-1.cpp"编译通过,链接出错,出错信息如下所示:
F:\控制台工程\1\bo6-1.cpp(9) : error C2065: 'SqBiTree' : undeclared identifier
F:\控制台工程\1\bo6-1.cpp(9) : error C2146: syntax error : missing ')' before identifier 'T'
F:\控制台工程\1\bo6-1.cpp(9) : error C2182: 'InitBiTree' : illegal use of type 'void'
F:\控制台工程\1\bo6-1.cpp(9) : error C2059: syntax error : ')'
F:\控制台工程\1\bo6-1.cpp(10) : error C2143: syntax error : missing ';' before '{'
F:\控制台工程\1\bo6-1.cpp(10) : error C2447: missing function header (old-style formal list?)
F:\控制台工程\1\bo6-1.cpp(22) : error C2146: syntax error : missing ')' before identifier 'T'
F:\控制台工程\1\bo6-1.cpp(22) : error C2182: 'CreateBiTree' : illegal use of type 'void'
F:\控制台工程\1\bo6-1.cpp(22) : error C2059: syntax error : ')'
F:\控制台工程\1\bo6-1.cpp(23) : error C2143: syntax error : missing ';' before '{'
F:\控制台工程\1\bo6-1.cpp(23) : error C2447: missing function header (old-style formal list?)
执行 cl.exe 时出错.
3."main6-1.cpp"编译正确,链接出错,出错内容同"func6-1.cpp"。
上网查资料,尝试过几种
1.zip
(2.66 KB)
方法,都不行。具体的.cpp文件和.h文件参见附件,本人也是第一次做多文件的链接,先谢谢各位了!