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/cdellacqua/reactive-circular-queue.js

A circular queue implementation with reactive features and Symbol.iterator support.

data-structures

Last synced: 09 Sep 2025

https://github.com/jseg380/university

Repository with projects made for University subjects

ai computer-science cpp cs-degree data-structures java oop ruby

Last synced: 20 Mar 2025

https://github.com/rawanfarakhnah/leetcode-solutions

A collection of my LeetCode solutions in Python and JavaScript, categorized by difficulty (Easy, Medium, Hard). Focused on clean code, efficient solutions, and improving problem-solving skills.

algorithms data-structures javascript leetcode problem-solving python

Last synced: 27 Mar 2025

https://github.com/dansalahi/query-builder-experiment

Customized Query Builder for creating Rules and Groups

data data-structures jsonlogic query-builder reactjs typescript validation

Last synced: 20 Mar 2025

https://github.com/trilhaaprendizagem/trilhafilapilha

Projeto Java utilizando IntelliJ IDEA para implementação de estruturas de dados como fila e pilha. Este projeto inclui exemplos práticos de uso dessas estruturas, bem como uma classe principal para testá-las em cenários reais de aplicação.

data-structures example-code intellij-idea java programing queue stack testing

Last synced: 17 Feb 2026

https://github.com/crazymanish/dsa-reusable

Swift package for DataStructure&Algorithms reusability

algo data-structures swift

Last synced: 20 Mar 2025

https://github.com/kockarevicivan/dart-snippets

Set of Dart snippets: algorithms, data structures, graph searches etc, created for demonstration purposes.

dart data-structures graph-traversal snippets sorting-algorithms

Last synced: 27 Mar 2025

https://github.com/kevwjin/multiple-listing-service

View 2020 San Jose Housing data (e.g. address, price, beds, etc.) by sorting by price or listing houses within a given price range. View the efficiency and organization of data structures used.

data-structures

Last synced: 27 Mar 2025

https://github.com/arriqaaq/hash

Hash is an in-memory Redis like hash datastructure

data-structures golang redis

Last synced: 20 Mar 2025

https://github.com/bloiseleo/codecrossfit

Training some data structures and algorithms implementations

algorithms data-structures

Last synced: 21 Mar 2025

https://github.com/d-naveenz/data-structures-pack

A Python package that integrates functional-rich data structures that are most useful for programming.

data-structures package python serialization

Last synced: 03 Apr 2025

https://github.com/yapeansa/lista_encadeada

Estudando a estrutura de listas encadeadas com linguagem C.

c data-structures linked-list

Last synced: 28 Mar 2025

https://github.com/ananyachibber21/data_structures_and_algorithms

Data Structures and Algorithms in Java, Python

algorithms data-structures java programming python

Last synced: 03 Apr 2025

https://github.com/tony/cs

Self-study for computer science, data structures and algorithms, etc.

algorithms computer-science data-structures self-study

Last synced: 20 Jan 2026

https://github.com/aryank1511/python-battlesnake

Battlesnake is multiplayer game where your code is the controller! All you need is a web server that responds to the Battlesnake API.

algorithms artificial-intelligence data-structures python3

Last synced: 07 Sep 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/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/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/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/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/tharunkumarreddypolu/grind-dsa

A one-stop place for DSA Preparation

algorithms data-structures python

Last synced: 04 Apr 2025

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

Simple and Complex Data Structure problems

data-structures

Last synced: 04 Apr 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/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/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/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/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/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/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/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/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/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/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/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/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/stephenwanjala/priorityquejavaquiz

Priority ques in java practical example

data-structures java

Last synced: 17 Jun 2025

https://github.com/xorz57/trie

Trie written in C++14

cpp data-structures datastructures trie

Last synced: 13 Jul 2025

https://github.com/momen-alshouha/data-structure-circular-singly-linked-list

This repository contains C++ implementation of a circular singly linked list using object-oriented programming principles. It includes classes for nodes, iterators, and the linked list itself, providing essential functionalities such as insertion, deletion, traversal, and more.

circular-singly-linked-list classes-and-objects cpp data-structures linked-list oop-in-cpp oop-principles

Last synced: 11 Jul 2025

https://github.com/tpdlshdmlrkfmcla/Data-Structure

데이터구조 학습 정리입니다.

data-structure data-structures

Last synced: 20 Jun 2025

https://github.com/alex-cultrera/custom-implementation-of-arraylist

Assignment completed in the Coders Campus bootcamp where I was tasked with coding my own implementation of the ArrayList data structure.

algorithms arraylist arrays data-structures interfaces java lists

Last synced: 07 Jul 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/dook97/cdict

A generic ordered dictionary C library using AVL trees

data-structures dictionary tree

Last synced: 22 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/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/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/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/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/shiveshdeogharia/dsa-playground

Interactive C++ Playground for mastering DSA with modular design and unit tests

algorithms cmake competitive-programming cpp20 data-structures data-structures-and-algorithms dsa googletest

Last synced: 17 Jul 2025

https://github.com/ajgthb2002/photo-gallery--dsa-project

Implementation of a photo gallery along with a few image editing tools, using different data structures in c++

ascii-art cpp data-structures doubly-circular-linked-list matrices object-oriented-programming

Last synced: 17 Jul 2025

https://github.com/anujdhillxn/cpptries

Serializer-Deserializer for Tries in CPP

cpp data-structures parsing

Last synced: 18 Jul 2025

https://github.com/thiagosilvaantenor/grafoslista_e_matriz

Exercicios de construção de Grafos com lista e matriz de adjacencia, da disciplina de estrutura de dados, do curso de análise e desenvolvimento de sistemas da FATEC Zona Leste

