This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
notes:data:fall2023:projects:waq0 [2023/11/06 02:13] – wgates1 | notes:data:fall2023:projects:waq0 [2023/11/16 01:20] (current) – [Shuffling the Queue] cfoster8 | ||
---|---|---|---|
Line 1: | Line 1: | ||
=====Queue===== | =====Queue===== | ||
+ | If Stacks don't quite fit the design for what you're coding, you may want to consider a Queue instead. | ||
+ | |||
+ | Queues are similar in structure to Stacks with a different functionality. Both data structures exist overtop a List of some kind (for our instance it'll be a doubly-linked list) and act as an intermediary for the coder and the list. The goal of both Stacks and Queues is to make list management easier. | ||
+ | |||
+ | The difference between Stacks and Queues are minimal. A Stack only allows for elements to be added and removed from the top of the list (a "First In, Last Out" system). Meanwhile, a Queue only allows for elements to be added onto the bottom of the List, while they can only be removed from the top of the list (a "First In, First Out" system). | ||
====Queue Struct==== | ====Queue Struct==== | ||
+ | Here is a simple struct you can implement for your queue structure: | ||
+ | <code C> | ||
+ | struct queue { | ||
+ | listnode* data; // Pointer to the list that the queue sits on top of. | ||
+ | cardnode* front; | ||
+ | cardnode* rear; // Pointer to the rear of the queue | ||
+ | int size; // Size of the queue | ||
+ | }; | ||
+ | </ | ||
+ | |||
+ | The provided struct consists of a front and rear pointer of a queue along with a size variable. It also contains a pointer to the list struct which in and of itself holds the pointers that the list needs for navigation between its elements. | ||
+ | |||
+ | ====Function to initialize Queue==== | ||
+ | Once you have created your struct for your queue you can optionally create a function to call every time you want to make a queue. If you are creating the card game War(highly recommended) this is not necessary but helps clean up your program. | ||
+ | |||
+ | Here is an example of a function that creates a queue: | ||
+ | <code C> | ||
+ | // Function that creates and initializes a new queue | ||
+ | queue* createQueue() { | ||
+ | queue* newQueue = (queue*)malloc(sizeof(queue)); | ||
+ | newQueue-> | ||
+ | newQueue-> | ||
+ | newQueue-> | ||
+ | newQueue-> | ||
+ | return newQueue; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | This code allocates the memory for both your queue pointers, and the underlying list in which it operates on. | ||
+ | |||
+ | ====Function to Enqueue and Explanation==== | ||
+ | Enqueue is when you add an element to the back of a queue. In comparison when you add to a stack you are adding to the top. | ||
+ | |||
+ | Here is an example of what your enqueue function could look like: | ||
+ | <code C> | ||
+ | // Function to enqueue a card to the end of a queue | ||
+ | void enqueue(queue* q, cardnode* card) | ||
+ | { | ||
+ | card-> | ||
+ | |||
+ | // If the queue is empty then both front and rear are set to card | ||
+ | if (q-> | ||
+ | { | ||
+ | q->front = q->rear = card; | ||
+ | } | ||
+ | |||
+ | // If the queue is not empty then add new card to rear of queue | ||
+ | else | ||
+ | { | ||
+ | q-> | ||
+ | q->rear = card; | ||
+ | } | ||
+ | |||
+ | q-> | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | Do NOT forget to " | ||
+ | |||
+ | There are a couple of things to note about this example. First off, it is based on the previous struct in the section "Queue Struct" | ||
+ | |||
+ | This function would come in handy in a card game like War. In War, two players show their cards and whoever has a higher card wins that hand. So when making this game, enqueue would be used to add the other player' | ||
+ | |||
+ | ====Shuffling the Queue==== | ||
+ | |||
+ | You can't shuffle a queue from within the queue itself, you would need to pop every item off of it, shuffle that, and then push them all back. It's not too bad, but it may seem counter-intuitive. | ||
+ | |||
+ | You need a loop to pull everything out of the queue, and then a shuffle function in the middle to shuffle the list you made out of the queue, and finally another loop to push it all back into the queue. | ||
+ | |||
+ | Pseudo-code of it looks like so: | ||
+ | |||
+ | while(queue-is-not-empty){ | ||
+ | pop(queue); | ||
+ | } | ||
+ | shuffle_deck(); | ||
+ | while(deck-is-not-empty){ | ||
+ | push(queue); | ||
+ | } | ||
+ | ====real-world applications of queues==== | ||
+ | |||
+ | In real-world applications, | ||
+ | |||
+ | In networking, particularly in the realm of routers, queues are pivotal for managing and prioritizing data packets as they traverse the network. Routers employ queues to temporarily hold incoming packets before forwarding them to their destination. This helps ensure that packets are processed in the order they are received, preventing data congestion and maintaining the integrity of the transmitted information. Additionally, |