Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/georgepanaretos/bitsandbytes
Bits and Bytes of Code Examples
https://github.com/georgepanaretos/bitsandbytes
interview interview-practice interview-preparation interview-questions interview-test java
Last synced: 16 days ago
JSON representation
Bits and Bytes of Code Examples
- Host: GitHub
- URL: https://github.com/georgepanaretos/bitsandbytes
- Owner: GeorgePanaretos
- Created: 2023-05-11T08:51:00.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-27T21:55:43.000Z (over 1 year ago)
- Last Synced: 2024-11-10T22:14:16.692Z (2 months ago)
- Topics: interview, interview-practice, interview-preparation, interview-questions, interview-test, java
- Language: Java
- Homepage: https://github.com/GeorgePanaretos/BitsAndBytes
- Size: 30.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BitsAndBytes Documentation
Welcome to the documentation for the **BitsAndBytes** repository! This repository contains various code snippets, algorithms, and resources related to computer science. Below you will find an overview of the available contents, along with relevant emojis to make your reading experience more enjoyable.
## Table of Contents
- [😄 Introduction](#-introduction)
- [📁 File Structure](#-file-structure)
- [📚 Algorithms](#-algorithms)
- [🤝 Contributing](#-contributing)## 😄 Introduction
The **BitsAndBytes** repository is a collection of computer science resources, including code snippets, algorithms, and tips and tricks. Whether you're a beginner or an experienced programmer, this repository aims to provide you with valuable insights and useful tools.
## 📁 File Structure
The repository's file structure is organized as follows:
```
BitsAndBytes/
├── algorithms/
│ ├── sorting/
│ │ ├── bubble_sort.py
│ │ ├── insertion_sort.py
│ │ └── ...
│ ├── searching/
│ │ ├── linear_search.py
│ │ ├── binary_search.py
│ │ └── ...
│ └── ...
```The repository is divided into three main sections: `algorithms`, `networking`, and `tips_and_tricks`. Each section contains subdirectories and relevant files for specific topics within that category.
## 📚 Algorithms
The `algorithms` directory contains various sorting and searching algorithms, among others. Here are some of the available algorithms:
- **Sorting Algorithms**:
- [Bubble Sort](algorithms/sorting/bubble_sort.py)
- [Insertion Sort](algorithms/sorting/insertion_sort.py)
- ...- **Searching Algorithms**:
- [Linear Search](algorithms/searching/linear_search.py)
- [Binary Search](algorithms/searching/binary_search.py)
- ...