Ulteriori informazioni
Zusatztext Erotische Geschichte in Tagebuchform! im Stil von Benoite Groults Roman'Salz auf unserer Haut'. Eine Frau versucht! ihrer zerrissenen Gefühlezu einem unersättlichen Liebhaber Herr zu werden. Als sie ihre Rolle als'erste' Geliebte verliert! läßt sie sich schließlich auf eine mnage troisein ... Informationen zum Autor Elliot Koffman is currently Professor of Computer and Information Sciences at Temple University. He received his Ph.D. at Case Institute of Technology. He has authored and co-authored numerous textbooks and other publications. Paul Wolfgang is currently Professor of Computer and Information Sciences at Temple University. He received his B.S. in electrical engineering at University of Pennsylvania. Klappentext "It is a practical book with emphasis on real problems the programmers encounter daily."--Dr.Tim H. Lin, California State Polytechnic University, Pomona"My overall impressions of this book are excellent. This book emphasizes the three areas I want: advanced C++, data structures and the STL and is much stronger in these areas than other competing books."--Al Verbanec, Pennsylvania State UniversityThink, Then CodeWhen it comes to writing code, preparation is crucial to success. Before you can begin writing successful code, you need to first work through your options and analyze the expected performance of your design. That's why Elliot Koffman and Paul Wolfgang's Objects, Abstraction, Data Structures, and Design: Using C++ encourages you to Think, Then Code, to help you make good decisions in those critical first steps in the software design process.The text helps you thoroughly understand basic data structures and algorithms, as well as essential design skills and principles. Approximately 20 case studies show you how to apply those skills and principles to real-world problems. Along the way, you'll gain an understanding of why different data structures are needed, the applications they are suited for, and the advantages and disadvantages of their possible implementations.Key Features* Object-oriented approach.* Data structures are presented in the context of software design principles.* 20 case studies reinforce good programming practice.* Problem-solving methodology used throughout... "Think, then code!"* Emphasis on the C++ Standard Library.* Effective pedagogy. Zusammenfassung This book combines a strong emphasis on problem solving and software design with the study of data structures. After providing the specification and implementation of an abstract data type, the authors cover case studies that use the data structure to solve a significant problem. Inhaltsverzeichnis Preface iii Chapter P A C++ Primer 1 P.1 The C++ Environment 2 P.2 Preprocessor Directives and Macros 7 P.3 C++ Control Statements 12 P.4 Primitive Data Types and Class Types 16 P.5 Objects, Pointers, and References 23 P.6 Functions 29 P.7 Arrays and C Strings 33 P.8 The string Class 38 P.9 Input/Output Using Streams 44 Chapter Review, Exercises, and Programming Projects 59 Chapter 1 Introduction to Software Design 63 1.1 The Software Life Cycle 64 1.2 Using Abstraction to Manage Complexity 73 1.3 Defining C++ Classes 75 1.4 Abstract Data Types, Interfaces, and Pre- and Postconditions 98 1.5 Requirements Analysis, Use Cases, and Sequence Diagrams 102 1.6 Design of an Array-Based Phone Directory 108 1.7 Implementing and Testing the Array-Based Phone Directory 114 1.8 Completing the Phone Directory Application 121 Chapter Review, Exercises, and Programming Projects 125 Chapter 2 Program Correctness and Efficiency 129 2.1 Program Defects and "Bugs" 130 2.2 Exceptions 138 2.3 Testing Programs 148 2.4 Debugging a Prog...