All Projects → frextrite → Data-Structures-Algorithms-Hacktoberfest-2K19

frextrite / Data-Structures-Algorithms-Hacktoberfest-2K19

Licence: MIT license
collection of data structures and algorithms in different languages - created by the community during Hacktoberfest 2019

Programming Languages

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

Projects that are alternatives of or similar to Data-Structures-Algorithms-Hacktoberfest-2K19

Yet Another Algorithms Repository
Beginner friendly repo for easily contributing algorithms' implementations
Stars: ✭ 31 (-8.82%)
Mutual labels:  hacktoberfest2019
datastructures-in-javascript
Illustrated Data Structures — Video Series
Stars: ✭ 88 (+158.82%)
Mutual labels:  data-structures-and-algorithms
CPPNotes
【C++ 面试 + C++ 学习指南】 一份涵盖大部分 C++ 程序员所需要掌握的核心知识。
Stars: ✭ 557 (+1538.24%)
Mutual labels:  data-structures-and-algorithms
Hacktoberfest-2018
A simple code repository for algorithms in various languages.
Stars: ✭ 37 (+8.82%)
Mutual labels:  hacktoberfest2019
Data-Structures-and-Algorithms
An Open-Source repository that contains all the Data Structures and Algorithms concepts and their implementation in several ways, programming questions and Interview questions. The main aim of this repository is to help students who are learning Data Structures and Algorithms or preparing for an interview.
Stars: ✭ 614 (+1705.88%)
Mutual labels:  data-structures-and-algorithms
Lets-go-Code
Welcome to Open Source! 👨‍💻 Make your Hacktoberfest 2021 contributions here. 👕
Stars: ✭ 13 (-61.76%)
Mutual labels:  data-structures-and-algorithms
HacktoberFest-HelloWorld
All your PRs will be merged !! 😊
Stars: ✭ 24 (-29.41%)
Mutual labels:  hacktoberfest2019
resources api
Flask API for programming and cyber security learning resources
Stars: ✭ 63 (+85.29%)
Mutual labels:  hacktoberfest2019
DSA-EndGame
I have started Data structures and Algorithms on April 1, 2021, and this repository will be containing my resources, tutorial, codes, and my approach to Qs, for future reference. As I'm in the learning process, this repository will be refreshed daily with my new bits of knowledge.
Stars: ✭ 103 (+202.94%)
Mutual labels:  data-structures-and-algorithms
Fluent-Design-For-Web
Windows 10 Inspired UI For Web
Stars: ✭ 28 (-17.65%)
Mutual labels:  hacktoberfest2019
PharoPDS
Probabilistic data structures in Pharo Smalltalk.
Stars: ✭ 28 (-17.65%)
Mutual labels:  data-structures-and-algorithms
COMPETITVE-PROGRAMMING
Competitive programming is a mind sport usually held over the Internet or a local network, involving participants trying to program according to provided specifications. This repo contains the Detailed Explanation and implementation of Various Coding problems on various platforms in C++
Stars: ✭ 60 (+76.47%)
Mutual labels:  data-structures-and-algorithms
100daysofDSA
Problem-solving
Stars: ✭ 25 (-26.47%)
Mutual labels:  data-structures-and-algorithms
Idea-ReVue
Social Ideation application to manage Ideas. Developed with Vue, Firebase & Vuetify
Stars: ✭ 15 (-55.88%)
Mutual labels:  hacktoberfest2019
CVIP
C/C++/Golang/Linux...知识整理
Stars: ✭ 62 (+82.35%)
Mutual labels:  data-structures-and-algorithms
vue-playground
Web Playground for Vue.js
Stars: ✭ 12 (-64.71%)
Mutual labels:  hacktoberfest2019
LeetCode
✍️ My LeetCode solutions, ideas and templates sharing. (我的LeetCode题解,思路以及各专题的解题模板分享。分专题归纳,见tag)
Stars: ✭ 123 (+261.76%)
Mutual labels:  data-structures-and-algorithms
HacktoberProfile
A profile list of Hacktoberfest 2019 participants. https://srinibasbiswal.github.io/HacktoberProfile/
Stars: ✭ 30 (-11.76%)
Mutual labels:  hacktoberfest2019
deerportal
Full of the diamonds 💎 board game driven by a 🦌 Deer 🦌 god and classical elements 🔥 💦 💨 🌍
Stars: ✭ 31 (-8.82%)
Mutual labels:  hacktoberfest2019
hacktoberfest-2019
An easy way to get your 5 pull requests for Hacktoberfest done!
Stars: ✭ 35 (+2.94%)
Mutual labels:  hacktoberfest2019

Data Structures and Algorithms (Hacktoberfest 2019)

Update (October 8, 2019): Thank you everyone for your contributions. Due to Hacktoberfest's policy pull requests created in this repository will not count against Hacktoberfest PR count. However we would like to continue this project and everyone is welcome to create this a big collection of Algorithms and Data structures. 🎉

Hacktoberfest 2019

Do you have a knack for programming? Do Data Structures and Algorithms excite you? Well, you have come to the right place. This repository holds a collection of all the famous Data Structures and Algorithms you'd ever find.

As a part of Hacktoberfest 2019, you have a chance to contribute to this repository and get familiar with Open Source culture.

How to contribute

  1. Create an issue about the Data Structure/Algorithms or its application you'd like to implement.
  2. Wait for any of the maintainers to give you the green signal
  3. Code your heart out
  4. Create a pull request
  5. You're done!

Steps for contributing

  1. Decide with Algorithm/Data structure you want to work on that has not already been implemented
  2. Create an issue for it and wait for the maintainers to assign it to you
  3. Fork the repository
  4. Clone the forked repository git clone https://github.com/<username>/Data-Structures-Algorithms-Hacktoberfest-2K19.git
  5. Create a new branch for working git branch branch_name and switch to the branch git checkout branch_name
  6. Code!
  7. Save your changes git add .
  8. Commit your code git commit -m "Single line description of what you did"
  9. Push your code git push origin branch_name
  10. Create a pull request. Mention which Algorithm/Data structure is implemented along with which issue it closes. Example
Implemented Floyd Warshall algorithm in Rust
Closes #2
  1. Wait for it to get merged!

Rules for contributing

  1. Follow the directory structure Data Structures/<data structure>/<language>/<file> and Algorithms/<algorithm>/<language>/<file> Example: Data Structures/Linked List/cpp/linked_list.cpp and Algorithms/Search/rust/binary_search.rs
  2. Format/Indent the code properly
  3. Languages accepted: C, C++, Javascript, Java, Python, Rust, Haskell, Assembly, Kotlin, Julia (wish to code in another language? Update the README!)
  4. Language folder and file names should be lowercase.
  5. Documented code is preferred (don't forget the space and time complexity of your code!)
  6. Only 1 Data Structure/Algorithm per issue/pull request
  7. Every PR should mention which issue it closes
  8. PRs without issues/Spam PRs will be marked as invalid as it is against Hacktoberfest code of conduct.
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].