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/dragunwf/learninglab

📚 A personal repository where I document and store all my code, exercises, and projects while learning new technologies, frameworks, and programming concepts. This serves as my digital sandbox for experimentation, skill-building, and continuous learning.

algorithms data-structures design-patterns django react react-native

Last synced: 21 Jun 2025

https://github.com/juliolmuller/binary-tree-calculator

Simple application to apply knowledge acquired studying Binary Trees data structure.

binary-tree c calculator data-structures

Last synced: 04 Mar 2025

https://github.com/kamarbandi/php_fundamental

📚 Fundamental Data Structures and Algorithms. This repository is a collection of fundamental data structures, algorithms, and essential programming concepts. It's aimed at providing clear and concise implementations of key topics with explanations and examples in PHP.

algorithms bfs binary-search binary-search-trees binary-trees bubble-sort data-structures dfs graphs hash-tables linear-search linked-list merge-sort php quick-sort searching-algorithms sorting-algorithms stacks-and-queues trees

Last synced: 29 Oct 2025

https://github.com/mbrav/practicum_algorithms

A collection of Python files and Jupyter Notebooks with algorithms from Yandex Practicum course

algorithms data-structures practicum python yandex

Last synced: 21 Jun 2025

https://github.com/dudubraga/unicap-cc-programacao-e-estruturas-de-dados

Cadeiras - Programação Estruturada + Estruturas de Dados I e II + Grafos

algorithms c data-structures java university-course

Last synced: 29 Oct 2025

https://github.com/dook97/cdict

A generic ordered dictionary C library using AVL trees

data-structures dictionary tree

Last synced: 22 Jun 2025

https://github.com/inforkgodara/bubble-sort

A single class implementation of bubble sort

bubble-sort data-structures inforkgodara java

Last synced: 05 Sep 2025

https://github.com/sohamkayal4103/graphs

This repository covering important concepts related to graphs.

algorithms algorithms-and-data-structures data-structures graph graph-algorithms

Last synced: 22 Jun 2025

https://github.com/youseftareq33/java_datastructuer_2_equationfilebrowserinterface-stack-v1

This project check the equation(infix expressions) if it balanced or invalid, then infix expressions, then convert it to postfix.

data-structures java javafx

Last synced: 16 Jun 2025

https://github.com/inforkgodara/binary-search

A single class implementation of binary search

binarysearch data-structures inforkgodara java java-8

Last synced: 04 Apr 2025

https://github.com/andreiavrammsd/static_vector.rs

A no-std, stack-allocated vector with fixed capacity and dynamic length

data-structures no-std rust static-vector vector

Last synced: 22 Jun 2025

https://github.com/stefanasandei/dsa

Data Structures & Algorithms implemented in C++

algorithms cmake cpp data-structures dsa gtest

Last synced: 11 Aug 2025

https://github.com/leandrolimadeveloper/data_structures_and_algorithms

Algorithms and important things covered in the book Grokking Algorithms: An illustrated guide for programmers and other curious people (in Portuguese, Entendendo Algoritmos: Um Guia Ilustrado Para Programadores e Outros Curiosos – the version that I have) written by Aditya Y. Bhargava.

algorithms data-structures javascript python

Last synced: 25 Oct 2025

https://github.com/matheusgrodrigues/estrutura-de-dados-e-algoritmos-com-javascript

Escreva um código JavaScript complexo e eficaz usando a mais recente ECMASCRIPT.

algorithms data-structures jest tdd typescript

Last synced: 27 Mar 2025

https://github.com/avijeetpandey/ps-java

Code snippets for coursework to learn java

algorithms data-structures java

Last synced: 20 Mar 2025

https://github.com/aruizeac/facebook-interview-go

Meta (Facebook) coding interview questions with solutions written in the Go programming language.

algorithms coding-interviews data-structures facebook go golang meta

Last synced: 22 Jun 2025

https://github.com/aadewunmi/songsplaylist

A java-console-based program that mainpulates a playlist for songs e.g. add song, remove song etc.

algorithms arraylist data-structures java-8 linked-list

Last synced: 20 Mar 2025

https://github.com/antonio-f/binsearch

Binary Search algorithm (iterative and recursive versions) in C

binary-search c clang data-structures fundamentals

