[PR #527] [MERGED] hash set data structure #945

Open
opened 2026-01-29 15:16:24 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/527
Author: @wesllhey
Created: 5/9/2020
Status: Merged
Merged: 5/9/2020
Merged by: @wesllhey

Base: masterHead: master


📝 Commits (1)

📊 Changes

4 files changed (+178 additions, -0 deletions)

View changed files

data_structures/hash_set/Makefile (+13 -0)
data_structures/hash_set/hash_set.c (+92 -0)
data_structures/hash_set/hash_set.h (+31 -0)
data_structures/hash_set/main.c (+42 -0)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheAlgorithms/C/pull/527 **Author:** [@wesllhey](https://github.com/wesllhey) **Created:** 5/9/2020 **Status:** ✅ Merged **Merged:** 5/9/2020 **Merged by:** [@wesllhey](https://github.com/wesllhey) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (1) - [`0db64d5`](https://github.com/TheAlgorithms/C/commit/0db64d5db58afb7aecf5d47a4c9228a0f5d70c07) hash set data structure ### 📊 Changes **4 files changed** (+178 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `data_structures/hash_set/Makefile` (+13 -0) ➕ `data_structures/hash_set/hash_set.c` (+92 -0) ➕ `data_structures/hash_set/hash_set.h` (+31 -0) ➕ `data_structures/hash_set/main.c` (+42 -0) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:16:24 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#945