unix - Are there standard Queue implementations for C? -
is there queue data structure implementation "comes" c or have develop own (this school project, must use either exists in standard gcc installation or have implement 1 myself!)
what other general data structures linked lists, stacks, etc?
thanks
you must implement own. c has little in terms of data structures , forces resort arguable tricks implement abstract data types: see article titled “incomplete types abstractions” if can find it, or see how principles applied in, say, polarssl's bignum.h file. c++ on other hand supposed allow pretty can in c , give ways implement abstract data structures.
Comments
Post a Comment