arrays college-project data-structures estrutura-de-dados fatec-zona-leste graph linked-list lista-encadeada matrices

Last synced: 19 Jul 2025

https://github.com/bethanyuo/solidity-contracts

Smart Contracts and Solidity using the Remix IDE.

data-structures remix remix-ide smart-contracts solidity

Last synced: 19 Jul 2025

https://github.com/jfrimmel/talks-and-sources

This repository contains a list of talks and papers, that I find insightful and worth sharing

c concurrency conference conference-talk cplusplus cpp data-oriented data-structures list optimization papers rust security simd software-arch software-design talk talks video videos

Last synced: 19 Jul 2025

https://github.com/arshad-khalid/patient-queue-management-system

A queue management system for patients in a clinic

algorithms c data-structures queue-management

Last synced: 19 Jul 2025

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

Algorithms and data structures in Typescript

algorithms data-structures typescript

Last synced: 04 Apr 2025

https://github.com/yousryessam/competitive-programming-library

All the essentials for competitive programmers in one place. This repository contains core code snippets , Data Structure and Algorithms commonly used in competitive programming

algorithms competitive-programming cpp data-structures icpc problem-solving reference

Last synced: 03 Mar 2025

https://github.com/luissantiagodev/data-structures

Teaching data structures for some school classes

data-structures java

Last synced: 03 Mar 2025

https://github.com/129ashish/ds_c_list

in this repository here I have discussed about the different type of operations can be performed on Linked List.

c-language data-structures linked-llist

Last synced: 28 Mar 2025

https://github.com/rameshaditya/dynamic-hybrid-data-grid

Facilitates faster read-and-write of large ordered collections of data.

algorithms data data-structures storage

Last synced: 23 Feb 2025

https://github.com/ali7haider/apto_distribution_system_dsa_project

A system having multiple role user(Admin,Manager,Customer,Sale Agent). A map is also integrated in the app which calcualte the shortest distance two points.

data-structures dsa dsa-algorithm filesystem linked-list pyqt5 python queue stack

Last synced: 23 Feb 2025

https://github.com/mustafahakkoz/network_analysis

Centrality calculations of a graph in C language

centrality-calculations data-structures social-graph

Last synced: 30 Oct 2025

https://github.com/remonhasan/cp-code-library

algorithms & data structures that i learned for CP 💡

cpp data-structures number-theory prefix-notation stl-algorithms

Last synced: 23 Feb 2025

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

Data Structures and Algorithms for JavaScript

algorithms data-structures dsa javascript

Last synced: 30 Oct 2025

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

Just a repo that contains all my data structures and algorithms practice.

algorithms algorithms-and-data-structures algorithms-datastructures data-structures

Last synced: 16 Oct 2025

https://github.com/abdo-essam/queue

Data Structure Course

data-structures

Last synced: 01 Mar 2026

https://github.com/captainabernathy/cpp_programming_principles

Programming: Principles and Practice Using C++

algorithm cpp data-structures educational tutorial

Last synced: 12 May 2025

https://github.com/ryansakurai/data-structure-pack

Pack of data structures implemented in C

c data-structures deque heap list ordered-list queue stack

Last synced: 21 Mar 2025

https://github.com/kurayami07734/dsa-cpp

Data Structures and Algorithms in C++

algorithms cpp data-structures

Last synced: 03 Apr 2025

https://github.com/abdellahbellakrim/push_swap-42

Implement a sorting algorithm in C using a minimal number of instructions and utilizing two stacks.

algorithms c data-structures low-level-programming sorting-algorithms stack

Last synced: 24 Jun 2025

https://github.com/basemax/circlequeuego

The Circle Queue implementation in Go. The circle queue is a special version of a queue where the last element of the queue is connected to the first element of the queue forming a circle. The operations are performed based on FIFO (First In First Out) principle. It is also called 'Ring Buffer'.

circle-queue data-structure data-structure-and-algorithm data-structures data-structures-and-algorithms go golang queue

Last synced: 24 Jun 2025

https://github.com/andirsun/datastructures-poo-algorithms

My Own data structures implementations in javascript

data-structures javascript

Last synced: 23 Feb 2025

https://github.com/lucashnss/if672-algorithms-lists

Lists of algorithms in the course algorithms and data structures (IF672) in CIN-UFPE. Along this course I've been introduced to various efficient and creative ways to resolve common problems in computer science like ordering and learning data structures to do that.

algorithms cpp data-structures

Last synced: 23 Feb 2025

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

Data structure and algorithm implementations and visualizations in React.

algorthims ci-cd data-structures framer-motion github-actions react typrescript unit-testing

Last synced: 29 Apr 2025

https://github.com/dnut/json-match-finder

Python application used to match listings against openings via authenticated JSON API access.

data data-structures data-wrangling database json-api python-application python-modules

Last synced: 28 Mar 2025

https://github.com/theoliverlear/java-jump-start

Java Jump Start is a comprehensive guide designed to help you quickly learn the amazing abilities of Java. This guide will provide you will all the essentials in syntax as well as the unique features of Java.

data-structures education functional-programming guide java learning oop quickstart

Last synced: 24 Jun 2025

https://github.com/caleb-mantey/dsa

Data structures and algorithms in javascript. Useful resource to get a basic introduction to linear and non-linear data structures concepts.

data-structures javascript js linear-data-structures non-linear-data-structures

Last synced: 29 Mar 2025

https://github.com/teewrath/coding-problems

A repository where I keep all the questions I encounter in my coding journey, through contests and problem solving.

algorithms codechef-solutions codeforces-solutions competitive-programming cpp dart data-structures dsa inform7 java javascript leetcode-solutions striver-a2z-sheet

Last synced: 04 Apr 2025