Degree Program in Computer Network and System Administration
Enter subhead content here
Table of Contents Copyright DeitelŪ Series Page Preface 1. Introduction to Computers, the Internet and the Web 1.1. Introduction 1.2. What Is a Computer? 1.3. Computer Organization 1.4. Early Operating Systems 1.5. Personal, Distributed and Client/Server Computing 1.6. Machine Languages, Assembly Languages and High-Level Languages 1.7. Fortran, COBOL, Pascal and Ada 1.8. History of C 1.9. C Standard Library 1.10. C++ 1.11. Java 1.12. BASIC, Visual Basic, Visual C++, Visual C# and .NET 1.13. Key Software Trend: Object Technology 1.14. Typical C Program Development Environment 1.17. History of the World Wide Web 1.18. Notes About C and This Book 1.19. Web Resources Summary Terminology Self-Review Exercises Answers to Self-Review Exercises Exercises 2. Introduction to C Programming 2.1. Introduction 2.2. A Simple C Program: Printing a Line of Text 2.4. Memory Concepts 2.5. Arithmetic in C 2.6. Decision Making: Equality and Relational Operators Summary Terminology Self-Review Exercises Answers to Self-Review Exercises Exercises 3. Structured Program Development in C 3.1. Introduction 3.2. Algorithms 3.3. Pseudocode 3.4. Control Structures 3.5. The if Selection Statement 3.6. The if...else Selection Statement 3.9. Formulating Algorithms with Top-Down, Stepwise Refinement Case Study 2: Sentinel-Controlled Repetition 3.10. Formulating Algorithms with Top-Down, Stepwise Refinement Case Study 3: Nested Control Structures Summary Terminology Self-Review Exercises Answers to Self-Review Exercises 4. C Program Control 4.1. Introduction 4.2. Repetition Essentials 4.3. Counter-Controlled Repetition 4.5. for Statement: Notes and Observations 4.6. Examples Using the for Statement 4.8. do...while Repetition Statement 4.9. break and continue Statements 4.10. Logical Operators 4.11. Confusing Equality (==) and Assignment (=) Operators 4.12. Structured Programming Summary Summary Terminology Self-Review Exercises Answers to Self-Review Exercises Exercises 5. C Functions 5.1. Introduction 5.2. Program Modules in C 5.4. Functions 5.5. Function Definitions 5.7. Function Call Stack and Activation Records 5.8. Headers 5.9. Calling Functions: Call-by-Value and Call-by-Reference 5.10. Random Number Generation 5.11. Example: A Game of Chance 5.12. Storage Classes 5.13. Scope Rules Summary Terminology Self-Review Exercises Answers to Self-Review Exercises 6. C Arrays 6.1. Introduction 6.2. Arrays 6.3. Defining Arrays 6.4. Array Examples 6.5. Passing Arrays to Functions 6.6. Sorting Arrays 6.7. Case Study: Computing Mean, Median and Mode Using Arrays Terminology Self-Review Exercises Answers to Self-Review Exercises Exercises Special Section: Sudoku 7. C Pointers 7.1. Introduction 7.2. Pointer Variable Definitions and Initialization 7.3. Pointer Operators 7.4. Passing Arguments to Functions by Reference 7.6. Bubble Sort Using Call-by-Reference 7.7. sizeof Operator 7.8. Pointer Expressions and Pointer Arithmetic 7.10. Arrays of Pointers 7.11. Case Study: Card Shuffling and Dealing Simulation Summary Terminology Self-Review Exercises Answers to Self-Review Exercises Special Section: Building Your Own Computer 8. C Characters and Strings 8.1. Introduction 8.2. Fundamentals of Strings and Characters 8.5. Standard Input/Output Library Functions 8.6. String-Manipulation Functions of the String-Handling Library 8.7. Comparison Functions of the String-Handling Library 8.8. Search Functions of the String-Handling Library 8.9. Memory Functions of the String-Handling Library Summary Terminology Self-Review Exercises Answers to Self-Review Exercises Exercises Special Section: Advanced String-Manipulation Exercises A Challenging String-Manipulation Project 9. C Formatted Input/Output 9.1. Introduction 9.2. Streams 9.3. Formatting Output with printf 9.4. Printing Integers 9.6. Printing Strings and Characters 9.7. Other Conversion Specifiers 9.9. Using Flags in the printf Format Control String 9.10. Printing Literals and Escape Sequences 9.11. Reading Formatted Input with scanf Terminology Self-Review Exercises Answers to Self-Review Exercises Exercises 10. C Structures, Unions, Bit Manipulations and Enumerations 10.1. Introduction 10.2. Structure Definitions 10.8. Unions 10.10. Bit Fields Terminology Self-Review Exercises Answers to Self-Review Exercises Exercises 11. C File Processing 11.1. Introduction 11.2. Data Hierarchy 11.3. Files and Streams 11.4. Creating a Sequential-Access File 11.6. Random-Access Files 11.7. Creating a Random-Access File 11.8. Writing Data Randomly to a Random-Access File 11.9. Reading Data from a Random-Access File Terminology Self-Review Exercises Answers to Self-Review Exercises Exercises 12. C Data Structures 12.1. Introduction 12.2. Self-Referential Structures 12.3. Dynamic Memory Allocation 12.4. Linked Lists 12.5. Stacks 12.6. Queues 12.7. Trees Summary Terminology Self-Review Exercises Answers to Self-Review Exercises Exercises Special Section: Building Your Own Compiler 13. C Preprocessor 13.1. Introduction 13.2. #include Preprocessor Directive 13.3. #define Preprocessor Directive: Symbolic Constants 13.4. #define Preprocessor Directive: Macros 13.5. Conditional Compilation 13.6. #error and #pragma Preprocessor Directives 13.7. # and ## Operators 13.10. Assertions Summary Terminology Self-Review Exercises Exercises 14. Other C Topics 14.1. Introduction 14.2. Redirecting Input/Output on Linux/UNIX and Windows Systems 14.3. Variable-Length Argument Lists 14.5. Notes on Compiling Multiple-Source-File Programs 14.7. volatile Type Qualifier 14.8. Suffixes for Integer and Floating-Point Constants 14.9. More on Files 14.10. Signal Handling 14.12. Unconditional Branching with goto Terminology Self-Review Exercise Answers to Self-Review Exercise Exercises 15. Game Programming with the Allegro C Library 15.1. Introduction 15.2. Installing Allegro 15.3. A Simple Allegro Program 15.4. Simple Graphics: Importing Bitmaps and Blitting 15.5. Animation with Double Buffering 15.6. Importing and Playing Sounds 15.7. Keyboard Input 15.8. Fonts and Displaying Text 15.9. Implementing the Game of Pong 15.10. Timers in Allegro 15.11. The Grabber and Allegro Datafiles 15.12. Other Allegro Capabilities 15.13. Allegro Internet and Web Resources Summary Terminology Self-Review Exercises Answers to Self-Review Exercises 16. Sorting: A Deeper Look 16.1. Introduction 16.2. Big O Notation 16.3. Selection Sort 16.4. Insertion Sort 16.5. Merge Sort Summary Terminology Self-Review Exercises Answers to Self-Review Exercises Exercises 17. Introduction to C99 17.1. Introduction 17.2. Support for C99 17.3. New C99 Headers 17.4. // Comments 17.6. Declaring a Variable in a for Statement Header 17.9. Implicit int in Function Declarations 17.10. Complex Numbers 17.11. Variable-Length Arrays 17.12. Other C99 Features 17.13. Internet and Web Resources Summary Terminology Self-Review Exercises Answers to Self-Review Exercises Exercises 18. C++ as a Better C; Introducing Object Technology 18.1. Introduction 18.2. C++ 18.3. A Simple Program: Adding Two Integers 18.4. C++ Standard Library 18.5. Header Files 18.6. Inline Functions 18.7. References and Reference Parameters 18.8. Empty Parameter Lists 18.11. Function Overloading 18.13. Introduction to Object Technology and the UML 18.14. Wrap-Up Summary Terminology Self-Review Exercises Exercises 19. Introduction to Classes and Objects 19.1. Introduction 19.2. Classes, Objects, Member Functions and Data Members 19.3. Overview of the Chapter Examples 19.4. Defining a Class with a Member Function 19.5. Defining a Member Function with a Parameter 19.7. Initializing Objects with Constructors 19.8. Placing a Class in a Separate File for Reusability 19.9. Separating Interface from Implementation 19.10. Validating Data with set Functions Terminology Self-Review Exercises Answers to Self-Review Exercises Exercises 20. Classes: A Deeper Look, Part 1 20.1. Introduction 20.2. Time Class Case Study 20.3. Class Scope and Accessing Class Members 20.4. Separating Interface from Implementation 20.5. Access Functions and Utility Functions 20.7. Destructors 20.8. When Constructors and Destructors Are Called 20.12. Wrap-Up Summary Terminology Self-Review Exercises Answers to Self-Review Exercises Exercises 21. Classes: A Deeper Look, Part 2 21.1. Introduction 21.2. const (Constant) Objects and const Member Functions 21.4. friend Functions and friend Classes 21.5. Using the this Pointer 21.6. Dynamic Memory Management with Operators new and delete 21.8. Data Abstraction and Information Hiding 21.9. Container Classes and Iterators 21.10. Proxy Classes Terminology Self-Review Exercises 22. Operator Overloading 22.1. Introduction 22.2. Fundamentals of Operator Overloading 22.3. Restrictions on Operator Overloading 22.4. Operator Functions as Class Members vs. Global Functions 22.5. Overloading Stream Insertion and Stream Extraction Operators 22.6. Overloading Unary Operators 22.7. Overloading Binary Operators 22.8. Case Study: Array Class 22.10. Overloading ++ and -- 22.11. explicit Constructors Terminology Self-Review Exercises 23. Object-Oriented Programming: Inheritance 23.1. Introduction 23.2. Base Classes and Derived Classes 23.3. protected Members 23.4. Relationship between Base Classes and Derived Classes 23.5. Constructors and Destructors in Derived Classes 23.6. public, protected and private Inheritance 23.7. Software Engineering with Inheritance Summary Terminology Self-Review Exercises Answers to Self-Review Exercises Exercises 24. Object-Oriented Programming: Polymorphism 24.1. Introduction 24.2. Polymorphism Examples 24.3. Relationships Among Objects in an Inheritance Hierarchy 24.4. Type Fields and switch Statements 24.5. Abstract Classes and Pure virtual Functions 24.6. Case Study: Payroll System Using Polymorphism 24.7. (Optional) Polymorphism, Virtual Functions and Dynamic Binding "Under the Hood" 24.8. Case Study: Payroll System Using Polymorphism and Runtime Type Information with Downcasting, dynamic_cast, typeid and type_info 24.9. Virtual Destructors 24.10. Wrap-Up Summary Terminology Self-Review Exercises Answers to Self-Review Exercises Exercises 25. Templates 25.1. Introduction 25.2. Function Templates 25.5. Nontype Parameters and Default Types for Class Templates 25.9. Wrap-Up Summary Terminology Self-Review Exercises Answers to Self-Review Exercises Exercises 26. Stream Input/Output 26.1. Introduction 26.2. Streams 26.3. Stream Output 26.4. Stream Input 26.6. Introduction to Stream Manipulators 26.9. Tying an Output Stream to an Input Stream 26.10. Wrap-Up Summary Terminology Self-Review Exercises Answers to Self-Review Exercises Exercises 27. Exception Handling 27.1. Introduction 27.2. Exception-Handling Overview 27.3. Example: Handling an Attempt to Divide by Zero 27.4. When to Use Exception Handling 27.5. Rethrowing an Exception 27.7. Processing Unexpected Exceptions 27.8. Stack Unwinding 27.10. Exceptions and Inheritance 27.11. Processing new Failures 27.12. Class auto_ptr and Dynamic Memory Allocation Summary Terminology Self-Review Exercises A. Internet and Web Resources A.1. Free C/C++ Compilers and Development Tools A.2. C Resource Sites A.3. C99 A.4. C Projects, Freeware and Shareware A.5. C Source Code A.6. C Articles and Whitepapers A.7. C Tutorials and Webcasts A.8. GNOME and GLib A.9. SWIG A.10. Objective-C A.11. C Sample Chapters and eBooks A.12. C Wikis A.13. C FAQs A.14. C Newsgroups A.15. C Blogs A.16. C Downloads from Download.com A.17. C Game Programming A.18. Allegro Game Programming Resources A.19. Jobs for C Programmers A.20. Deitel C Training B. Operator Precedence Charts C. ASCII Character Set D. Number Systems D.1. Introduction D.2. Abbreviating Binary Numbers as Octal and Hexadecimal Numbers D.3. Converting Octal and Hexadecimal Numbers to Binary Numbers D.4. Converting from Binary, Octal or Hexadecimal to Decimal D.5. Converting from Decimal to Binary, Octal or Hexadecimal D.6. Negative Binary Numbers: Two's Complement Notation Summary Terminology Self-Review Exercises E. Game Programming: Solving Sudoku E.1. Introduction E.2. Deitel Sudoku Resource Center E.3. Solution Strategies E.4. Programming Sudoku Puzzle Solvers E.5. Generating New Sudoku Puzzles E.6. Conclusion Index
Enter supporting content here
woods own page wood jacko