{"id":20548869,"url":"https://github.com/nragland37/cpp-projects","last_synced_at":"2025-04-03T11:08:28.695Z","repository":{"id":60634254,"uuid":"452852040","full_name":"nragland37/cpp-projects","owner":"nragland37","description":"Collection of 50 C++ Projects, Algorithms, Data Structures \u0026 Learning Materials","archived":false,"fork":false,"pushed_at":"2024-10-05T01:24:28.000Z","size":52469,"stargazers_count":308,"open_issues_count":1,"forks_count":40,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-03-27T10:11:18.114Z","etag":null,"topics":["algorithm","algorithms","algorithms-and-data-structures","cplusplus","cpp","cpp-programming","cpp-projects","data-structures","learning-cplusplus","learning-cpp","object-oriented-programming"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nragland37.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-01-27T21:33:17.000Z","updated_at":"2025-03-25T23:09:56.000Z","dependencies_parsed_at":"2024-03-14T04:23:52.407Z","dependency_job_id":"65edc914-d22b-4185-9c8b-3ae6019bf582","html_url":"https://github.com/nragland37/cpp-projects","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nragland37%2Fcpp-projects","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nragland37%2Fcpp-projects/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nragland37%2Fcpp-projects/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nragland37%2Fcpp-projects/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nragland37","download_url":"https://codeload.github.com/nragland37/cpp-projects/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246989742,"owners_count":20865331,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["algorithm","algorithms","algorithms-and-data-structures","cplusplus","cpp","cpp-programming","cpp-projects","data-structures","learning-cplusplus","learning-cpp","object-oriented-programming"],"created_at":"2024-11-16T02:15:07.596Z","updated_at":"2025-04-03T11:08:28.675Z","avatar_url":"https://github.com/nragland37.png","language":"C++","readme":"[![Codacy Badge](https://app.codacy.com/project/badge/Grade/b2686d21dc134cd2ae07194660b2f0b0)](https://app.codacy.com/gh/nragland37/cpp-projects/dashboard?utm_source=gh\u0026utm_medium=referral\u0026utm_content=\u0026utm_campaign=Badge_grade)\n[![License](https://img.shields.io/badge/license-MIT-blue)](https://github.com/nragland37/cpp-projects/blob/main/LICENSE)\n\n# \u003cp align=\"center\"\u003e Hello, World! 🦖 \u003c/p\u003e\n\n/*\n\nThis is a comprehensive collection of C++ projects, covering a wide range of topics from the basic `Hello World` to advanced `Self-Balancing AVL Trees`, and everything in between.\n\n\u003cbr\u003e\n\n## Makefile (Optional)\nFor projects that manage multiple source files (`Data Structures II`), a custom Makefile is included.\n\n### Requirements:\n- **Compiler**: g++ or clang++ (`macOS typically includes clang++`)\n- **Windows users**: Install [WSL](https://learn.microsoft.com/en-us/windows/wsl/install) for access to both compilers, or [MinGW](https://www.mingw-w64.org/) for g++\n\n### Build/Run/Clean:\nTo build, run, or clean projects using this Makefile, execute the following commands:\n\n```bash\nmake\n```\n```bash\nmake run\n```\n```bash\nmake clean\n```\n\n*/\n\n\n### [Programming I](/programming-I)\n* [Documents](programming-I/docs/)\n\n| # | Project |\n|:---:|:---|\n| 1 | [HelloWorld](./programming-I/01-helloworld) | \n| 2 | [Recipe](./programming-I/02-recipe) | \n| 3 | [Ingredients](./programming-I/03-ingredients) | \n| 4 | [Grade Calculator](./programming-I/04-gradeCalc) |  \n| 5 | [Shipping Cost](./programming-I/05-shippingCost) |  \n| 6 | [Morra Game](./programming-I/06-morra) |\n| 7 | [Morra-Series Game](./programming-I/07-morraSeries) |\n| 8 | [Order Pizza](./programming-I/08-pizza) | \n| 9 | [Circle](./programming-I/09-circleArea) |\n| 10 | [Grade Calculator-Functions](./programming-I/10-gradeCalc2) |\n| 11 | [Echo List](./programming-I/11-echoList) |\n| 12 | [Delete Repeats](./programming-I/12-deleteRepeats) |\n\n\u003cbr\u003e\n\n### [Programming II](/programming-II)\n* [Documents](programming-II/docs/)\n\n| # | Project |\n|:---:|:---|\n| 1 | [Two Dimensional Array](./programming-II/01-twoDimensionalArray) |\n| 2 | [Linear-Search \u0026 Bubble-Sort](./programming-II/02-linearSearch-BubbleSort) |\n| 3 | [Binary-Search/Selection-Sort \u0026 Introduction to Pointers](./programming-II/03-binarySearch-selectionSort_introToPointers) |\n| 4 | [Pointers](./programming-II/04-pointers) |\n| 5 | [Dynamic Memory Allocation](./programming-II/05-dynamicMemoryAllocation) |\n| 6 | [C-Strings \u0026 Strings](./programming-II/06-cString-string) |\n| 7 | [Structures](./programming-II/07-structures) |\n| 8 | [File Streams: Input/Output/Append (manual-update)](./programming-II/08-fstream-manualUpdate) |\n| 9 | [File Streams: Input/Output (auto-update)](./programming-II/09-fstream-autoUpdate) |\n| 10 | [File Streams (binary conversion): Input/Output/Binary (auto-update)](./programming-II/10-fstream-autoUpdate-binaryConversion) |\n| 11 | [Classes \u0026 Header Files](./programming-II/11-classes-headerFiles) |\n\n\u003cbr\u003e\n\n### [Data Structures I](/data_structures-I)\n* [Documents](data_structures-I/docs/)\n\n| # | Project |\n|:---:|:---|\n| 1 | [Default Arguments](./data_structures-I/01-defaultArgs) |\n| 2 | [Function Overloading \u0026 Templates](./data_structures-I/02-max) |\n| 3 | [Class Template Header \u0026 Driver Files](./data_structures-I/03-dyad) |\n| 4 | [Array List](./data_structures-I/04-AList) |\n| 5 | [Array List (Continued)](./data_structures-I/05-AList) |\n| 6 | [Linked List](./data_structures-I/06-LList) |\n| 7 | [Stack](./data_structures-I/07-Stack) |\n| 8 | [Queue](./data_structures-I/08-Queue) |\n| 9 | [Reverse Polish Notation Evaluator: Stack](./data_structures-I/09-rpnStack) |\n| 10 | [Palindrome Evaluator: Stack](./data_structures-I/10-palindromes) |\n| 11 | [Palindrome Evaluator: Stack \u0026 Queue](./data_structures-I/11-pal2) |\n| 12 | [Operator Overloading \u0026 Doubly Linked List](./data_structures-I/12-DLList) |\n| 13 | [Operator Overloading \u0026 Doubly Linked List (Continued)](./data_structures-I/13-DLList) |\n\n\u003cbr\u003e\n\n### [Data Structures II](/data_structures-II)\n* [Documents](data_structures-II/docs/)\n\n| # | Project |\n|:---:|:---|\n| 1 | [Recursion](./data_structures-II/01-Recursion-StockClass) |\n| 2 | [Linked List Recursion](./data_structures-II/02-Reverse-LList-Recursion) |\n| 3 | [Array List Binary Search Recursion](./data_structures-II/03-AList-BinarySearch-Recursion) |\n| 4 | [Quadratic Probing Hash Table](./data_structures-II/04-Hashing-Quadratic-Probing) |\n| 5 | [Array List Binary Search Recursion (Continued)](./data_structures-II/05-Updated-AList-BinarySearch-Recursion) |\n| 6 | [Binary Search Tree](./data_structures-II/06-BST) |\n| 7 | [Max-Heap Priority Queue ](./data_structures-II/07-Priority-Queue) |\n| 8 | [AVL (Self-Balancing Binary Search Tree)](./data_structures-II/08-AVLTree) |\n| 9 | [Huffman Tree: Encoding/Decoding/Compression](./data_structures-II/09-Huffman-Algorithm) |\n| 10 | [Array List Sorting Algorithms: Quick-Sort \u0026 Selection-Sort](./data_structures-II/10-AList-Sorting-Algorithms) |\n| 11 | [Array List Sorting Algorithms (Continued): Heap-Sort](./data_structures-II/11-Updated-AList-Sorting-Algorithms) |\n| 12 | [Graph Algorithms: Dijkstra's Shortest Path, Depth-First Search, \u0026 Breadth-First Search](./data_structures-II/12-Graph-Traversal) |\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnragland37%2Fcpp-projects","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnragland37%2Fcpp-projects","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnragland37%2Fcpp-projects/lists"}