Author : Jingran He Created : Sept. 9, 2018 Last Modified : Sept. 11, 2018
Affiliation : Georgia Institute of Technology
This program implements a simple priority queue using a sorted, singularly linear linked list data structure.
To install, simply run
gcc main.c PrioQ.c -std=c99 -o PrioQ
Note: The -std=c99 flag is required on some C compilers to allow variable declarations at arbitrary location in a function.
Assuming your executable is called "PrioQ", run it using
./PrioQ