Skip to content

Refactored Codes

A software engineering website.

  • Interview Questions
  • Functional Programming
  • Concurrency
  • java.util.function
  • Data Structures
  • C Coding
  • Design Patterns
  • Spring Framework
  • Java
  • Operating System

Category: Queue

Home ⁄ DataStructures ⁄ Archive by Category "Queue"

July 13, 2020

Implement Queue Data Structure using C programming language

Anurag Anand C Coding, DataStructures, Queue

You can watch me live-code this data-structure on YouTube for better understanding.You can read the text and follow the video with it for clear understanding. A queue is an abstract Data-Structure where, a data item is inserted or added at one end. And, data item is removed from other end. To keep track of two […]

Read more
January 26, 2019

A simple queue implementation using array in java.

Anurag Anand DataStructures, Java, Queue array, datastructures, Java, Queue

Queue is a data-structure, which follows theĀ FIFO. It means ‘First In First Out’. The element which goes first in the array should be the first to come out. To achieve this process, we add elements at one end of the array and remove it from the other end. Things that we need to do while […]

Read more
copyright 2018 - 2021