Giter VIP home page Giter VIP logo

erdemozgen / cpp-learning-archive Goto Github PK

View Code? Open in Web Editor NEW
69.0 7.0 42.0 14.41 MB

This repository contains different materials for learning and improving C++ skills.

License: MIT License

C++ 84.16% CMake 2.93% Makefile 0.06% Python 0.09% Assembly 0.02% C 2.00% HTML 0.01% Shell 0.15% Cuda 0.05% Fortran 10.43% JavaScript 0.06% CSS 0.04%
cpp cpp14 learning learning-by-doing deitel malik interview cpp11 cpp17 hacktoberfest

cpp-learning-archive's Introduction

C++ Learning Archive

This repository contains different materials for learning and improving Cpp skills.

List of materials

  1. C++ How to Program (10th Edition) by Paul Deitel and Harvey Deitel
  2. Data Structures Using C++ by D.S. Malik
  3. Advanced C++ Source Code Examples
  4. C++ STL Library Examples
  5. C++ Boost Library Examples / Boost C++ Application Development Cookbook by Antony Polukhin
  6. Discovering Modern C++ (2nd edition) by Peter Gottschling
  7. Desing Patterns in C++
  8. Goodrich, M: Data Structures and Algorithms in C++

You can follow with the same sequence...


C++ source codes from book we have used:

What does this repo include ?

  • Examples based on reference books.
  • Detailed explanations for source codes.
  • Challenge projects.

Doesn't seem enough? Then choose an item from our issues and start helping!!

Content:

Chapter List for Deitel
  • Chapter 1 - [Introduction to Computers and C++]
  • Chapter 2 - [Introduction to C++ Programming]
  • Chapter 3 - [Introduction to Classes, Objects and Strings]
  • Chapter 4 - [Control Statements: Part I]
  • Chapter 5 - [Control Statements: Part II]
  • Chapter 6 - [Functions and an Introduction to Recursion]
  • Chapter 7 - [Arrays and Vectors]
  • Chapter 8 - [Pointers]
  • Chapter 9 - [Classes: A Deeper Look, Part I]
  • Chapter 10 . [Classes: A Deeper Look, Part II]
  • Chapter 11 - [Operator Overloading: Class String]
  • Chapter 12 - [Object-Oriented Programming: Inheritance]
  • Chapter 13 - [Object-Oriented Programming: Polymorphism]
  • Chapter 14 - [Templates]
  • Chapter 15 - [Stream Input/Output]
  • Chapter 16 - [Exception Handling: A Deeper Look]
  • Chapter 17 - [File Processing]
  • Chapter 18 - [Class string and String Stream Processing]
  • Chapter 19 - [Searching and Sorting]
  • Chapter 20 - [Custom Templatized Data Structures]
  • Chapter 21 - [Bits, Characters, C String and structs]
  • Chapter 22 - Standard Template Library (STL)
  • Chapter 23 - Boost Libraries, Technical Report I and C++0x
  • Chapter 24 - Other Topics

Chapter List for Malik
  • Chapter 1 - [clockType,persontype,fruitJuiceMachine,stackType]
  • Chapter 2 - [Building manual linkedStackType class]
  • Chapter 3 - [Building manual unorderedLinkedListStackType]
  • Chapter 4 - [LinkedListType and LinkedListType from C++ library ]
  • Chapter 5 - [Build using abstract class linkedListType]
  • Chapter 6 - [Build using derived class orderedLinkedListType]
  • Chapter 7 - [Build using derived class UnorderedLikedListType]

