有关于C数据结构的书吗? [英] Are there books about C data structures?

查看:60
本文介绍了有关于C数据结构的书吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

对大家致敬。

今年秋天,我将把数据结构作为C语言的一部分启动

课程。问题是我在C中找不到任何关于

结构的令人满意的教程。有很多关于C +

+等数据结构的书籍,有谁可以请你推荐我这样一个C-specific书?并且

另一个问题:数据结构(如堆栈,结构等)
C ++中使用的
与C中的相同,是否可以使用C ++

书籍用于了解C中的结构?

解决方案

8月22日下午4:39,Mik0b0<新... @ gmail.comwrote:


给大家好的。

今年秋天,我将启动数据结构作为C语言

课程。问题是我在C中找不到任何关于

结构的令人满意的教程。有很多关于C +

+等数据结构的书籍,有谁可以请你推荐我这样一个C-specific书?



C中的数据结构和算法分析(第二版)

作者:Mark Allen Weiss

ISBN:0-201-49840-5




另一个问题:数据结构(如堆栈,结构等)< c ++中使用的
与C
中的相同



否。在C ++中我们有模板。 C没有这样的东西。


并且可以使用C ++

书来了解C中的结构吗?



您是否会阅读飞机手册以了解您的车?

C ++中数据结构的方法不会像方法< C中的



8月22日晚上7:39,Mik0b0< new ... @ gmail.comwrote:


Hallo to everyone。

今年秋天我将把数据结构作为C语言的一部分启动

课程。问题是我在C中找不到任何关于

结构的令人满意的教程。有很多关于C +

+等数据结构的书籍,有谁可以请你推荐我这样一个C-specific书?



我建议使用C中的算法罗伯特塞奇威克。第1-4部分

分别涵盖基础,数据结构,排序和搜索

。第5部分是一个单独的卷,侧重于图形,

两个卷可单独提供或作为一个包。文字是

相当全面,写得很好,对话应该是一个本科学生很容易理解的对话框。这段代码完全可以写成C90并且简洁明了,作者很好地利用了你可以使用的常用C语言和实践来充分利用b / b


现实世界。


Robert Gamble


Mik0b0< ne * ***@gmail.com写的:


>大家好。
今年秋天我将把数据结构作为C语言的一部分开始<当然。问题是我在C中找不到任何关于
结构的令人满意的教程。有很多关于C +
+等数据结构的书籍,有谁可以推荐我这样一本C-specific书?而另一个问题是:C ++中使用的数据结构(如堆栈,结构等)是否与C中的相同,是否可以使用C ++
书来了解C中的结构?



我正在阅读:

http:// www .course.com / catalog / produc ...- 0-534-39080-8


数据结构:带C的伪代码方法,第二版


Richard Gilberg,Behrouz Forouzan

ISBN 13:978-0-534-39080-8(C)2005

ISBN 10:0- 534-39080-3

发布日期:2004年10月11日

672页

精装


还没有意见....


__________________________________________________ ____________________________

Chris McDonald医生: ch *** @ csse.uwa.edu.au

计算机科学&软件工程W: http://www.csse.uwa.edu.au / ~chris

西澳大利亚大学,M002电话:+618 6488 2533

Crawley,西澳大利亚州,6009 F:+618 6488 1089


Hallo to everyone.
This fall I am going to start data structures as a part of C language
course. The problem is I could not find any satisfying tutorial about
structures in C. There are plenty of books about data structures in C+
+ etc., could anyone please recommend me such a C -specific book ? And
another question: are data structures (like stack, structure etc.)
used in C++ identical to those in C and is it possible to use C++
books to learn about the structures in C?

解决方案

On Aug 22, 4:39 pm, Mik0b0 <new...@gmail.comwrote:

Hallo to everyone.
This fall I am going to start data structures as a part of C language
course. The problem is I could not find any satisfying tutorial about
structures in C. There are plenty of books about data structures in C+
+ etc., could anyone please recommend me such a C -specific book ?

"Data Structures and Algorithm Analysis in C (Second Edition)"
by Mark Allen Weiss
ISBN: 0-201-49840-5

And
another question: are data structures (like stack, structure etc.)
used in C++ identical to those in C

No. In C++ we have templates. C has nothing like that.

and is it possible to use C++
books to learn about the structures in C?

Will you read an airplane manual to understand your car?
The approach for a data structure in C++ will not be like the approach
in C.


On Aug 22, 7:39 pm, Mik0b0 <new...@gmail.comwrote:

Hallo to everyone.
This fall I am going to start data structures as a part of C language
course. The problem is I could not find any satisfying tutorial about
structures in C. There are plenty of books about data structures in C+
+ etc., could anyone please recommend me such a C -specific book ?

I would recommend "Algorithms in C" by Robert Sedgewick. Part 1-4
cover Fundamentals, Data Structures, Sort, and Searching
respectively. Part 5 is a separate volume and focuses on Graphs, the
two volumes are available separately or as a bundle. The text is
fairly comprehensive and very well written and the dialog should be
easy to follow for an undergraduate student. The code is all well-
written C90 and is clear and concise, the author does a good job of
taking advantage of common C idioms and practices that you can use in
the real world.

Robert Gamble


Mik0b0 <ne****@gmail.comwrites:

>Hallo to everyone.
This fall I am going to start data structures as a part of C language
course. The problem is I could not find any satisfying tutorial about
structures in C. There are plenty of books about data structures in C+
+ etc., could anyone please recommend me such a C -specific book ? And
another question: are data structures (like stack, structure etc.)
used in C++ identical to those in C and is it possible to use C++
books to learn about the structures in C?

I''m currently reading through:

http://www.course.com/catalog/produc...-0-534-39080-8

Data Structures: A Pseudocode Approach with C, Second Edition

Richard Gilberg, Behrouz Forouzan
ISBN 13: 978-0-534-39080-8 (C) 2005
ISBN 10: 0-534-39080-3
Publish date: October 11, 2004
672 pages
Hardcover

No opinions just yet....

__________________________________________________ ____________________________
Dr Chris McDonald E: ch***@csse.uwa.edu.au
Computer Science & Software Engineering W: http://www.csse.uwa.edu.au/~chris
The University of Western Australia, M002 T: +618 6488 2533
Crawley, Western Australia, 6009 F: +618 6488 1089


这篇关于有关于C数据结构的书吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