All Projects → yashasvi-goel → Algorithms-Open-Source

yashasvi-goel / Algorithms-Open-Source

Licence: other
We have a task for each skill level!!

Programming Languages

C++
36643 projects - #6 most used programming language
python
139335 projects - #7 most used programming language
go
31211 projects - #10 most used programming language
java
68154 projects - #9 most used programming language
c
50402 projects - #5 most used programming language
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Algorithms-Open-Source

Python For Beginners
Here you can find all the main Python files written throughout my free YouTube tutorial series Python for Beginners!
Stars: ✭ 68 (+119.35%)
Mutual labels:  beginner, beginner-friendly
Start Here
💡 A Quick-start Guide for People who want to dwyl ❤️ ✅
Stars: ✭ 1,392 (+4390.32%)
Mutual labels:  beginner, beginner-friendly
Hacktoberfest
Make your first PR! ~ A beginner-friendly repository made specifically for open source beginners. Add your profile, a blog, or any program under any language or update the existing one. Just make sure to add the file under the correct directory. Happy hacking!
Stars: ✭ 78 (+151.61%)
Mutual labels:  beginner, beginner-friendly
Javascript Mini Projects
Awesome Collection of amazing javascript mini-projects.
Stars: ✭ 42 (+35.48%)
Mutual labels:  beginner, beginner-friendly
Minimalist Portfolio
A simple minimalist one page portfolio. Link:
Stars: ✭ 136 (+338.71%)
Mutual labels:  beginner, beginner-friendly
Javascript Notes
Notes taken during Wes Bos' BeginnerJavaScript course
Stars: ✭ 52 (+67.74%)
Mutual labels:  beginner, beginner-friendly
JS-OS
An Unified Operating System on the web
Stars: ✭ 54 (+74.19%)
Mutual labels:  beginner, beginner-friendly
Hacktoberfest 2020
Welcome to Open-source! Simply add your details to contributors | Repo for Hacktoberfest 2020 ✅
Stars: ✭ 621 (+1903.23%)
Mutual labels:  beginner, beginner-friendly
DataStructures-Algorithms
A collections of many CP-based or DSA-based Questions that is stored various algorithms and datastructures to increase coding aptitutde. Anybody with a knack for coding can feel free to add more solutions and questions in the respective folders
Stars: ✭ 15 (-51.61%)
Mutual labels:  beginner-friendly, algorithms-and-data-structures
Dark Fantasy Hack Tool
DDOS Tool: To take down small websites with HTTP FLOOD. Port scanner: To know the open ports of a site. FTP Password Cracker: To hack file system of websites.. Banner Grabber: To get the service or software running on a port. (After knowing the software running google for its vulnerabilities.) Web Spider: For gathering web application hacking information. Email scraper: To get all emails related to a webpage IMDB Rating: Easy way to access the movie database. Both .exe(compressed as zip) and .py versions are available in files.
Stars: ✭ 131 (+322.58%)
Mutual labels:  beginner, beginner-friendly
Hacktoberfest2k19
Hacktoberfest is here! Raise the PR and earn goodies.
Stars: ✭ 34 (+9.68%)
Mutual labels:  beginner, beginner-friendly
Hacktoberfest
Make your first PR! ~ A beginner-friendly repository made specifically for open source beginners. Add your profile, a blog or any program under any language (it can be anything from a hello-world program to a complex data structure algorithm) or update the existing one. Just make sure to add the file under the correct directory. Happy hacking!
Stars: ✭ 191 (+516.13%)
Mutual labels:  beginner, beginner-friendly
Babysploit
👶 BabySploit Beginner Pentesting Toolkit/Framework Written in Python 🐍
Stars: ✭ 883 (+2748.39%)
Mutual labels:  beginner, beginner-friendly
Phoenix Todo List Tutorial
✅ Complete beginners tutorial building a todo list from scratch in Phoenix 1.5.3 (latest)
Stars: ✭ 65 (+109.68%)
Mutual labels:  beginner, beginner-friendly
Python Tutorial
A Python 3 programming tutorial for beginners.
Stars: ✭ 647 (+1987.1%)
Mutual labels:  beginner, beginner-friendly
P5js Cheat Sheet
a p5js cheat sheet for beginners!
Stars: ✭ 89 (+187.1%)
Mutual labels:  beginner, beginner-friendly
Hacktoberfest2019
Happy Hacktober! This is a beginner friendly repository made specifically for Hacktoberfest that helps you get your first PR.
Stars: ✭ 378 (+1119.35%)
Mutual labels:  beginner, beginner-friendly
Problem Solving Javascript
🔥 Crack you JS interviews ⚡ Collection of most common JS Interview questions with Unit Tests 🚀
Stars: ✭ 451 (+1354.84%)
Mutual labels:  beginner, beginner-friendly
Algobook
A beginner-friendly project to help you in open-source contributions. Data Structures & Algorithms in various programming languages Please leave a star ⭐ to support this project! ✨
Stars: ✭ 132 (+325.81%)
Mutual labels:  beginner, beginner-friendly
Ltecleanerfoss
The last Android cleaner you'll ever need!
Stars: ✭ 141 (+354.84%)
Mutual labels:  beginner, beginner-friendly

Algorithms-Open-Source

This project is a collection of implementations of various algorithms in various programming languages. These algorithms are useful and relatively simple, and are recommended to be implemented by any computer science student.

Motivation

The motivation for this project is this reddit post

Want to Contribute?

  • Have a look at the issues
  • Select an issue you want to work on
  • Comment with the language of choice, after which you will get assigned to that issue.
    • Only then start working on the task.
  • If the algorithm of your choice is already implemented, try to optimise it.
  • Make sure to add your algorithm to the README if it does not currently exist there.

Note: It is encouraged to implement already implemented algorithms in different languages.

Project Structure

The repo is structured like

  • Algorithm Category
    • Algorithm Name
      • Language
        • Implementation - Source Code

Currently implemented algorithms

  • Compiler

    • LALR parser
    • LL-1 Parser
  • Circle Drawing

    • Bresenham
  • Encryption

    • Diffie-Hellman
    • RSA
    • Shamir Secret Sharing Algorithm
  • Graph Algorithms

    • 0/1 BFS Traversal
    • BFS Traversal
    • Bidirectonal Dijkstra
    • Cycle Detection
    • DFS Traversal
    • MultiSource BFS
    • All Pairs Shortest Path (FloydWarshall)
    • Bellman Ford Algorithm
    • Bridge Finding Algorithm
    • Topological Sort
  • LeetCode Solutions

  • Markov Algorithms

    • Viterbi Algorithm
  • Page Rank

  • Polynomial Solver

    • Newton Method
  • Set Checking

    • Bloom Filter
    • Frequency
  • Sorting

    • Bead Sort
    • Bitonic Sort
    • Bubble sort
    • Recursive Bubble sort
    • Bucket Sort
    • Cocktail Sort
    • Comb Sort
    • Counting Sort
    • Gnome Sort
    • Heap sort
    • Insertion sort
    • Merge Sort
    • Odd-Even Sort
    • Pancake Sort
    • Quick Sort
    • Radix Sort
    • Selection Sort
    • Shell Sort
    • Stooge Sort
    • Tim Sort
    • Cycle Sort
  • Stable Matching

    • Gale Shapley
  • String Matching

    • Rabin-Karp
    • Z Algorithm
  • Tree Traversal

    • BFS
    • Inorder
    • Iterative Post order
    • Iterative Pre order
    • Post order
    • Pre order

Maintainers

Contributors

CONTRIBUTORS

Come talk to us

Join our discord channel

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].