Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat : Implement Circular Buffer (Ring Buffer) Data Structure #669

Open
frHimanshu opened this issue Mar 23, 2025 · 1 comment · May be fixed by #672
Open

Feat : Implement Circular Buffer (Ring Buffer) Data Structure #669

frHimanshu opened this issue Mar 23, 2025 · 1 comment · May be fixed by #672

Comments

@frHimanshu
Copy link

Implement a Circular Buffer (Ring Buffer) data structure in the pydatastructs library. A circular buffer is a fixed-size data structure that uses a single, fixed-size buffer as if it were connected end-to-end, providing efficient management of cyclic data.

Features:

  1. Fixed Size: The buffer has a fixed size and overwrites the oldest data when it becomes full.
  2. Efficient Operations: Provides constant time complexity for adding and removing elements.
  3. Wrap-Around: When the end of the buffer is reached, the next element is inserted at the beginning of the buffer (wrap-around behavior).

Methods to Implement:

  1. Initialization: Allocate a fixed-size buffer and initialize pointers.
  2. Enqueue: Add an element to the buffer.Dequeue: Remove an element from the buffer.
  3. Is Full: Check if the buffer is full.
  4. Is Empty: Check if the buffer is empty.
  5. Peek: View the element at the front of the buffer without removing it.
  6. Size: Get the number of elements currently in the buffer.

File Placement:

File Name: circular_buffer.py
File Location: pydatastructs/linear_data_structures/

Instructions for Adding the File:

  1. Create a new file named circular_buffer.py in the pydatastructs/linear_data_structures/ directory.
  2. Implement the CircularBuffer class as described above.
  3. Add appropriate docstrings and comments to explain the code.
  4. Write unit tests for the CircularBuffer class and place them in the tests/ directory, following the structure of existing test files.
  5. This feature will provide a useful data structure for managing cyclic data efficiently and will be a valuable addition to the pydatastructs library.
@frHimanshu frHimanshu linked a pull request Mar 24, 2025 that will close this issue
@frHimanshu frHimanshu changed the title Feature : Implement Circular Buffer (Ring Buffer) Data Structure Feat : Implement Circular Buffer (Ring Buffer) Data Structure Mar 29, 2025
@frHimanshu
Copy link
Author

@czgdp1807 I would like to work on this issue please allow me to!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant