Customer Reviews


11 Reviews
5 star:
 (4)
4 star:
 (2)
3 star:    (0)
2 star:
 (2)
1 star:
 (3)
 
 
 
 
 
Average Customer Review
Share your thoughts with other customers
Create your own review
 
 
Only search this product's reviews

The most helpful favorable review
The most helpful critical review


5.0 out of 5 stars Many example codes
I was looking for a book to help me do beginner's data structure problems. This book has tons of example code that is simple, easy to read and understand. (That's what I was looking for!) A multitudinous variety of code to choose from - like a kid in the candy aisle. On the other hand, the book had some typos. Their was adequate explanations for the code but not rich. The...
Published on October 15, 2005 by Pen Name

versus
10 of 10 people found the following review helpful:
1.0 out of 5 stars A book that should never have been published (should rate as minus 5 stars)
I am profoundly disturbed by the poor quality of this book. Here is an example to show why I feel that way. The example was chosen almost at random but even I was shocked when I came to type it in. I would not accept such code from a first year student.
On page 139 the author provides the following code (I have taken great care to copy the code exactly as it is in...
Published on October 25, 2005 by Francis W. Glassborow


‹ Previous | 1 2 | Next ›
Most Helpful First | Newest First

10 of 10 people found the following review helpful:
1.0 out of 5 stars A book that should never have been published (should rate as minus 5 stars), October 25, 2005
This review is from: C & Data Structures (Charles River Media Computer Engineering) (Paperback)
I am profoundly disturbed by the poor quality of this book. Here is an example to show why I feel that way. The example was chosen almost at random but even I was shocked when I came to type it in. I would not accept such code from a first year student.
On page 139 the author provides the following code (I have taken great care to copy the code exactly as it is in the book):
Struct address \\ A
{
plot char [30], struc char[30];
city char[30]
}
struct student \\ B
{
name char[30];
marks float;
struct address adr;
}
main ( )
{
struct student student1; \\D
struct student class[20]; \\E
class[1].marks = 70; // F
I have stopped at this point as it continues with a hard coded initialisation of class[1] followed by five printf() statements to output the contents of class[1] to stdout. Nowhere do the authors expalin why they want an array, why they ignore the first element of the array and why the bothered with defining student1. In addition the use of 'class' as a name introduces a gratuitous incompatibility with C++.
There then follows a section explaining the code. The first item is:
1. Statement A declares the address of a structure containing the members plot, street and city.
That code is so bad that I can think of no explanation for how a book on C could be distributed with such code in it.
I am disturbed by the number of positive reviews this book has had from readers because no one who actually tried the code provided by the authors could have got it working and the explanations are often bizarre.
Were it possible I would give this book minus 5 stars because learning from it would seriously impede a reader's development as a programmer.
There are numerous better books on both Data Structures and C. Indeed almost any book on either subject would be better.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


5 of 5 people found the following review helpful:
2.0 out of 5 stars Numerous Errors, May 25, 2004
This review is from: C & Data Structures (Charles River Media Computer Engineering) (Paperback)
I would have to disagree with the other reviews of this text. I found this book full of gramatical errors, typos, and errors in the source code. The concepts presented in the text are exelent and the authors do a fine job of presenting these ideas. It is unfortunate that the editing was not better and that some of the source code seemingly was not compiled and tested prior to being included in the book.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


2 of 2 people found the following review helpful:
2.0 out of 5 stars Full of errors and novice style of programming, January 16, 2005
By 
Mk "jgd" (Sunnyvale, CA) - See all my reviews
This review is from: C & Data Structures (Charles River Media Computer Engineering) (Paperback)
Stay away unless you are desperate to lay hands on any data structures book. It has so many errors. Poor editing can confuse you. The code is written in often very beginner's style while no thought is given to Whys and Why Nots of an approach. Definitely not a good reference. Use and throw perhaps.

The program outputs are needlessly printed without any sensible explaination for most of them.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


1 of 1 people found the following review helpful:
1.0 out of 5 stars Avoid this book due to it's errors., November 3, 2007
By 
This review is from: C & Data Structures (Charles River Media Computer Engineering) (Paperback)
As stated by many others, this book contains many errors; especially in the program code that is listed in the book.

There are numerous places where function calls written in the programs given make reference to variables that don't exist and won't run without editing. There are some sections where functions are added to the program code that are not discussed nor relevant to the topic at hand as if sections were cut and pasted without checking for accuracy.

The whole book is full of these types of things. So while the theory behind the logic seems to be sound, the examples and applications are so wrought full of holes that you'll probably spend more time trying to debug and decipher the code than focus on what you're trying to learn.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


1.0 out of 5 stars Too many errors, Avoid., June 6, 2010
This review is from: C & Data Structures (Charles River Media Computer Engineering) (Paperback)
Avoid this book like the plague.

The authors did a decent job in presenting the ideas and concepts, BUT here's why I do not recommend this book:
- Too Many Errors in the source code. I spent more time debugging the code than actually trying to learn about Data Structures in C.
- Poorly Edited. It has many grammatical errors and typos.

They should have never released this book.

Find another book on Data Structures don't waste your time with this one like I did.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


5.0 out of 5 stars Many example codes, October 15, 2005
By 
This review is from: C & Data Structures (Charles River Media Computer Engineering) (Paperback)
I was looking for a book to help me do beginner's data structure problems. This book has tons of example code that is simple, easy to read and understand. (That's what I was looking for!) A multitudinous variety of code to choose from - like a kid in the candy aisle. On the other hand, the book had some typos. Their was adequate explanations for the code but not rich. The book's dialog was also a bit choppy and wasn't the smoothest talking to the reader. I would give this book 3 stars but since I got a good grade in my beginning data structures class because of this particular book, I biasly bumped it to five stars. T
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


4.0 out of 5 stars Why C?, September 13, 2005
This review is from: C & Data Structures (Charles River Media Computer Engineering) (Paperback)
It is not clear why the authors chose C into which to teach data structures. Of course C can do this. But other languages like C++, Java and C# could have been chosen. And those give object oriented functionality that could have been put to good use in the implementation of these structures. The book never really elaborates about the choice of C.

Anyway, the material is clearly written. It gives good treatments of arrays, linked lists, stacks and queues. While for trees and graphs, the discussion is rather basic. In general, the algorithmic depth here does not approach the standard texts by Sedgewick, Aho or Knuth.

The last part of the book is a set of chapters devoted to problems and their solution codes. This may have merit to you, if you have been searching for good exercise sets. A distinctive aspect of the text.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


4.0 out of 5 stars Good examples on C Data structures, May 22, 2004
By 
Mohammad Zahid "mzahid" (Vancouver, British Columbia Canada) - See all my reviews
(REAL NAME)   
This review is from: C & Data Structures (Charles River Media Computer Engineering) (Paperback)
I agree that there are many examples and CD is also very useful but, author lack explanation on the examples. I give this book 3 stars because it has complete examples which are hard to find in books on C data structures subject.
I suggest using this book with "Introduction to Algorithm" by Thomas Cormen for better understanding on C Data Structures.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


0 of 2 people found the following review helpful:
5.0 out of 5 stars C & Data Structures, October 20, 2009
By 
A. Maxwell (NYC, New York) - See all my reviews
(REAL NAME)   
Amazon Verified Purchase(What's this?)
This review is from: C & Data Structures (Charles River Media Computer Engineering) (Paperback)
The book arrived in near new condition with the CD in tack. I saved an incredible 50.00 on a textbook that arrived promptly and in magnificent condition!!!
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


0 of 2 people found the following review helpful:
5.0 out of 5 stars Best book on Data Structures, May 18, 2005
By 
Agha Khan (Bellevue, WA United States) - See all my reviews
(REAL NAME)   
Amazon Verified Purchase(What's this?)
This review is from: C & Data Structures (Charles River Media Computer Engineering) (Paperback)
Mostly I check reviews before buying a book. I bought this book even I saw by other reviewers that it is full of errors. I didn't care about that, but looking how the author tackles any problem or use the algorithms. I was NOT disappointed. I have seen many expensive books on this subject, but this is the only book which covers which other books left out. Let me say the last word this book is worth more than what I paid for.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


‹ Previous | 1 2 | Next ›
Most Helpful First | Newest First

This product

C & Data Structures (Charles River Media Computer Engineering)
C & Data Structures (Charles River Media Computer Engineering) by P. S. Deshpande (Paperback - January 15, 2004)
$59.95
Temporarily out of stock. Order now and we'll deliver when available.
Add to cart Add to wishlist