Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carrington-dev/computer_science_repo
Wits Computer Science Practice
https://github.com/carrington-dev/computer_science_repo
algorithms-and-data-structures alogrithms computer-science cpp11 data-structures-and-algorithms progrmming-language
Last synced: 18 days ago
JSON representation
Wits Computer Science Practice
- Host: GitHub
- URL: https://github.com/carrington-dev/computer_science_repo
- Owner: Carrington-dev
- License: mit
- Created: 2023-12-04T09:05:28.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-16T17:43:24.000Z (about 1 month ago)
- Last Synced: 2024-12-16T18:39:55.622Z (about 1 month ago)
- Topics: algorithms-and-data-structures, alogrithms, computer-science, cpp11, data-structures-and-algorithms, progrmming-language
- Language: Python
- Homepage: https://wits.ac.za
- Size: 1.22 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Hereβs a well-structured `README.md` template tailored to a Computer Science undergraduate course repository. You can adapt the sections according to your specific course, goals, or structure.
---
# π Computer Science Undergraduate Course Repository
Welcome to the **BSc Computer Science** GitHub repository! This repository is intended to support learning, collaboration, and code sharing for students enrolled in the course.
## ποΈ Table of Contents
- [About the Course](#about-the-course)
- [Repository Structure](#repository-structure)
- [How to Use This Repository](#how-to-use-this-repository)
- [Getting Started](#getting-started)
- [Prerequisites](#prerequisites)
- [Contributing Guidelines](#contributing-guidelines)
- [License](#license)
- [Acknowledgements](#acknowledgements)---
## π About the Course
This repository contains materials, assignments, and code examples for **BSc Computer Science** at **University Of The Witwarersrand**. The primary focus of this course is to develop foundational knowledge and skills in **[key topics]**, such as:- **Programming Languages:** [e.g., Python, C++, Java, etc]
- **Data Structures & Algorithms**
- **Artificial Intelligence and Machine Learning**
- **Operating Systems and Networks**
- **Databases and Software Engineering Principles**
- **System Design**
- **Mobile Computing**---
## ποΈ Repository Structure
```plaintext
π¦ computer_science_repo
βββ π lectures/ # Lecture slides, notes, and supplementary materials
βββ π assignments/ # Programming assignments and problem sets
βββ π projects/ # Group and individual project submissions
βββ π solutions/ # Solutions to exercises (if applicable)
βββ π resources/ # External resources (articles, books, videos)
βββ README.md # This README file
```---
## π How to Use This Repository
1. **Clone the repository:**
```bash
git clone https://github.com/Carrington-dev/computer_science_repo.git
cd computer_science_repo
```2. **Explore by folder:** Browse relevant folders for assignments, projects, or lecture materials.
3. **Fork and contribute:** If you want to add or improve content, feel free to fork the repo and submit a pull request!---
## π§ Getting Started
To complete the coding assignments, you will need:- A working installation of **[Required Programming Language]** (e.g., Python 3.x)
- **Git** installed on your machine for version control
- Optionally: A **virtual environment** to manage dependencies
**Example:** Set up a virtual environment (Python):
```bash
python -m venv venv
source venv/bin/activate # On Mac/Linux
venv\Scripts\activate # On Windows
```---
## π Prerequisites
Before working through this course, itβs recommended to have:
- Basic programming knowledge (e.g., Python or Java)
- Familiarity with Git/GitHub
- [Any other specific prerequisites]---
## π€ Contributing Guidelines
Contributions to this repository are welcome! Please follow these guidelines:
1. **Fork** the repository and **create a branch** for your changes.
2. **Commit** your changes with descriptive messages.
3. **Create a pull request** explaining your changes.
4. Wait for feedback and approval from the maintainers.---
## π License
This repository is licensed under the **[License Name]**. See the [LICENSE](LICENSE) file for more information.---
## π Acknowledgements
Special thanks to:
- **[Professor Name]** for course materials and guidance
- **University of [Wits/Cape Town/etc.]** for providing a great learning environment
- **Contributors** who have helped improve this repository---
Feel free to suggest improvements to this `README.md` by opening an issue or submitting a pull request! π
---
## π Happy Learning!
---
This template should help make your course repository more organized and professional. Let me know if you'd like any changes or additional sections!
## Other Writters
```bash
https://github.com/G33kzD3n/Catalogue/blob/master/Domain-Driven%20Design_%20Tackling%20-%20Eric%20Evans_14.pdf
```
### UUID Generation Kotlin
```bash
https://www.uuidgenerator.net/dev-corner/kotlin
```## Topics
We covered a number of topics here.
This repo also includes practice answers from hackerrank### Data Structures
1. Binary Search Trees
* Insertion
* Pr-eorder traversal
* In-order traversal
* Post-order traversal
* Outline Traversal
* recursion
* using level counter method
* Left Nodes Traversal Only (printout)
* recursion
* using level counter method
* Right Nodes Traversal Only (printout)
* Change order traversal
* Level order traversal
* using a queue
* using level counter method
* recursion
* Todo
* Tree Length
* Leaf Node Print Out```bash
25 20 36 10 22 30 40 5 12 28 38 48 -1
25 20 36 10 22 30 40 5 12 28 38 48 21 24 23 29 37 47 46 -1
25 20 36 10 22 23 30 40 5 12 28 38 48 21 24 29 37 47 46 -1
```
2. Linked List (Singly)
* Insertion
* Merge
* reversing
* Insert at index (to checkout)
* Add a tail
3. Queue
* insert
* pop
* top
* use cases
* size
5. Stack
* insert
* pop
* top
* use cases
* size
6. Vector
* insert
* pop
* top
* index at
* size
* reallocate
* allocate
* top
* last
7. HashMap
8. Heap
9. Graphs```bash
https://github.com/Carrington-dev/IDSA
https://www.geeksforgeeks.org/binary-search-tree-data-structure/
``````bash
https://python-book.softuni.org/chapter-11-tricks-and-hacks.html
```