[PR #275] [CLOSED] Adding trie improved #580

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/275
Author: @masterashu
Created: 10/1/2019
Status: Closed

Base: masterHead: master


📝 Commits (3)

  • ba59ed5 Adding trie improved
  • 99fc07e struct based implementation
  • c3bdc83 Recursive approach to quick sort

📊 Changes

3 files changed (+279 additions, -140 deletions)

View changed files

data_structures/trie/trie_case_sensitive.c (+171 -0)
📝 sorting/HeapSort.c (+62 -51)
📝 sorting/QuickSort.c (+46 -89)

📄 Description

Adding macro to easily switch between Case Sensitive and Insensitive Trie.
Also adding function to predict outputs for a given prefix.


🔄 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/275 **Author:** [@masterashu](https://github.com/masterashu) **Created:** 10/1/2019 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (3) - [`ba59ed5`](https://github.com/TheAlgorithms/C/commit/ba59ed5e5a7583dd147d8f63963876623ba813f1) Adding trie improved - [`99fc07e`](https://github.com/TheAlgorithms/C/commit/99fc07e8d25426d59a952315b98779c9aa8b3942) struct based implementation - [`c3bdc83`](https://github.com/TheAlgorithms/C/commit/c3bdc8372bea8db183531e69f72f104c146f20f2) Recursive approach to quick sort ### 📊 Changes **3 files changed** (+279 additions, -140 deletions) <details> <summary>View changed files</summary> ➕ `data_structures/trie/trie_case_sensitive.c` (+171 -0) 📝 `sorting/HeapSort.c` (+62 -51) 📝 `sorting/QuickSort.c` (+46 -89) </details> ### 📄 Description Adding macro to easily switch between Case Sensitive and Insensitive Trie. Also adding function to predict outputs for a given prefix. --- <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:13:56 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#580