All Projects → bartobri → Data Structures C

bartobri / Data Structures C

Licence: mit
A collection of algorithms for data structure manipulation in C

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Data Structures C

Awesome Ai Ml Dl
Awesome Artificial Intelligence, Machine Learning and Deep Learning as we learn it. Study notes and a curated list of awesome resources of such topics.
Stars: ✭ 831 (+1308.47%)
Mutual labels:  algorithms, data
Stats
A well tested and comprehensive Golang statistics library package with no dependencies.
Stars: ✭ 2,196 (+3622.03%)
Mutual labels:  algorithms, data
Top Pypi Packages
A regular dump of the most-downloaded packages from PyPI
Stars: ✭ 53 (-10.17%)
Mutual labels:  data
Name Db
🚀 A multilingual collection of names from around the world
Stars: ✭ 57 (-3.39%)
Mutual labels:  data
Excelreaders.jl
ExcelReaders is a package that provides functionality to read Excel files.
Stars: ✭ 55 (-6.78%)
Mutual labels:  data
Lc Java
Clean Leetcode solutions in Java
Stars: ✭ 54 (-8.47%)
Mutual labels:  algorithms
Pldp
Public Life Data Protocol
Stars: ✭ 56 (-5.08%)
Mutual labels:  data
Geeksforgeeks Dsa 2
This repository contains all the assignments and practice questions solved during the Data Structures and Algorithms course in C++ taught by the Geeks For Geeks team.
Stars: ✭ 53 (-10.17%)
Mutual labels:  data
Datacomparer
dataCompareR is an R package that allows users to compare two datasets and view a report on the similarities and differences.
Stars: ✭ 58 (-1.69%)
Mutual labels:  data
Reinforcement Learning
Implementation of Reinforcement Learning algorithms in Python, based on Sutton's & Barto's Book (Ed. 2)
Stars: ✭ 55 (-6.78%)
Mutual labels:  algorithms
Leetcode Python
Leetcode Python Solution and Explanation. Also a Guide to Prepare for Software Engineer Interview.
Stars: ✭ 1,088 (+1744.07%)
Mutual labels:  algorithms
Pycm
Multi-class confusion matrix library in Python
Stars: ✭ 1,076 (+1723.73%)
Mutual labels:  data
Dart Algorithms
Data structures and algorithms with Dart. Dart版本的数据结构与算法.
Stars: ✭ 53 (-10.17%)
Mutual labels:  algorithms
Javascript
Implementation of All ▲lgorithms in Javascript Programming Language
Stars: ✭ 56 (-5.08%)
Mutual labels:  algorithms
Algorithm Guide
BITLIU`s Tutorials of Algorithm and Data Structure🚀🚀🚀
Stars: ✭ 1,068 (+1710.17%)
Mutual labels:  algorithms
Openrefine
OpenRefine is a free, open source power tool for working with messy data and improving it
Stars: ✭ 8,531 (+14359.32%)
Mutual labels:  data
Competitive Programming
Repository of all my submissions to some competitive programming website (Online Judges), as well as, the implementation of some data structures and algorithms.
Stars: ✭ 53 (-10.17%)
Mutual labels:  algorithms
Tablam
The practical relational programing language for data-oriented applications
Stars: ✭ 55 (-6.78%)
Mutual labels:  data
Rtimes
R wrapper for NYTimes API for government data - ABANDONED
Stars: ✭ 55 (-6.78%)
Mutual labels:  data
Muster
A universal data layer for components and services
Stars: ✭ 59 (+0%)
Mutual labels:  data

Data Structures in C

This project contains implementations for many different types of data structures commonly taught in computer science, and many of which are commonly used in real-world production environments. These basic data structures represent small building blocks upon which large data-processing applications can be built and run efficiently.

This project was created as a reference for myself, as I learned about these data structures and algorithms. Lately it seems to be getting visibility from others. As such, visitors should understand a few things.

  1. The code for these data structures contains very little error checking. This is intentional, as to reduce the amount of code clutter and focus solely on the core components of the algorithms. In a production environment, error checking is likely needed for most of these examples.

  2. The code examples generally lacks consistent naming conventions. Everything from the names of files, to names of functions, to names of variables, can differ from one example to the next. This is a result of using multiple resources when researching these data structures. I plan to go through and try to standardize everything.

  3. Some algorithms have a README file with a brief description, but most don't. I plan to try to add more documentation to help visitors decide which data structure and algorithm is most appropriate for their application.

License

This program is free software; you can redistribute it and/or modify it under the terms of the MIT License (MIT). See LICENSE for more details.

Tips

Tips are always appreciated!

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