mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-16 21:52:38 +00:00
[PR #434] [CLOSED] Adding Queue data structure library #822
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/TheAlgorithms/C/pull/434
Author: @shubhamdp
Created: 10/20/2019
Status: ❌ Closed
Base:
master← Head:master📝 Commits (10+)
a672dfcAdding Queue data structure library6470f03fixed documentationscf2a17eenable autobrief in documentation17c5523fix lgtm error20bab2afix lgtm error - lexicographic_permutations619620dfix LGTM error - c_atoi6710df7fix LGTM - limit malloc range8914128Merge pull request #551 from kvedala/docs/fix74c091bless code9ca22bcfix errors and docs in cantor set📊 Changes
40 files changed (+1031 additions, -362 deletions)
View changed files
📝
CMakeLists.txt(+2 -1)📝
README.md(+28 -12)📝
conversions/c_atoi_str_to_integer.c(+8 -4)📝
data_structures/binary_trees/threaded_binary_trees.c(+2 -2)➕
data_structures/queue/Makefile(+26 -0)➕
data_structures/queue/queue.c(+134 -0)➕
data_structures/queue/queue.h(+19 -0)➕
data_structures/queue/queue_test.c(+59 -0)➕
data_structures/queue/readme(+3 -0)📝
machine_learning/adaline_learning.c(+53 -33)📝
machine_learning/kohonen_som_topology.c(+42 -32)📝
machine_learning/kohonen_som_trace.c(+38 -27)📝
misc/cantor_set.c(+71 -41)📝
misc/cartesian_to_polar.c(+1 -1)📝
misc/factorial_large_number.c(+5 -5)📝
misc/fibonacci_fast.c(+14 -10)📝
misc/lexicographic_permutations.c(+5 -0)📝
misc/sudoku_solver.c(+238 -61)📝
misc/tower_of_hanoi.c(+1 -5)📝
numerical_methods/durand_kerner_roots.c(+9 -9)...and 20 more files
📄 Description
This is a library for Queue data structure.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.