An open API service indexing awesome lists of open source software.

Data structures

A data structure is a particular way storing and organizing data in a computer for efficient access and modification. Data structures are designed for a specific purpose. Examples include arrays, linked lists, and classes.

https://github.com/sumanbiswas7/ds-algo

patterns for coding interviews

algorithms data-structures python

Last synced: 15 Jun 2025

https://github.com/soloeinsteinmit/ds-algo-deck-v010

Data Structure and Algorithm Visualizer is an interactive web application designed to help students, developers, and educators learn data structures and algorithms in an engaging way. This tool allows users to explore and manipulate various data structures and algorithms with visual representations.

ai algorithms algorithms-and-data-structures data-structures dsa-visualizer framer-motion heroui nodejs react react-router redux redux-persist redux-toolkit tailwindcss

Last synced: 24 Feb 2025

https://github.com/awskhahaha/a

"a" is a versatile letter in the English alphabet, serving as both a vowel and a consonant in various words and contexts. Its shape is a simple, single curve that is commonly used in writing and typography.

acme ai data-structures git gpt jms lidar openai pure react release sam slam text

Last synced: 24 Feb 2025

https://github.com/mohamed-mostafaaa/monty

Monty 0.98 is a scripting language that is first compiled into Monty byte codes (Just like Python). It relies on a unique stack, with specific instructions to manipulate it. The goal of this project is to create an interpreter for Monty ByteCodes files.

brainfuck bytecode c data-structures monty queue stack

Last synced: 07 Jul 2025

https://github.com/firoz-thakur/leetcodesolving

Welcome to the LeetCode Problem Solving repository! This repository contains solutions to a variety of problems from LeetCode, covering a wide range of topics in Data Structures and Algorithms. The goal is to enhance problem-solving skills and help you ace technical interviews.

algorithm codechef-solutions codeforces-solutions competitive-programming cpp data-structures java leetcode leetcode-solutions problem-solving

Last synced: 18 Mar 2025

https://github.com/shadowshahriar/cse222

A repository containing my solutions to data structure (Java, C, C++) problems assigned by our CSE lecturer, NASR (3rd Semester)

c cpp data-structures java

Last synced: 14 Mar 2025

https://github.com/sahilmemon7/data_structures_algorithms

Main data structures and algorithms in Java along with their time and space complexities.

algorithms data-structures java

Last synced: 13 Sep 2025

https://github.com/citizenlabsgr/data.world

Work with data sets prior to uploading to data.world

data data-structures

Last synced: 26 Mar 2025

https://github.com/fabriziomettini/dsa-i

Resources about my DS&A I course (FCEIA - UNR)

algorithms college data-structures

Last synced: 17 Mar 2025

https://github.com/toxicmango64/push_swap

Push_swap is a an efficient sorting algorithm using two stacks and a limited set of operations. The goal is to sort a given set of integers in ascending order using the fewest possible moves, implementing and optimizing various sorting algorithms to achieve the best performance within specified benchmarks.

algorithms c data-structures programming sorting-algorithms

Last synced: 13 Mar 2025

https://github.com/data-structures-and-algorithms/deque

:snake: Python's deque data structure for JavaScript

agpl computer-science data-structures deque javascript

Last synced: 06 May 2025

https://github.com/kabirbose/dsa-sorting-assignment

Program that uses different sorting algorithms to sort and manipulate data from a text file

algorithms data-structures python3 sorting

Last synced: 09 Sep 2025

https://github.com/nubisub/dsawithc

Praktikum Struktur Data

c data-structures graph linked-list

Last synced: 11 Apr 2025

https://github.com/vaibhavmojidra/data-structures---hashtable-using-array-and-linked-list-in-java

Hash Table is a data structure which stores data in an associative manner. In a hash table, data is stored in an array format, where each data value has its own unique index value. Access of data becomes very fast if we know the index of the desired data. Thus, it becomes a data structure in which insertion and search operations are very fast irrespective of the size of the data. Hash Table uses an array as a storage medium and uses hash technique to generate an index where an element is to be inserted or is to be located from.