Chapter List for Advanced C++ Source Code Examples
  • WritingABitmap
  • UsingtheHistogram
  • ObjectInitialization
  • CustomObjectsAsMapKeys
  • InitializationInC11
  • OverloadingtheDereferenceOperator
  • Vectors
  • StoringIterations
  • StandardExceptions
  • DecltypeAndTypeid
  • DelegatingConctructors
  • TwoDimensionalVectors
  • AMandelbrotClass
  • ReinterpretCast
  • ColourHistograms
  • InitializationInC98
  • VectorsAndMemory
  • StaticCast
  • HelloWorld
  • LambdaParametersAndReturnTypes
  • DynamicCasts
  • BitmapInfoHeaders
  • IterableClasses
  • TemplateFunctionsandTypeInference
  • SettingPixels
  • TheFractalAlgorithm
  • UsingtheRGBClass
  • StructPadding
  • ColorTransforms
  • ZoomingIn
  • UsingFunctionPointersAnExample
  • Lists
  • RvalueReferences
  • Complex Numbers Overview.pdf
  • AComplexNumberClass
  • Scaling
  • CapturingThisWithLambdas
  • ReadingTextFiles
  • NestedTemplateClasses
  • AnRGBClass
  • SharedPointers
  • RingBuffer
  • LValueReferences
  • TheZoomList
  • AutoPointers
  • ValidatingtheHistogram
  • OverloadingtheLeftBitShiftOperator
  • ImprovingtheBasicFractal
  • ReorganisingMain
  • LambdaExpressions
  • Functors
  • ObjectSlicingandPolymorphism
  • CatchingSubclassExceptions
  • CustomExceptions
  • RangeBasedColoring
  • OverloadingtheInsertionOperatorforPrinting
  • ImplementingFractalCreator
  • TemplateClasses
  • EnhancedForLoop
  • ABitmapClass
  • InitializerLists
  • BinaryFiles
  • AZoomClass
  • FunctionalTypes
  • StacksAndQueues
  • BitmapHeaderValues
  • GettingPixelRanges
  • PerfectForwarding
  • CustomObjectsAsMapValues
  • BitmapFileHeaders
  • Maps
  • BasicExceptions
  • MutableLambdas
  • SortingVectorsDequeFriend
  • WritingTextFiles
  • SpecifyingColorRanges
  • MoveAssignmentOperators
  • OverloadingtheAssignmentOperator
  • FunctionPointers
  • FractalCreatorHelloWorld
  • OverloadingPlus
  • ApplyingtheZoom
  • StlComplexDataTypes
  • CenteringandScaling
  • OverloadingComparisonOperators
  • TemplateFunctions1
  • CalculatingRangeTotals
  • MultipleInheritance
  • TheAutoKeyword
  • LambdaCaptureExpressions
  • CheckingtheRangeTotals
  • AbstractClasses
  • ElisionandOptimization
  • MoveConstructors
  • Bind
  • lValuesandrValues
  • EliminatingMaxIterations
  • ReadingandWritingBinaryFiles
  • ParsingTextinFiles
  • ConstructorsandMemory
  • BitmapMemory

Chapter List for C++ STL Library Examples
  • Chapter 1 -
  • Chapter 2 -
  • Chapter 3 -

Chapter List for C++ Boost Library Examples / Boost C++ Application Development Cookbook by Antony Polukhin
  • Chapter 1 -
  • Chapter 2 -
  • Chapter 3 -
  • Chapter 4 -
  • Chapter 5 -
  • Chapter 6 -
  • Chapter 7 -
  • Chapter 8 -
  • Chapter 9 -
  • Chapter 10 -
  • Chapter 11 -
  • Chapter 12 -

Chapter List for Discovering Modern C++ (2nd edition) by Peter Gottschling/ Boost C++ Application Development Cookbook by Antony Polukhin
  • Chapter 1 C++03
  • Chapter 2 C++11
  • Chapter 3 C++14
  • Chapter 4 C++17
  • Chapter 5 C++20
  • Chapter 6 C++20vs

Chapter List for Goodrich, M: Data Structures and Algorithms in C++
  • Chapter 1 -
  • Chapter 2 -
  • Chapter 3 -
  • Chapter 4 -
  • Chapter 5 -
  • Chapter 6 -
  • Chapter 7 -
  • Chapter 8 -
  • Chapter 9 -
  • Chapter 10 -
  • Chapter 11 -
  • Chapter 12 -
  • Chapter 13 -
  • Chapter 14 -

THANKS

Special thank you for:

  • Sidney Watson

  • Ian Scahfer

  • Peter Gottschling

  • Antony Polukhin

  • Zafar (z-a-f)

    This repo couldn't be done without them.

License

MIT

Free Software, Hell Yeah!

License: MIT

Buy Me Coffee

0xd20E868d12E3f9dA8aC396e81a2Ec628A86100aF

cpp-learning-archive's People

Contributors

erdemozgen avatar ninsta22 avatar sebastiantirado avatar sufuk avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

cpp-learning-archive's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.