Home :: Books :: Computers & Internet  

Arts & Photography
Audio CDs
Audiocassettes
Biographies & Memoirs
Business & Investing
Children's Books
Christianity
Comics & Graphic Novels
Computers & Internet

Cooking, Food & Wine
Entertainment
Gay & Lesbian
Health, Mind & Body
History
Home & Garden
Horror
Literature & Fiction
Mystery & Thrillers
Nonfiction
Outdoors & Nature
Parenting & Families
Professional & Technical
Reference
Religion & Spirituality
Romance
Science
Science Fiction & Fantasy
Sports
Teens
Travel
Women's Fiction
How to Design Programs: An Introduction to Programming and Computing

How to Design Programs: An Introduction to Programming and Computing

List Price: $67.00
Your Price: $54.10
Product Info Reviews

<< 1 >>

Rating: 5 stars
Summary: words to chinese audience
Review: >We are truly pleased about your interest in our book and hope that
> >it will help you to become a good programmer. The book represents a
> >radically different approach to programming, an approach that emphasizes
> >systematic design rather than tinkering. In other words, the distance
> >between this approach and the conventional way is as large as the
> >distance between Eastern and Western ways of thinking.
> >
> >The book is gaining acceptance in the English, German, Polish, and

> >Spanish speaking parts of the world. With this Chinese editition, we
> >finally hope to reach the largest language block in the world, indeed
> >the population with the fastest growing share of programmers.
> >
> >A special thanks to the translators, Huang Linpeng and Zhu Chongkai,
> >and to Hsing-Huei Huang for her help proofreading the translation.

Rating: 5 stars
Summary: words to chinese audience
Review: >We are truly pleased about your interest in our book and hope that
> >it will help you to become a good programmer. The book represents a
> >radically different approach to programming, an approach that emphasizes
> >systematic design rather than tinkering. In other words, the distance
> >between this approach and the conventional way is as large as the
> >distance between Eastern and Western ways of thinking.
> >
> >The book is gaining acceptance in the English, German, Polish, and

> >Spanish speaking parts of the world. With this Chinese editition, we
> >finally hope to reach the largest language block in the world, indeed
> >the population with the fastest growing share of programmers.
> >
> >A special thanks to the translators, Huang Linpeng and Zhu Chongkai,
> >and to Hsing-Huei Huang for her help proofreading the translation.

Rating: 5 stars
Summary: Everyone should learn to design programs
Review: As a programming do-it-yourselfer I've had many conflicting responses to this text -- it's didactic style, its attention to detail, its sometimes patronizing tone, its rigor and broad scope and at the same time its immersion in minutia and quiddities I have never encountered in 'computer books' I had ever perused. Perhaps it's my liberal arts background, or love 'em/hate 'em sensitivity to all those broad stiff-spined textbooks I had carried in back-packs since childhood, combined with a disdain for the authoritative stilted style these educators exude -- despite their patent love of their subject. I felt at once both patronized and condescended to.
From the very start of their journey into a detailed six step-by-step process that show the reader how to analyze problem statements, how to formulate goals, make up examples, outline a solution, and test a solution the authors proclaim their pedagogical ends: "We [...] believe that the study of program design deserves the same central role in general education as mathematics and English. Or, put more succinctly, everyone should learn how to design programs..." This is not a textbook, this is a revolutionary pamphlet calling for educational reform. I had read nothing like this in the tens of 'Dummies' and 'In 24 Hours' books I had exposed myself to. One part priggish, two parts pedagogic. I often found myself asking for whom was it written? First-year college student?, ambitious would-be high-school programmer wanna-be? Math mavens? Surely not a middle-aged bookish clerk who tastes run more to Turgenev and Dostoevsky than Turing and Dijkstra. But then I demanded more than mere anonymous web-lurking from my lowly pc. I remember myself many years ago trying to learn BASIC on a massive time-share computer and telling myself surely there was had to be more magic to computing than this. Well, after reading more texts and having had to unlearn the 'Dummies' and the 'In 24 hours' style of disinformation I had finally found the marrow of a discipline that is as demanding as any I had ever come across and as vexing as any artistic rigor I had ever been inspired by. Come be confused, come be amused, amazed and intellectually abused. Sorely, if I find I have little talent for this excruciatingly logical endevour, I have also found a full-blown appreciation of such daunting computational cheekiness. Much to learn here, and this is only the "core subject of a liberal arts education." What had I been wasting my time on all those years as a professional student?

