├── .gitignore ├── LICENSE ├── README.md ├── cpp ├── concurrency_and_parallelism.md ├── conferences.md ├── core_language.md ├── libraries_and_applications.md ├── modules_and_preprocessor.md ├── optimization_and_hardware.md ├── patterns_and_idioms.md ├── std_library.md ├── templates.md └── tools.md ├── data_structures_and_algorithms ├── backtracking.md ├── bit_algorithms.md ├── combinatorics.md ├── cryptographic.md ├── data_exchange.md ├── design_and_analysis.md ├── distributed.md ├── dynamic_programming.md ├── game_theory.md ├── geometric.md ├── graphs.md ├── hash_tables.md ├── heaps.md ├── lists.md ├── misc.md ├── numeric.md ├── optimization.md ├── parsing.md ├── random.md ├── sequence.md ├── signal_processing.md ├── sorting.md ├── string.md ├── tools.md └── trees.md ├── distributed_systems.md ├── general_reviews.md ├── hardware.md ├── low_level.md ├── people.md └── programming.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/README.md -------------------------------------------------------------------------------- /cpp/concurrency_and_parallelism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/cpp/concurrency_and_parallelism.md -------------------------------------------------------------------------------- /cpp/conferences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/cpp/conferences.md -------------------------------------------------------------------------------- /cpp/core_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/cpp/core_language.md -------------------------------------------------------------------------------- /cpp/libraries_and_applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/cpp/libraries_and_applications.md -------------------------------------------------------------------------------- /cpp/modules_and_preprocessor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/cpp/modules_and_preprocessor.md -------------------------------------------------------------------------------- /cpp/optimization_and_hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/cpp/optimization_and_hardware.md -------------------------------------------------------------------------------- /cpp/patterns_and_idioms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/cpp/patterns_and_idioms.md -------------------------------------------------------------------------------- /cpp/std_library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/cpp/std_library.md -------------------------------------------------------------------------------- /cpp/templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/cpp/templates.md -------------------------------------------------------------------------------- /cpp/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/cpp/tools.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/backtracking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/backtracking.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/bit_algorithms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/bit_algorithms.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/combinatorics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/combinatorics.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/cryptographic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/cryptographic.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/data_exchange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/data_exchange.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/design_and_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/design_and_analysis.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/distributed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/distributed.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/dynamic_programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/dynamic_programming.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/game_theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/game_theory.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/geometric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/geometric.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/graphs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/graphs.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/hash_tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/hash_tables.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/heaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/heaps.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/lists.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/misc.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/numeric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/numeric.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/optimization.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/parsing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/parsing.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/random.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/random.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/sequence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/sequence.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/signal_processing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/signal_processing.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/sorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/sorting.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/string.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/tools.md -------------------------------------------------------------------------------- /data_structures_and_algorithms/trees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/data_structures_and_algorithms/trees.md -------------------------------------------------------------------------------- /distributed_systems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/distributed_systems.md -------------------------------------------------------------------------------- /general_reviews.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/general_reviews.md -------------------------------------------------------------------------------- /hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/hardware.md -------------------------------------------------------------------------------- /low_level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/low_level.md -------------------------------------------------------------------------------- /people.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/people.md -------------------------------------------------------------------------------- /programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugnsp/library/HEAD/programming.md --------------------------------------------------------------------------------