mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-07-09 02:26:34 +00:00
[PR #1545] Refactor linked list to dynamic array-based list #2151
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/1545
Author: @Lk-ux
Created: 12/23/2025
Status: 🔄 Open
Base:
master← Head:master📝 Commits (2)
cfa6cbeRefactor linked list to dynamic array-based list41cf6efApply clang-tidy and clang-format fixes📊 Changes
4 files changed (+252 additions, -93 deletions)
View changed files
📝
data_structures/list/Makefile(+9 -4)📝
data_structures/list/list.c(+92 -48)📝
data_structures/list/list.h(+74 -18)📝
data_structures/list/main.c(+77 -23)📄 Description
Description of Change
References
Closes https://github.com/TheAlgorithms/C/issues/956
Checklist
Notes:
Refactors the existing linked-list implementation into a dynamic
array-based list (Python-like behavior) with comprehensive self-tests
and Doxygen documentation.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.