|Eingestellt in Kategorie:
Ähnlichen Artikel verkaufen?

Accelerated C++: Practical Programming by Example by Mike Hendrickson: Used

AlibrisBooks
(460878)
Angemeldet als gewerblicher Verkäufer
US $7,80
Ca.CHF 6,20
Artikelzustand:
Gut
Ganz entspannt. Rückgaben akzeptiert.
Versand:
Kostenlos Standard Shipping.
Standort: Sparks, Nevada, USA
Lieferung:
Lieferung zwischen Do, 31. Jul und Di, 5. Aug nach 91768 bei heutigem Zahlungseingang
Wir wenden ein spezielles Verfahren zur Einschätzung des Liefertermins an – in diese Schätzung fließen Faktoren wie die Entfernung des Käufers zum Artikelstandort, der gewählte Versandservice, die bisher versandten Artikel des Verkäufers und weitere ein. Insbesondere während saisonaler Spitzenzeiten können die Lieferzeiten abweichen.
Rücknahme:
30 Tage Rückgabe. Käufer zahlt Rückversand. Wenn Sie ein eBay-Versandetikett verwenden, werden die Kosten dafür von Ihrer Rückerstattung abgezogen.
Zahlungen:
     Diners Club

Sicher einkaufen

eBay-Käuferschutz
Geld zurück, wenn etwas mit diesem Artikel nicht stimmt. Mehr erfahreneBay-Käuferschutz - wird in neuem Fenster oder Tab geöffnet
Der Verkäufer ist für dieses Angebot verantwortlich.
eBay-Artikelnr.:403941020339
Zuletzt aktualisiert am 26. Jul. 2025 12:11:45 MESZAlle Änderungen ansehenAlle Änderungen ansehen

Artikelmerkmale

Artikelzustand
Gut: Buch, das gelesen wurde, sich aber in einem guten Zustand befindet. Der Einband weist nur sehr ...
Book Title
Accelerated C++: Practical Programming by Example
Publication Date
2000-09-18
Pages
352
ISBN
9780201703535

Über dieses Produkt

Product Identifiers

Publisher
Addison Wesley Professional
ISBN-10
020170353X
ISBN-13
9780201703535
eBay Product ID (ePID)
13038262077

Product Key Features

Number of Pages
352 Pages
Language
English
Publication Name
Accelerated C++ : Practical Programming by Example
Publication Year
2000
Subject
Programming Languages / C++
Type
Textbook
Author
Andrew Koenig, Barbara Moo, Mike Hendrickson
Subject Area
Computers
Series
C++ In-Depth Ser.
Format
Trade Paperback

Dimensions

Item Height
1 in
Item Weight
21.8 Oz
Item Length
9.2 in
Item Width
7.4 in

Additional Product Features

