[PR #866] [CLOSED] Added Ciular Queue & Linear Queue by creating a queue folder #1374

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/866
Author: @Rahul6918
Created: 10/2/2021
Status: Closed

Base: masterHead: edt


📝 Commits (1)

  • 006a908 Added Ciular Queue & Linear Queue by creating a queue foldar

📊 Changes

2 files changed (+194 additions, -0 deletions)

View changed files

data_structures/queue/circular_queue.c (+99 -0)
data_structures/queue/linear_queue.c (+95 -0)

📄 Description

Added a queue folder and added Circular Queue and Linear Queue in that folder

References

Checklist

  • [x ] Added description of the change
  • [ x] Added file name matches File name guidelines
  • [ x] PR title follows semantic commit guidelines
  • [ x] Search previous suggestions before making a new one, as yours may be a duplicate.
  • [ x] I acknowledge that all my contributions will be made under the project's license.

Notes:


🔄 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/866 **Author:** [@Rahul6918](https://github.com/Rahul6918) **Created:** 10/2/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `edt` --- ### 📝 Commits (1) - [`006a908`](https://github.com/TheAlgorithms/C/commit/006a9083f51949001b47e8e6a70d97f8a8f8aa3e) Added Ciular Queue & Linear Queue by creating a queue foldar ### 📊 Changes **2 files changed** (+194 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `data_structures/queue/circular_queue.c` (+99 -0) ➕ `data_structures/queue/linear_queue.c` (+95 -0) </details> ### 📄 Description #### Added a queue folder and added Circular Queue and Linear Queue in that folder <!-- Thank you for your Pull Request. Please provide a description above and review the requirements below. Contributors guide: https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md --> #### References <!-- Add any reference to previous pull-request or issue --> #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [x ] Added description of the change - [ x] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#File-Name-guidelines) - [ x] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [ x] Search previous suggestions before making a new one, as yours may be a duplicate. - [ x] I acknowledge that all my contributions will be made under the project's license. Notes: <!-- Added Ciular Queue & Linear Queue by creating a queue folder--> <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/866"><img src="https://gitpod.io/button/open-in-gitpod.svg"/></a> --- <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:19:51 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1374