Last synced: 06 Jul 2025

https://github.com/rakibul263/data-structure

Use this C++ GitHub repository to explore the world of fundamental data structures. Implementations of arrays, linked lists, stacks, queues, trees, and more that are tidy and modular. Improve your knowledge of algorithms, learn to program, and find effective solutions to issues. With C++

data-structures

Last synced: 23 Jun 2025

https://github.com/victornpb/weakmatrix

A bi-dimensional WeakMap object implementation, for storing weak references to data associated with 2 keys. map[key][key] = value

2d-map bi-dimensional data-structures javascript matrix weak-map weak-table weakmap

Last synced: 03 Apr 2025

https://github.com/bormoge/leetcode

My leetcode answers.

algorithms data-structures java leetcode

Last synced: 14 Jul 2025

https://github.com/firmanmm/go-smc

Simple Message Codec Golang Implementation

data-structures encoder-decoder golang message message-codec

Last synced: 26 Mar 2025

https://github.com/chihebabiza/cpp-service-queue-simulator

A project that simulates a real-world queueing system for managing service lines. It allows issuing tickets, serving clients in order, and viewing the queue in both left-to-right and right-to-left directions.

cpp data-structures programming-advices queue ticketing-system

Last synced: 23 Jun 2025

https://github.com/chihebabiza/my-cpp-stack

This project implements a simple templated stack in C++ using a doubly linked list. It supports basic operations like push, pop, top, and size, allowing storage of any data type. The goal is to demonstrate how a stack can be built manually using dynamic memory and linked structures.

cpp data-structures oop stack

Last synced: 23 Jun 2025

https://github.com/mahiethan/detect-optimise-passes-for-data-structs

This project focuses on creating compiler passes in LLVM, that are able to detect and optimise specific data structures, such as Array-of-Structures (AoS) and Structure-of-Arrays (SoA). This is the source code for my CS351 Third Year Project module, where I have achieved a first class mark of 72%.

c compiler-passes cpp data-structures detection llvm llvm-ir llvm-pass optimisations

Last synced: 23 Jun 2025

https://github.com/welli7ngton/c-data-structures

Implementation of data-structures from basic to advanced in C and testing them all, all the codes are based in this playlist: https://youtu.be/bryesHll0vY?si=W-r62UHfNyX0ryHC

algorithms c c-algorithms c-data-structures-and-algorithms data-structures tests

Last synced: 09 Jul 2025

https://github.com/janithscript/rabin-karp-algorithm-java

Rabin-Karp (RK) algorithm is based on the concept of hashing. This algorithm was authored by Rabin and Karp in 1987 and is an effective way of finding patterns from a paragraph.

data-structures java rabin-karp-algorithm sorting-algorithms

Last synced: 22 Mar 2025

https://github.com/victoandrad/stack

This repository aims to implement a stack data structure.

data-structures stack-structure

Last synced: 12 Jul 2025

https://github.com/mrizaln/circbuf

A simple C++ circular buffer written in C++20

circular-buffer cpp data-structures

Last synced: 19 Mar 2025

https://github.com/mrizaln/sync-cpp

Synchronized object wrapper for C++20

cpp data-structures synchronization

Last synced: 19 Mar 2025

https://github.com/mukhammadrizooff/budget-app

The Pay Modus App is going to be helpful to track your expenses and transactions.

css data-structures html javascript postgresql rspec-rails ruby ruby-on-rails

Last synced: 02 Apr 2026

https://github.com/shawonbarman/uri-online-judge-data-structures-and-libraries-level-problem-solution-in-python

I have solved every problem in my own way. My Python 3 solutions https://www.beecrowd.com.br/judge/en/problems/index/4

data-structures python3

Last synced: 19 Mar 2025

https://github.com/leonardpepa/intro-to-data-structures

A Data structures class that i took in unirversity

c college data-structures dsa dsa-algorithm list queue stack tree

Last synced: 10 Sep 2025

https://github.com/csgn/fall-data-structures

Fall 2020, Data Structures

data-structures fall2020

Last synced: 13 Jul 2025

https://github.com/ki-seki/algorithm

原创的 C/C++ 数据结构与算法模板或者笔记,主要是给自己备考用的

algorithm c cpp data-structures

Last synced: 13 Jul 2025

