All Projects → Py-Contributors → Algorithmsanddatastructure

Py-Contributors / Algorithmsanddatastructure

Licence: mit
Algorithms And DataStructure Implemented In Python & CPP, Give a Star 🌟If it helps you

Programming Languages

python
139335 projects - #7 most used programming language
cpp
1120 projects

Projects that are alternatives of or similar to Algorithmsanddatastructure

C Plus Plus
Collection of various algorithms in mathematics, machine learning, computer science and physics implemented in C++ for educational purposes.
Stars: ✭ 17,151 (+4187.75%)
Mutual labels:  hacktoberfest, algorithm, data-structures, computer-science, machine-learning-algorithms
C
Collection of various algorithms in mathematics, machine learning, computer science, physics, etc implemented in C for educational purposes.
Stars: ✭ 11,897 (+2874.25%)
Mutual labels:  hacktoberfest, data-structures, computer-science, machine-learning-algorithms
Tech Refrigerator
🍰 기술 냉장고입니다. 🛒 기술 면접 , 전공 시험 , 지식 함양 등 분명 도움될 거예요! 🤟
Stars: ✭ 699 (+74.75%)
Mutual labels:  hacktoberfest, algorithm, data-structures, computer-science
Data Structure And Algorithms
A complete and efficient guide for Data Structure and Algorithms.
Stars: ✭ 48 (-88%)
Mutual labels:  hacktoberfest, algorithm, data-structures
Sde Interview Questions
Most comprehensive list 📋 of tech interview questions 📘 of companies scraped from Geeksforgeeks, CareerCup and Glassdoor.
Stars: ✭ 5,406 (+1251.5%)
Mutual labels:  hacktoberfest, algorithm, data-structures
Algos
Popular Algorithms and Data Structures implemented in popular languages
Stars: ✭ 966 (+141.5%)
Mutual labels:  hacktoberfest, algorithm, data-structures
Algorithms Explanation
All Algorithms explained in simple language with examples and links to their implementation in various programming languages and other required resources.
Stars: ✭ 1,243 (+210.75%)
Mutual labels:  hacktoberfest, algorithm, data-structures
Javascript
A repository for All algorithms implemented in Javascript (for educational purposes only)
Stars: ✭ 16,117 (+3929.25%)
Mutual labels:  hacktoberfest, algorithm, data-structures
Go Algorithms
Algorithms and data structures for golang
Stars: ✭ 1,529 (+282.25%)
Mutual labels:  hacktoberfest, algorithm, data-structures
Ultimate Java Resources
Java programming. All in one Java Resource for learning. Updated every day and up to date. All Algorithms and DS along with Development in Java. Beginner to Advanced. Join the Discord link.
Stars: ✭ 143 (-64.25%)
Mutual labels:  hacktoberfest, data-structures, computer-science
Data Structures Algorithms
Your personal library of every algorithm and data structure code that you will ever encounter
Stars: ✭ 157 (-60.75%)
Mutual labels:  hacktoberfest, algorithm, data-structures
Coding Interview University
A complete computer science study plan to become a software engineer.
Stars: ✭ 204,859 (+51114.75%)
Mutual labels:  algorithm, data-structures, computer-science
Algorithms
My Algorithms and Data Structures studies. https://leandrotk.github.io/series/algorithms-problem-solving
Stars: ✭ 275 (-31.25%)
Mutual labels:  algorithm, data-structures, computer-science
Algorithms
Solved algorithms and data structures problems in many languages
Stars: ✭ 1,021 (+155.25%)
Mutual labels:  hacktoberfest, algorithm, data-structures
Javascript Algorithms
📝 Algorithms and data structures implemented in JavaScript with explanations and links to further readings
Stars: ✭ 133,406 (+33251.5%)
Mutual labels:  algorithm, data-structures, computer-science
Leetcode
LeetCode solutions, written in python and cpp(LeetCode解题报告,记录自己的leetcode成长之路)
Stars: ✭ 179 (-55.25%)
Mutual labels:  algorithm, data-structures, computer-science
Dsa.js Data Structures Algorithms Javascript
🥞Data Structures and Algorithms explained and implemented in JavaScript + eBook
Stars: ✭ 6,251 (+1462.75%)
Mutual labels:  algorithm, data-structures, computer-science
Leetcode
LeetCode Solutions: A Record of My Problem Solving Journey.( leetcode题解,记录自己的leetcode解题之路。)
Stars: ✭ 45,650 (+11312.5%)
Mutual labels:  algorithm, data-structures, computer-science
Codezilla
⚡️ codezilla ⚡️ One giant 🦖 collection of algorithms & design patterns.
Stars: ✭ 127 (-68.25%)
Mutual labels:  hacktoberfest, algorithm, data-structures
Dailycodebase
2 month data structures and algorithmic scripting challenge starting from 20th December 2018 - Coding is Fun! 💯💯 Do it everyday!! Also, Do give us a ⭐ if you liked the repository
Stars: ✭ 186 (-53.5%)
Mutual labels:  hacktoberfest, algorithm, data-structures

