Skip to content

RedSkittleFox/Cpp-Learning-Resources

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 

Repository files navigation

About This Document

Usage

This document contains videos and articles about different aspects of C++ programming. The best way to learn from them is to try them out yourself, or in the case of a lecture, do private research and experiments regarding the topic.

Advanced topics

You should not proceed to the topics after C++ STL without knowing the basics of C++ (or completing at least one series from Basics Of C++ category). The content following C++ STL isn't sorted by the difficulity, everything there is considered advanced C++. You should be able to understand most of it and apply it in your code after completing Basics Of C++ category.

Purpose

This document is a collection of high quality c++ learning materials for both new and experienced c++ programmers.

Contributing

Create either an issue with title and link to the resource you would like to add to this document or create new branch, add some changes and create a pull request.

Comments and suggestions

Please leave your comments, thoughts and suggestions via Issues.

Table of Contents

Learning sources

Basics Of C++

C++ STL

STL Containers

STL Algorithms

STL Utilities

Advanced C++

Constexpr

Functional

Time in C++

Random

Multithreading

Type related programming

Templates

Concepts

Type deduction

SFINAE - Substitution Failure Is Not An Error

Meta-programming

C++ Memory Management

Basics of memory management

Garbage Collection

  • GC FAQ ~ Document regarding garbage collection in C++

Allocators

C++ Error Handling

C++ Application Design

-[Game Programming from Scratch in C++] (https://guide.handmadehero.org/) ~By Casey Muratori

C++ Object Oriented Design

C++ Design Patterns

C++ Data Oriented Design

C++ Programming Style

Generalities about C++ programming

Best practices for C++

Programing Guidelines