arrays data data-structures hashing java linked-list mojidra vaibhav vaibhav-mojidra vaibhavmojidra

Last synced: 12 Apr 2025

https://github.com/vaibhavmojidra/data-structures---queue-using-linked-list-in-java

Queue is an abstract data structure, somewhat similar to Stacks. Unlike stacks, a queue is open at both its ends. One end is always used to insert data (enqueue) and the other is used to remove data (dequeue). Queue follows First-In-First-Out methodology, i.e., the data item stored first will be accessed first.

data-structures java linked-list mojidra queue vaibhav vaibhav-mojidra vaibhavmojidra

Last synced: 26 Oct 2025

https://github.com/julianjuko/subset-prompter

Reduce large datasets down to unique subsets - quickly.

data-structures data-visualization

Last synced: 11 Apr 2025

https://github.com/jorgeterence/go-data-structures

Algorythms and data structures in practice

algorithms data-structures golang graph-algorithms

Last synced: 05 Apr 2025

https://github.com/linsanity03/learning_go

This projects is dedicated to learning GO language and its use case

data-structures golang ticket-booking-app

Last synced: 05 Apr 2025

https://github.com/dhruvkb/man106

some C++ programs made for the course MAN-106

cplusplus-11 data-structures iit-roorkee

Last synced: 05 Apr 2025

https://github.com/amaanwanie/dsa

all of the ds lectures i studied in class.

c data-structures linked-list queues stack

Last synced: 10 Jul 2025

https://github.com/wisn/cppds

A collection of various data structures implementation in C++11

cpp11 data-structures telkom-university

Last synced: 15 Jul 2025

https://github.com/soumyajit4119/my-codingjournal

โœ๏ธ A daily log of my coding practice, projects, and learning progress โ€” organized by topics, languages, and goals.

algorithms css data-structures hackerrank html5 java javascript leetcode mysql notes problem-solving python

Last synced: 11 Apr 2025

https://github.com/vaibhavmojidra/data-structures---stack-using-linked-list-in-java

A stack is a linear data structure that follows the principle of Last In First Out (LIFO). This means the last element inserted inside the stack is removed first.

data-structures java linked-list mojidra stack vaibhav vaibhav-mojidra vaibhavmojidra

Last synced: 12 Apr 2025

https://github.com/vaibhavmojidra/data-structures---linked-list-in-java

Linked List is a sequence of links which contains items. Each link contains a connection to another link. Linked list is the second most-used data structure after array.

data-structures java java-8 linked-list mojidra vaibhav vaibhav-mojidra vaibhavmojidra

Last synced: 12 Apr 2025

https://github.com/vaibhavmojidra/data-structures---stack-using-array-in-java

A stack is a linear data structure that follows the principle of Last In First Out (LIFO). This means the last element inserted inside the stack is removed first.

array data-structures java mojidra stack vaibhav vaibhav-mojidra vaibhavmojidra

Last synced: 12 Apr 2025

https://github.com/cesarobedfl/data_structures

c++ data structures algorithms

cpp data-structures templates

Last synced: 05 Apr 2025

https://github.com/likhithkp/js-dsa

Javascript Data Structure and Algorithms

alogorithms data-structures dsa javascript

Last synced: 05 Apr 2025

https://github.com/ehsanshahbazii/useful-university-handouts

๐Ÿ“”Contents, important and practical points and some important formulas have been collected in this repository. Additional codes and explanations and their results are also available.

binary-tree codes data-structures handout handouts java tree

Last synced: 25 Feb 2025

https://github.com/ryanlarge13/algos

Algorithm testing, creation, manipulation & more in every language I can work with

algorithms cpp data-structures js rust

Last synced: 05 Apr 2025

https://github.com/jabellard/hash

Open addressed, double hashed hash table.

algorithm algorithms c data-structure data-structures hash-table

Last synced: 16 Dec 2025

https://github.com/sohnryang/code-archive-cplusplus

My useful algorithms and data structure implementations... in C++