https://github.com/bodiali/hash-map

Hash map, also known as a hash table, is a data structure used to store key-value pairs.

data-structures

Last synced: 27 Mar 2025

https://github.com/vlmarkov/test-tasks

A repository where is placed test programming tasks.

algorithm c cpp data-structures multithreading

Last synced: 09 Sep 2025

https://github.com/group4layers/flextable

FlexTable (flextablejs) is a JavaScript library that provides a class with a simple API to work with tables (headers, rows, columns, sort, format) facilitating the analysis and data manipulation.

csv csv-types data-manipulation data-processing data-structures flextable formatter javascript nodejs sorter table tableview

Last synced: 14 Jul 2025

https://github.com/lazzerex/rabin-karp-algorithm

Rabin-Karp Algorithm for Pattern Searching in Java

algorithms data-structures

Last synced: 02 Jul 2025

https://github.com/kedaroo/dsa-practice-js

Practice of DSA implementation (so as not to get rusty 😛)

data-structures javascript

Last synced: 14 Jul 2025

https://github.com/tim-hub/avl_bst_tree

an AVL tree

data-structures

Last synced: 17 Mar 2025

https://github.com/chandrikabijore/dsa-bootcamp-java

This repository consists of the code samples, assignments, and notes for the Java data structures & algorithms + interview preparation bootcamp.

algorithms competitive-programming data-structures interview-preparation java leetcode leetcode-java leetcode-solutions math

Last synced: 27 Mar 2025

https://github.com/mxagar/python_software_engineering

This repository contains a guide of Python tailored to professional Software Engineering, covering aspects like Data Structures, Algorithms, Design Patterns & Co.

algorithms data-structures design-patterns python software-architecture software-engineering

Last synced: 14 Jul 2025

https://github.com/infinity-boi/dsa-codes

Popular Competitive Programming Questions essential for interview preparation

algorithms competitive-programming data-structures leetcode spoj

Last synced: 12 Dec 2025

https://github.com/akhaled01/cs214

All the data structure implementations for the CS214 Course

algorithms data-structures java

Last synced: 29 Dec 2025

https://github.com/anas436/data-structure-and-algorithm

Here, work has been done on the basic operations of Data Structure and Algorithm. If these operations are practiced, your basic skills will be strong. Here is used the C and Python programming language. Also, the PyCharm IDE and CodeBlocks are used as compilers.

algorithms c codeblocks data-structures pycharm python

Last synced: 27 Mar 2025

https://github.com/seralaci/csharp-algorithm-challenges

Algorithms, data structures and coding challenges in C#

algorithms c-sharp challenges csharp data-structures dotnet leetcode

Last synced: 21 Aug 2025

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

A crash course on data-structures and algorithms using C/C++ and Python.

algorithms c c-plus-plus data-structures embedded-systems

Last synced: 15 Jul 2025

https://github.com/rfieve/data-structures-converters

A TypeScript library to convert binary-search-trees, doubly linked lists of any types to one another.

binary-search-tree data-structures doubly-linked-list typescript utility-library

Last synced: 27 Mar 2025

https://github.com/ngljcb/px-m-ary-tree

Made a m-ary tree in java as final project for "Algoritmi e Strutture Dati" course.

algorithms-and-data-structures data-structures java m-ary tree-structure university-project

Last synced: 15 Jul 2025

https://github.com/rfieve/doubly-linked-list-navigator

A TypeScript library extending the doubly-linked-list with navigation

data-structures double-linked-list typescript utility-library

Last synced: 27 Mar 2025

https://github.com/ndeta100/algorithms_in_javascript

Algorithms and data structures in JavaScript with implementations and small text explanations

algorithm algorithms computer-science data-structures

Last synced: 02 Aug 2025

https://github.com/dacmarcell/comparacao-bubble-quick-sort

Uma comparação do tempo de execução de um algoritmo de Bubble Sort e outro com Quick Sort

bubble-sort data-structures javascript quick-sort

Last synced: 15 Jul 2025

https://github.com/rileysuomi/datastructures-and-algos

Collection of data structure implementations, algorithms, and leet-code solutions

algorithms cpp data-structures leetcode python

Last synced: 17 Mar 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/grahamstrickland/clrs

