Manav1 / algorithms

Algorithms and data structures in many languages.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HACKTOBERFEST 2020

image

Algorithms and Data-Structures.

This is a repository to get Algorithms and data-structures in many languages.

Everybody is welcomed to contribute to this repo.

Overview

The goal of this project is to help the beginners with their contributions in Open Source. We aim to achieve this collaboratively, so feel free to contribute in any way you want, just make sure to follow the contribution guidelines. You can contribute to it in either of the following ways: You can choose atleast any one option below or can add any algorithm or data-structure you like:

  • Beginners:
    • A simple algorithm you know in any language.
    • Add any easy comptitive programming question you like.
  • Intermediate:
    • Add any algorithm you like.
    • Add any data-structure implementation.
    • Add any interview question as comment and solution in any language.
  • Experienced:
    • Add any important algorithm in any language.
      • Add any game in your favorite programming language!
    • Add any Hard Problem from competitve programming website.
    • Add any interview question as comment and solution in any language.

What is Hacktoberfest?

Hacktoberfest is a month long virtual festival event to celebrate open source contributions presented by Digital Ocean and DEV. It is the easiest way to get into open source!

During the entire month of October 2020, all you have to do is contribute to any open source projects and open at least 4 pull requests. Yes, any project and any kind of contributions.

Why Should I Contribute?

The Hacktoberfest’s simple plain objective is: Support open source and earn a limited edition T-shirt! But, it’s not just about the t-shirts or stickers. Its about supporting open source. Its about celebrating open source, and giving it back. If you’ve never contributed to open source before, this is the perfect time to get started because Hacktoberfest provides a large list of available contribution opportunities.

What Can I Contribute?

Hacktoberfest® is open to everyone in our global community. Whether you’re a developer, student learning to code. You can contribute to anything from code to simple fix, new feature to grammar mistake.

How to Contribute in this repo.

Contributing to open-source is easy.

  • Please read the contributing guideline before any PR.
  • Fork the repository
  • Improve current program by
    • improving codes and features
    • adding new feature
    • add any algorithm you like
    • by adding any data-structure implementation yout like.
    • improving the documentation
    • you can also optimise somebody's code
  • Push your work and Create a Pull Request

Click here for more explanation

What if my pull requests aren’t accepted?

The only exception would be if the project maintainer chooses to mark your pull request as “invalid”. Even if your pull requests aren’t accepted, they should still count toward your 4 pull requests necessary to earn the shirt.

What kinds of pull requests count toward earning the Hacktoberfest shirt?

Any pull request made to a public repo on GitHub will count. The pull request must contain commits you personally made yourself — not automated commits from bots.

You can contribute to any open source project hosted on Github.com and contribute anything between October 1 to October 31 midnight in 2020. You will find plenty of issues labeled with hacktoberfest or good-first-issue etc on Github. These will be the simple ones most probably and easy to fix.

Implemented Algorithms

Algorithm CPP Java Python JavaScript Golang C# Other
Binary Search
Bogo Sort TS ✔
Breadth First Search
Breadth First Traversal
Bubble sort
Counting Sort
Depth First Traversal
Dijkstra Algorithm
Finite Automata
Heap Sort
Huffman Coding
Insertion Sort
K-NN
K Centers Problem
KMP Algorithm
Kruskal’s Minimum Spanning Tree Algorithm
Linear Search
Longest Common Subsequence
Longest Increasing Subsequence
Longest Palindromic Substring
Merge Sort
Naive Search
Quick Sort
Radix Sort
Selection Sort
Sieve of Eratosthenes
Shell Sort
Suffix Array

Some CP Question

Questions CPP Java Python JavaScript Golang C# Other
Binomial Coefficient
Bellman–Ford Algorithm
Coin Change
Count ways to reach the n’th stair
Cutting a Rod
Edit Distance
Egg Droping Puzzle
Four Sum
Knapsack Problem
Largest Sum Contiguous Subarray
m Coloring Problem
Pascal’s Triangle
Matrix Chain Multiplication
Maximum sum rectangle in a 2D matrix
Min Cost Path
Palindrome Partitioning
Partition problem
Subset Sum
Tiling Problem
The Knight’s tour problem
Three Sum
Two Sum
Variations of LIS
Word Wrap Problem

Data Structures Implementations.

Data Structure CPP Java Python JavaScript Golang C# Other
AVL Tree
Binary Search Tree
Binary Tree
Doubly Linked List
Graph
Heap
Linked List
Queue
Stack
Trie

you can add more algorithms, data-structure and cp problems if you like to in the readme file

How to run them

Language Steps
C++
g++ <filename.cpp>
./a.out # unix
a.exe # windows
Java
javac <filename.java>
java
Python
python <filename.py>
JavaScript
node <filename.js>
Golang
go run <filename.go>
C#
mcs <filename.cs>
mono <filename.exe>
Request:-
  • please provide some explanation to the code you write in form of comments.
  • add at least any one among whatever(algoritms, ds, questions) you know.

Thanks Everyone For Contributing.


SobhanBera

💻

Alan Jereb

💻

About

Algorithms and data structures in many languages.

License:MIT License


Languages

Language:C++ 78.1%Language:Python 13.7%Language:TypeScript 8.2%