algorithms c-plus-plus data-structures graph-algorithms math-algorithms segment-tree treap

Last synced: 09 Sep 2025

https://github.com/matheussnicacio/quicksort

QuickSort que imprime valores ordenados e invertidos e aleatรณrios em um vetor de 10000 numeros

c data-structures data-structures-and-algorithms estrutura-de-dados

Last synced: 07 May 2025

https://github.com/matheussnicacio/mergesort

Merge sort que imprime valores ordenados e invertidos e aleatรณrios em um vetor de 10000 numeros

c data-structures data-structures-and-algorithms estrutura-de-dados

Last synced: 07 May 2025

https://github.com/matheussnicacio/insertionsort

Insertion sort que imprime valores ordenados e invertidos e aleatรณrios em um vetor de 10000 numeros

c data-structures data-structures-and-algorithms estrutura-de-dados

Last synced: 08 Aug 2025

https://github.com/gustapinto/go_data_structures

A simple collection of abstract data structures implemented in Go

data-structures golang

Last synced: 05 Apr 2025

https://github.com/yevheniidatsenko/goit-algo-fp

๐Ÿ“Š Hometask - Basic Algorithms and Data Structures (Final Project)

algorithms breadth-first-search data-structures deapth-first-search goit goit-algo-fp monte-carlo python

Last synced: 05 Apr 2025

https://github.com/dannykenneth/kangaroo-long-jump

A game based on grade 11 2D kinematics. Your goal is to grow a kangaroo by jumping across obstacles and catching food. This is a project created for grade 11 computer science.

data-structures file-handling python-3

Last synced: 09 Sep 2025

https://github.com/yevheniidatsenko/goit-algo-hw-02

๐Ÿ“Š Hometask - Basic Algorithms and Data Structures (Basic data structures)

algorithms data-structures goit-algo-hw-02 python

Last synced: 23 Jul 2025

https://github.com/yevheniidatsenko/goit-algo-hw-10

๐Ÿ“Š Hometask - Basic Algorithms and Data Structures (Linear Programming and Randomized Algorithms)

algorithms data-structures goit goit-algo-hw-10 linear-programming python randomized-algorithms

Last synced: 05 Apr 2025

https://github.com/prashantsaini1525/alpha-course-2025

Java Programming โ€“ Alpha Course: Notes, code, & challenges from Apna College Alpha Batch 3.0 covering Java fundamentals, data structures, algorithms & competitive programming.

algorithms apna-college competitive-programming data-structures dsa interview-preparation java java-basics programming programming-notes

Last synced: 04 Apr 2025

https://github.com/srodriguezamarillo/milkyroutes

MilkyRoutes es un proyecto en Java que utiliza algoritmos avanzados y estructuras de datos para optimizar rutas en la distribuciรณn de productos lรกcteos. Utiliza un grafo para representar las conexiones y aplica algoritmos de caminos mรญnimos para encontrar las rutas รณptimas.

advanced-java algo avl-tree data-structures dijkstra graph-theory hashing java junit maven optimization route-planning shortest-paths unit-testing

Last synced: 12 Apr 2025

https://github.com/prayash/playgorithms

๐Ÿ“– Algorithms and data structures in JavaScript and Swift 3

algorithms cracking-the-coding-interview data-structures leetcode

Last synced: 12 Apr 2025

https://github.com/arlovy/tpo-ayed2

Trabajo practico obligatorio para la materia Algoritmos y Estructuras de Datos II en UADE

algorithms algoritmos data-structures estructuras-de-datos java

Last synced: 07 May 2025

https://github.com/gireeshbharmshetty/java-lru-cache

A simple LRU (Least Recently Used) Cache implementation in Java using HashMap and Doubly Linked List.

algorithms cache data-structures java lru-cache system-design

Last synced: 07 May 2025

https://github.com/crissyro/-algorithms-and-data-structures-course

algorithms and data structures course in BSTU named after V.G. Shukhov on C

algorithms bstu data-structures discrete-mathematics

Last synced: 07 Jul 2025

https://github.com/kalash9630/algocraft