Exercises and C++20 implementations of the algorithms from "Introduction to Algorithms" (3e) - Cormen, Leiserson, Rivest, & Stein

algorithms boost clrs cpp20 data-structures

Last synced: 15 Jul 2025

https://github.com/ragibasif/merlin

A modern extension to the C Standard Library

algorithms c data-structures macros magic stdlib utility-library wizardry

Last synced: 16 Jul 2025

https://github.com/suba-suresh/advance-js-arrow-function-

Arrow functions allows to write more concise JavaScript functions, by using the => "fat arrow" syntax

arrow-functions data-structures javascript js

Last synced: 17 Jun 2025

https://github.com/otmanedaoudi/datastructures

Data structures practice

data-structures

Last synced: 16 Jul 2025

https://github.com/matteo-campana/princeton-practice-programming-assignment

Algorithms, Part I Princeton University, programming assignements and interview questions

algotithms coursera data-structures data-structures-and-algorithms java princeton princeton-algs4 princeton-coursera

Last synced: 03 Apr 2025

https://github.com/harismuneer/Queue-using-Stacks

🎁 A complete C++ implementation of Queue using two Stacks.

data-structures double-stacks free-to-use queue stack stack-queue two-stacks

Last synced: 16 Jul 2025

https://github.com/mrktsm/huffman-encoder

A simple file compression tool implementing Huffman encoding for efficient file size reduction.

algorithms data-structures encoder java junit junit-test treemap trees

Last synced: 18 Mar 2025

https://github.com/tahaaa22/problem-solving

This collection contains my approaches, thought processes, and final solutions to coding challenges from popular platforms such as LeetCode, HackerRank, and CodeForces.

cpp data-structures problem-solving sql

Last synced: 10 Sep 2025

https://github.com/vantamnguyen/dsa

Data Structures and Algorithms

algorithms data-structures

Last synced: 05 May 2025

https://github.com/dacmarcell/xor-impl

Implementação de algoritmo de criptografia utilizando operador XOR

algorithms data-structures typescript xor

Last synced: 16 Jul 2025

https://github.com/sciencegenome/datastructure-algorithms

my approach of solving the leetcode, interviewcode and other questions

data-structures python-3

Last synced: 16 Jun 2025

https://github.com/antonashraf/dsa

Implementing the major Data structures & Algorithms using C/C++ which helping freshers who wish to join the programming stream to start with!

algorithms data-structures linked-list searching-algorithms sorting stack

Last synced: 18 Mar 2025

https://github.com/ahmed-safa/neet_leet

solves according to neet roadmaps

algorithms cpp data-structures leetcode problem-solving

Last synced: 03 Jul 2025

https://github.com/abdellahbellakrim/gnl42

C project that reads a line from a file descriptor

algorithms c data-structures header-files makefile static-variables

Last synced: 03 Mar 2025

https://github.com/abdellahbellakrim/ft_printf

Recode the printf() function from the C standard library

algorithms c data-structures file-io low-level-programming makefile variadic-functions

Last synced: 03 Mar 2025

https://github.com/ranimeshehata/implementing-sorting-techniques

A Java program implementing 3 different sorting techniques.

data-structures java junit-test sorting-algorithms

Last synced: 03 Apr 2025

https://github.com/shenoy-anurag/algo-runner

A python package with tools to let you try coding problems and check your code against your own test cases.

algorithms data-structures helper runner

Last synced: 05 May 2025

https://github.com/muhammadsalmanaziz/dsa-in-c-plus-plus

This repository consist of Practice questions and some leet code problems and DSA in C++ language

algorithms array cpp data-structures dsa dsa-practice

Last synced: 16 Jul 2025

https://github.com/amr-yasser226/ambulance-management-system-dsa

A centralized system for managing ambulance services across multiple hospitals, utilizing data structures to optimize ambulance allocation and improve emergency response times.

algorithms ambulance-management-system course-project cpp data-structures emergency-services hospital-simulation optimization patient-dispatch priority-queue queue real-time-simulation resource-allocation simulation stack systems-design unit-testing zewail-city

Last synced: 17 Jul 2025

https://github.com/narayan954/dsa-problems

leetcode, geeksforgeeks, usaco, codeforces, etc question's solutions

algorithms data-structures

Last synced: 24 Dec 2025