mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-04 05:44:35 +00:00
[PR #841] [MERGED] feat: Added a program that prints words in alphabetical order using binary tree data structure #1353
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/841
Author: @RandyKdev
Created: 7/14/2021
Status: ✅ Merged
Merged: 7/30/2021
Merged by: @ayaankhan98
Base:
master← Head:master📝 Commits (10+)
ed56470frequencies of words started6724e1eA program to Print words contained in a file in alphabetical order4306610Apply suggestions from code review1dd47b8appropriate comments added as suggested from code reviewf1d970ccomments cleaned upcfd31feupdating DIRECTORY.md2dda396Apply suggestions from code review3063155commenting re-worded6f8487bAdd link to algorithm6027970Update data_structures/binary_trees/words_alphabetical.c📊 Changes
2 files changed (+317 additions, -0 deletions)
View changed files
📝
DIRECTORY.md(+1 -0)➕
data_structures/binary_trees/words_alphabetical.c(+316 -0)📄 Description
A program that reads words from a file and stores them in a binary tree where one word is a node in the tree with a frequency slot. The program then prints the words in alphabetical order together with their frequencies to a separate file
Notes: Implementation of sorting words in alphabetical order using Binary Tree Data Structure
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.