A web site to help you to track your progress on learning algorithms for cracking interviews.

algorithms bootstrap css data-structures express firebase javascript mern mongo node react

Last synced: 30 Dec 2025

https://github.com/saqibbedar/dsa

Comprehensive repository for mastering DSA in C++

cpp-data-structures cpp-dsa data-structures datastructures-algorithms dsa-cpp dsa-notes

Last synced: 04 Apr 2025

https://github.com/vitorhonna/this-is-cs50

Harvard University's introduction to the intellectual enterprises of computer science and the art of programming. This is CS50.

c computer-science cs50 css data-structures flask harvard harvardcs50x html javascript python scratch sql sqlite

Last synced: 30 Dec 2025

https://github.com/ap-atul/data-structures

Simple and Complex Data Structure problems

data-structures

Last synced: 04 Apr 2025

https://github.com/yunir/timus-problem-solving

ITMO (09.03.04). 4th semester. Data Structures and Algorithms. Problem solving.

algorithms data-structures dsa problem-solving

Last synced: 17 Jun 2025

https://github.com/douglasrizzo/data_structures

A bunch of data structures in C++ I did in order to learn the language

data-structures

Last synced: 04 Apr 2025

https://github.com/bishal7448/leetcode_dsa_100_question_challenge

100-Day LeetCode DSA Challenge This repository tracks my journey of solving one LeetCode problem daily for 100 days. Each entry includes the problem, code solution, and explanation of the approach. Aimed at mastering Data Structures and Algorithms, it showcases consistent progress and learning. ๐Ÿš€

algorithms c data-structures datastructures-algorithms dsa-learning-series java javascript leetcode

Last synced: 12 Apr 2025

https://github.com/matejdluhos/dluhoschessengine

A specialized chess engine focusing on determining the attractiveness of mate-in-3 chess positions.

aesthetic-evaluation algorithms chess-engine csharp data-structures uci-protocol

Last synced: 17 Jun 2025

https://github.com/crvlwanek/cs50

Assignments and projects written for the online Intro to Computer Science course CS50x by Harvard https://cs50.harvard.edu/x/2021/

algorithms arrays c css data-structures flask html javascript memory python sql

Last synced: 30 Dec 2025

https://github.com/omr-ql/data-structures-algorithms

Hello everyone here is my data structures reading files and source code !

c-plus-plus data-structures programming

Last synced: 09 Sep 2025

https://github.com/antunesluis/lib-ed

Repositรณrio dedicado ร s implementaรงรตes das principais estruturas de dados em C.

c data-structures

Last synced: 29 Oct 2025

https://github.com/taxborn/mastermind

A mastermind clone in C#

c-sharp data-structures mastermind

Last synced: 04 Apr 2025

https://github.com/laschuet/cgm

Data structures and functions for computer graphics mathematics

c computer-graphics data-structures mathematics

Last synced: 29 Oct 2025

https://github.com/qsoulior/misc

Collection of implementations written in Go

algorithms data-structures patterns

Last synced: 04 Apr 2025

https://github.com/mahdimashayekhi-ai/data-structures

๐Ÿš€ A collection of Data Structure implementations in Java and Python. ๐Ÿ“š Perfect for learning and practicing fundamental data structures! โšก Work in Progress โ€“ More updates coming soon!

algorithms data-structures dsa-algorithm java

Last synced: 12 Apr 2025

https://github.com/bibhestee/binary_trees

0x1D. C - Binary trees

algorithm binary-trees c data-structures

Last synced: 06 Apr 2025

https://github.com/joie-kim/python_ex

python exercise (์ ํ”„ ํˆฌ ํŒŒ์ด์ฌ!)

basic data-structures learning-by-doing python python3

Last synced: 17 Jun 2025

https://github.com/tharunkumarreddypolu/grind-dsa

A one-stop place for DSA Preparation

algorithms data-structures python

Last synced: 04 Apr 2025

https://github.com/leostera/restruct

๐Ÿ’พ Purely Functional and Compact Data Structures for ReasonML