Rating: 5 stars
Summary: the best resource for a college-level introduction
Review: Eric Raymond writes in "How to be a hacker" that learning Lisp will make you a better programmer for the rest of your days. And this book shows why. With Lisp (actually Scheme, but never mind that), your programs match your problem statement. Programming is no longer a mystical experience where "it suddenly works". With this book (and Scheme) you understand *why* it works. In this day and age, it is exactly the book that freshmen should see .. especially those who think they already know how to program. Thanks for writing this book. It will make my teaching easier.

Rating: 5 stars
Summary: the best resource for a college-level introduction
Review: Eric Raymond writes in "How to be a hacker" that learning Lisp will make you a better programmer for the rest of your days. And this book shows why. With Lisp (actually Scheme, but never mind that), your programs match your problem statement. Programming is no longer a mystical experience where "it suddenly works". With this book (and Scheme) you understand *why* it works. In this day and age, it is exactly the book that freshmen should see .. especially those who think they already know how to program. Thanks for writing this book. It will make my teaching easier.

Rating: 5 stars
Summary: The joy of learn programming
Review: Great book! I liked the way the author approaches how to begin designing programs. I am half-way through the book and I am finding it very entertaining. Yeap! I recommend this book.

Rating: 5 stars
Summary: Should be read by Everyone who wants to program.
Review: Have you ever looked at other people's codes and said to yourself something like "No... this isn't the way it should be written!". Or, worst yet, have you ever been asked by someone who wants you to read his/her codes and tell him/her what does it do?

Both things happened quite often, though.

The problems are mainly because they don't know how to "design" their programs properly. Being able to progam doesn't mean being to design/organize a good code at all. And being good at finding/inventing algorithms for problem solving doesn't mean that either.

One another thing, I (maybe just only me, I don't know) think that C shouldn't be taught as the first language (at least, not anymore). This is mainly because, in C, you can hardly express yourself. Also, C codes look cryptic to those new to programming. And you must know a lot, and practice a lot, (that takes a lot of time, friend) to be able to express what you want.
And also, several times, I saw many people just playing around with the * and & (well, the pointer-dereferencing, and address-taking symbol in C/C++), adding one more, deleting one off, to see which will make their programs work. (Sometime, it just works by miracle...)

This book, using Scheme (a modern dialect of Lisp) as the language of choice. I, personally, agree of choosing it. Scheme was designed in the way such that programmers can focus on what they want to express, rather than imprementation details. From my own experience, I became a better programmer after learning it. (I was already a C++ programmer by that time. I just have to use Lisp on my study/research).

One thing that I like is that, it focused on how to "design" programs, not just how to program, while college classes are mostly focused on how to write programs. No matter how students write their codes, if it could run, then it is fine.

Then, I think, a lot of people do have ability to program, a lot are good at it. However, the number of people who knows how to design programs are much lesser. And this would result in something like those silly examples at the beginning of this review. Therefore, this book had emphasized on quite an important thing.

And the last thing to say about this one is: MIT Press' textbooks are very high-quality, and this one is not an exception. It is very easy to read and to understand. And, even the html version is available at the book's official homepage, it is nice to have the printed version.

How to "design" programs is very important for every CS major people, and is important to everyone else in general (to program your "everyday life schedule", etc). Whether you want to become a professional programmer (write codes for living, etc) or not.

Rating: 5 stars
Summary: A Chinese Version will come soon.
Review: It is a great book.
The Chinese Version will come at the begining of next year.
>We are truly pleased about your interest in our book and hope that
> >it will help you to become a good programmer. The book represents a
> >radically different approach to programming, an approach that emphasizes
> >systematic design rather than tinkering. In other words, the distance
> >between this approach and the conventional way is as large as the
> >distance between Eastern and Western ways of thinking.
> >
> >...

Rating: 5 stars
Summary: This is "the book" on programming
Review: This book is going to be a classic. Unlike other introductory books on programming, it focuses on ideas not examples. It teaches students to organize their thoughts. It emphasizes thinking through problems. It pushes students to formulate concise comments, illustrate them with concrete examples, and test their programs systematically and automatically. I have not seen anything like this before. If you want to know the "why" and not just play with examples, buy this book! Note: It uses Scheme, which isn't widely used in industry (yet?) but don't let this deter you. The language is free, and it is very simple.

Rating: 5 stars
Summary: Wonderful book - not necessarily about programming.
Review: This book teaches the general tasks of planning, organising ones thoughts, designing, etc., using programming as its excuse. Directed at high school students, this is arguably the most solid foundation to being independent in ones productive work that one can give. It does require something from the teacher, though - it is easy to let the classes degrade into something close to what most people have come to expect from a programming course. With some enthousiasm, a course based in this book can be beautifully integrated with parallel classes in English composition, crafts, or (certain) team sports. (And about what other programming book can one say that!)

Does require some high school math.


<< 1 >>

© 2004, ReviewFocus or its affiliates