website title image

👉 A Collection of Algorithm And Data Structures in Cpp and Python 👈

github stars github forks code size

open issues closed issues open pull request closed pull request

hacktoberfest MIT license

discord invite last contributions total contributors

#Note We have enabled an Interaction Limit till Monday(5th October). This is because we received a lot of duplicate issues and spam PRs, so we need some time to label them as invalid. We are now open to everyone again!

Introduction

Data structures & Algorithms are an essential part of programming. It comes under the fundamentals of computer science. It gives us the advantage of writing better and efficient code in less time. It is a key topic when it comes to Software Engineering interview questions so as developers, we must have knowledge of Data Structure and Algorithms

🌟 Star it 🍴Fork it 🤝 Contribute to it!

Data Structure

In computer science, a data structure is a data organization, management, and storage format that enables efficient access and modification. Data structure is a way or a format how your data is stored in memory for effecient usage and retrieval.

Algorithms

An algorithm is a set of instructions that are used to accomplish a task, such as finding the largest number in a list, removing all the red cards from a deck of playing cards, sorting a collection of names, figuring out an average movie rating from just your friend's opinion

Algorithms are not limited to computers. They are like a set of step-by-step instructions or an even a recipe, containing things you need, steps to do, the order to do them, conditions to look for, and expected results.

Languages

  • C++
  • Python

Support

Check Contribution Guide Before Contribution.

Project Progress

Data Structures

Data Structure C++ Python Status/Remarks
Linked List Yes Yes Being improved #23
Sets Yes Yes Implemented
Stack Yes In progress #13
Queue In progress #7 In progress #12

Algorithms

Algorithm C++ Python Remarks
Searching
Binary Search No In progress #9
Jump Search In progress #39 In progress #10
Fibonacci Search No In progress #11
Sorting
Selection Sort In progress #29 In progress #30
Bubble Sort Yes Yes
Insertion Sort In progress #2 Yes
Merge Sort In progress #3 Yes
Quick Sort In progress #4 Yes
Heap Sort In progress #5 In progress #6
Radix Sort In progress #63 Yes
Recursion
Fibonacci Numbers No Yes
Fibonacci List No Yes
Factors No Yes
Recursion No Yes
Recursive Sum No Yes
Sieve
Sieve of Erosothenes No Yes
Dynamic Programming
Knapsack Problem No Yes
Longest Common Subsequence No Yes
Longest Increasing Subsequence No Yes
Merge Sort No Yes Duplicate
Fibonacci Number No Yes Duplicate
Naive Pattern Search In progress #18 In progress #17
Rabin-Karp Algorithm No
Backtracking
Suduko Solver In progress #21 No
The Knight's Tour In progress #33 In progress #32
Subset Sum In progress #36 In progress #35
Deep Learning
Activation Function No Yes
Feed Forward Normal Function No Yes
Layers No Yes
Loss Function No Yes
Optimizers No Yes
Machine Learning
Gradient Descent No Yes
Linear Regression No Yes
Logistic Regression No Yes
Decision Tree No In progress #37
K-Nearest Neighbours No In progress #38

Contributing

Before submitting a bug, please do the following: Check Contribution Guide Before Contribution.

  • Create separate issues for Python and C++.
  • You can only work on issues that you have been assigned to.
  • Use Flake8 locally for linting Python Code. pip install flake8. (We have linting checks so if your code fails it we will not merge the PR.)

Authors and acknowledgment

Show your appreciation to those who have contributed to the project.

License

For open-source projects, Under MIT License.

Maintainers

built by developers

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].