compact data-structures experiment functional-programming reasonml

Last synced: 04 Apr 2025

https://github.com/izam-mohammed/dsa-practices

In this repository, I document my journey of learning and practicing data structures and algorithms. It's an ongoing effort to deepen my understanding of fundamental concepts, improve problem-solving skills, and prepare for coding interviews or competitive programming.

data-structures dsa dsa-algorithm dsa-practice

Last synced: 17 Jun 2025

https://github.com/augustdanell/datastructures

Here I implement different datastructures. You never know when you need them, and so, to have them on Git ready to be used has helped me to solve many Kattis problems and more :)

data-structures graph-search-algorithms

Last synced: 12 Apr 2025

https://github.com/zayarhtet/bag

Bag Data Type implemented in C++, specialized in Basic Object-Oriented Design.

console-application cpp data-structures design-patterns oop priority-queue

Last synced: 12 Apr 2025

https://github.com/mxssl/binary-search-tree

Binary Search Tree implementation in Go (Golang)

algorithms binary-search-tree data-structures go golang structure

Last synced: 17 Jun 2025

https://github.com/patrickshaw/university-fit2004-labs

FIT2004 Assignment for my lab for week 10. Core component: Detecting if a vertex is a bridge.

algorithms data-structures graph-theory performance practice sorting study theory trees university

Last synced: 03 Apr 2025

https://github.com/anibalalpizar/java-binary-tree

This project implements a binary tree in Java with a graphical user interface for basic operations such as insertion, deletion, and node search. It's a useful tool for understanding and working with data structures in Java

binary-search-tree binary-tree data-structures java

Last synced: 29 Oct 2025

https://github.com/venkataramanarao5/templated-data-structures-implemented-in-cpp

A repository containing cpp programs implementing common data structures using templates

data-structures heap linked-list queue stack template

Last synced: 17 Jun 2025

https://github.com/joshjarabek7/delivery-truck-routing

A project based off of the multiple vehicle routing problem with time windows and constraints.

algorithms data-structures hashtable-chaining multiple-vehicle-routing-problem nearest-neighbor-search python travelling-salesman-problem

Last synced: 28 Mar 2025

https://github.com/navpreetdevpuri/trie-js

Trie data structure implementation in javascript

data-structures javascript trie trie-data-structure typescript

Last synced: 28 Mar 2025

https://github.com/ariellourenco/algorithms

Algorithms, 4th edition textbook code and libraries.

algorithms data-structures

Last synced: 03 Apr 2025

https://github.com/vshelke/algorithm

C++ implementation of Algorithms and Data Structures.

algorithm-challenges data-structures

Last synced: 03 Apr 2025

https://github.com/rdch106/stack-evaluator

Evaluate arithmetic expression using stack evaluator

data-structures math

Last synced: 29 Oct 2025

https://github.com/hamidurrk/python-practice

Contains Python code for various assignments and leetcode problems related to data structures and algorithms.

binary-search data-generators data-structures dna-sequence-operation graph-algorithms leetcode-python queue stack tree-search

Last synced: 28 Mar 2025

https://github.com/swapnilsachan03/codeforces

Solutions to all the problems that I solve on Codeforces.

algorithms codeforces data-structures

Last synced: 03 Apr 2025

https://github.com/2gpb/algorithms

This repository contains implementations of various algorithms and data structures in Swift for learning and practical use.

algorithms data-structures swift

Last synced: 03 Apr 2025

https://github.com/stephenwanjala/priorityquejavaquiz

Priority ques in java practical example

data-structures java

Last synced: 17 Jun 2025

https://github.com/nelsonbn/algorithms-data-structures-queue

Algorithms and Data Structures - Queue

algorithms data-structures queue

Last synced: 10 Sep 2025

https://github.com/omkar-savoikar/employee-project-management-system

CSC105 Lab Project. A C Application to manage employee leaves and salary. It uses data structures such as LinkedLists for storing the data.

c-programming c-programming-language data-structures linked-list makefile

Last synced: 11 Sep 2025