Gourab Dasgdcademy.hashnode.dev·Dec 20, 2024Comprehensive Guide to Priority Queue: Algorithms, Pseudo Code, Implementation, and Complexity Analysis1. Simple Queue (Linear Queue) Description: A simple queue follows the FIFO principle, where elements are added at the rear and removed from the front. It uses a fixed-size array to implement the queue, and once full, no new elements can be added. ...10 likesqueue
Gourab Dasgdcademy.hashnode.dev·Dec 19, 2024ADT QueueDefinition: A queue is an Abstract Data Type (ADT) that follows the FIFO principle (First In, First Out). This means elements are added from one end, called the rear, and removed from the other end, called the front. Characteristics of a Queue: Line...10 likes·42 readsqueue
Legos Lightlegos.hashnode.dev·Dec 17, 2024Một số ứng dụng của CTDL Queue💡 Queue (hàng đợi) là một cấu trúc dữ liệu cơ bản và vô cùng hiệu quả trong xử lý một số bài toán. Mình rất hay dùng stack hoặc queue để tránh việc gọi đệ quy và dễ debug. Bài này mình xin giới thiệu một số ứng dụng về cấu trúc dữ liệu này. Giới t...Programming & Algorithmsdata structure and algorithms
Rahul Gangotrihackerrahul.com·Dec 15, 2024Tasque - Serverless messaging and scheduling solutionHi, Today i am launching an Open Source project TASQUE! An ultimate serverless messaging and scheduling solution. A Serverless Scheduler and Queue system built on top of cloudflare workers, D1 and Durable Objects to handle scale and schedule/queue mi...1 like·29 readstasque
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 14, 2024Generic collections part 2: Stack and QueueStack A Stack is a linear data structure that follows the Last-In-First-Out (LIFO) principle. It's like a stack of plates: the last plate you put on is the first one you take off. Key Operations: Push: Adds an element to the top of the stack. Pop: ...C#
Rishi Yadavrishi-chaosing.hashnode.dev·Dec 12, 2024Day 9 of the 100 Days DSA Challenge: QueuesWelcome to Day 9 of the 100 Days DSA Challenge! Today, we will dive into the concept of queues, a fundamental data structure used in various applications. We will explore different types of queues and their implementations using C language. Let's get...C
Saumyaa Gargsaumyaagarg.hashnode.dev·Dec 6, 2024Day 9: QueuesQueues are fundamental linear data structures that operate on the First-In-First-Out (FIFO) principle, making them ideal for tasks like scheduling, buffering, and managing resources. On Day 9, I explored different queue implementations and solved pro...10 likesWeek 2DSA
Kanchan Raikanchanraiii.hashnode.dev·Nov 28, 2024Day 9: 100 Days of DSAHey y’all! Today on the ninth day of this challenge I’ll be solving five problems related to queue. You can checkout my github repository, I upload the solutions there as well. Let’s begin solving today’s questions :) 1. To implement queue using arr...100 Days of DSAqueue
Tushar Panttusharpant.online·Nov 28, 2024Day 9 of 100 Days of DSA Challenge: QueuesQueues are linear data structures that follow the First-In-First-Out (FIFO) principle, making them essential for scenarios like scheduling and buffering. Today’s problems introduced various queue implementations and applications. 1. Implement a Queu...100 days of DSADSA
TheGeekPlanetsthegeekplanets.com·Nov 12, 2024Stacks and Queues in Java: A Brief Overview of Their Concepts and ImplementationsWhat is a Stack? A stack is a data structure that organizes elements in a Last In, First Out (LIFO) order. Imagine stacking plates: the last plate added to the top is the first one removed. This structure is ideal for problems where you need to rever...DSAstack