About 259,000 results
Open links in new tab
  1. Library for the Basic Data Structures, such as Queue, in C

    Mar 6, 2014 · There isn't one in the standard C library; tracing back through the related posts, it looks like the Queue data structure was meant to be written by the student.

  2. How to implement a message queue in standard C - Stack Overflow

    Oct 12, 2018 · 1 "example on how to create e message queue (like FIFO) of strings (or byte array) using standard C and how to manage the queue" "in a micro controller with a standard C you …

  3. Are there standard Queue implementations for C? - Stack Overflow

    Apr 28, 2017 · 19 Is there any Queue data structure implementation that "comes" with C or will I have to develop my own (this is for a school project, thus I must use something that either …

  4. How to write a general-type queue library in c? - Stack Overflow

    I want to write a general queue library that can store arbitrary number of elements of any type. I wrote a macro to create a general interface for other interfaces.

  5. Is there a library for C that provides priority queues?

    Is there a library for C that provides priority queues? I'm interested in open source libraries that are commonly installed on Linux machines, something of the kind of glib, which provides some …

  6. Priority queue implementation in C - Stack Overflow

    Apr 10, 2010 · Is there any reliable and simple priority queue (linked list preferred, not necessary) implementation for C? More generally, what C standard libraries do you use?

  7. How do I use mqueue in a c program on a Linux based system?

    Apr 26, 2012 · How do I use mqueue (message queue) in a c program on a Linux based system? I'm looking for some good code examples that can show how this is done in a correct and …

  8. struct - Implementing a FIFO queue in C - Stack Overflow

    Feb 24, 2015 · For an embedded application, I am trying to implement a first-in, first-out (FIFO) queue of structs using ANSI C. The most straightforward way to do this seems to be by …

  9. Does standard c library provides linked list etc. data structures?

    Dec 22, 2012 · Do standard C library implementations, especially glibc (the GNU C Library) provide linked lists, stack et al. data structures, or do we have to roll our own? Thanks.

  10. c - How to use list from sys/queue.h? - Stack Overflow

    Why would I want to declare a structure to connect the elements in the list? Shouldn't each node be connected to the next node via a pointer, like my initial linked list implementation? How …