Intended Audience
Scholarly & Professional
LCCN
00-040172
Dewey Edition
21
Illustrated
Yes
Dewey Decimal
005.13/3
Table Of Content
Preface. 0. Getting Started. Comments. #include. The Main Function. Curly Braces. Using the Standard Library for Output. The Return Statement. A Slightly Deeper Look. Details. 1. Working with Strings. Input. Framing a Name. Details. 2. Looping and Counting. The Problem. Overall Structure. Writing an Unknown Number of Rows. Writing a Row. The Complete Framing Program. Counting. Details. 3. Working with Batches of Data. Computing Student Grades. Using Medians Instead of Averages. Details. 4.Organizing Programs and Data. Organizing computations. Organizing Data. Putting it All Together. Partitioning the Grading Program. The Revised Grading Program. Details. 5. Using Sequential Containers and Analyzing Strings. Separating Students into Categories. Iterators. Using Iterators Instead of Indices. Rethinking Our Data Structure for Better Performance. The List Type. Taking Strings Apart. Testing Our Split Function. Putting Strings Together. Details. 6. Using Library Algorithms. Analyzing Strings. Comparing Grading Schemes. Classifying Students, Revisited. Algorithms, Containers, and Iterators. Details. 7. Using Associative Containers. Containers that Support Efficient Look-Up. Counting Words. Generating a Cross-Reference Table. Generating Sentences. A Note on Performance. Details. 8. Writing Generic Functions. What is a Generic Function? Data-Structure Independence. Input and Output Iterators. Using Iterators for Flexibility. Details. 9. Defining New Types. Student_info revisited. Class Types. Protection. The Student_info class. Constructors. Using the Student_info class. Details. 10. Managing Memory and Low-Level Data Structures. Pointers and Arrays. String Literals Revisited. Initializing Arrays of Character Pointers. Arguments to Main. Reading and Writing Files. Three Kinds of Memory Management. Details. 11. Defining Abstract Data Types. The Vec Class. Implementing the Vec Class. Copy Control. Dynamic Vecs. Flexible Memory Management. Details. 12. Making Class Objects Act Like Values. A Simple String Class. Automatic Conversions. Str Operations. Some Conversions are Hazardous. Conversion Operators. Conversions and Memory Management. Details. 13. Using Inheritance and Dynamic Binding. Inheritance. Polymorphism and Virtual Functions. Using Inheritance to Solve Our Problem. A Simple Handle Class. Using the Handle Class. Subtleties. Details. 14. Managing Memory (Almost) Automatically. Handles that Copy their Objects. Reference-Counted Handles. Handles that Let you Decide When to Share Data. An Improvement on Controllable Handles. Details. 15. Revisiting Character Pictures. Design. Implementation. Details. 16. Where Do We Go From Here? Use the Abstractions You Have. Learn More. Appendix A. Language Details. Declarations. Types. Expressions. Statements. Appendix B. Library Summary. Input-Output. Containers and Iterators. Algorithms. Index. 020170353XT04062001
Synopsis
Want to learn how to program in C++ immediately? Want to start writing better, more powerful C++ programs today? Accelerated C++'s uniquely modern approach will help you learn faster and more fluently than you ever believed possible. Based on the authors' intensive summer C++ courses at Stanford University, Accelerated C++ covers virtually every concept that most professional C++ programmers will ever use -- but it turns the "traditional" C++ curriculum upside down, starting with the high-level C++ data structures and algorithms that let you write robust programs immediately . Once you're getting results, Accelerated C++ takes you "under the hood," introducing complex language features such as memory management in context , and explaining exactly how and when to use them. From start to finish, the book concentrates on solving problems, rather than learning language and library features for their own sake. The result: You'll be writing real-world programs in no time -- and outstanding code faster than you ever imagined., Accelerated C++ introduces a radical new approach to teaching C++. It starts with the most useful concepts rather than the most primitive ones, so the student can begin writing programs immediately. It describes real problems and solutions, not just language features. And it includes the standard library from the start. The authors proved the effectiveness of this approach in their courses at Stanford and Princeton, where their students learned to write substantial programs their first day in the classroom., This is a first-rate introductory book that takes a practical approach to solving problems using C++. It covers a much wider scope of C++ programming than other introductory books Ive seen, and in a surprisingly compact format. - Dag Bruck, founding member of the ANSI/ISO C++ committee The authors present a clear, cogent introduction to C++ programming in a way that gets the student writing nontrivial programs immediately. - Stephen Clamage, Sun Microsystems, Inc., and chair of the ANSI C++ committee Anyone reading just this one book and working through the examples and exercises will have the same skills as many professional programmers. - Jeffrey D. Oldham, Stanford University Why is Accelerated C++ so effective? Because it: *Starts with the most useful concepts rather than the most primitive ones: You can begin writing programs immediately. *Describes real problems and solutions, not just language features: You see not only what each feature is, but also how to use it. * Covers the language and standard library together: You can use the library right from the start. The authors proved this approach in their professional-education course at Stanford University, where student
LC Classification Number
QA76.73.C153K67 2000

Artikelbeschreibung des Verkäufers

Info zu diesem Verkäufer

AlibrisBooks

98,6% positive Bewertungen1.9 Mio. Artikel verkauft

Mitglied seit Mai 2008
Antwortet meist innerhalb 24 Stunden
Angemeldet als gewerblicher Verkäufer
Alibris is the premier online marketplace for independent sellers of new & used books, as well as rare & collectible titles. We connect people who love books to thousands of independent sellers around ...
Mehr anzeigen
Shop besuchenKontakt

Detaillierte Verkäuferbewertungen

Durchschnitt in den letzten 12 Monaten
Genaue Beschreibung
4.9
Angemessene Versandkosten
5.0
Lieferzeit
5.0
Kommunikation
5.0

Verkäuferbewertungen (512'841)

Alle Bewertungen
Positiv
Neutral
Negativ