How could we implement the stack ADT in C so that we could use it to store different data types at different times, instead of u | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 5

How could we implement the stack ADT in C so that we could use it to store different data types at different times, instead of u

How could we implement the stack ADT in C so that we could use it to store different data types at different times, instead of using a simple code copy-and-paste approach? (I.e., how can we make our stack implementation generic?)

28th Aug 2019, 5:50 PM
Zhenis Otarbay
Zhenis Otarbay - avatar
1 Answer
+ 2
You could make a stack of union elements. This would be ideal for a case where each data type takes roughly the same number of bytes. You could make a stack of void pointers(void *) and cast them to the types of pointers you want to use. This would be good if each element of your stack may be complex enough to need dynamic memory allocation. c++ has support for generics(template classes and template functions) which would be even better for this but your question specified c which doesn't support generics. They'd be better since your variable and parameter declarations can stay precise and precisely type-checked while the implementation of your ADT stays completely generic. The lack of type checking would make your c code more like Python, PHP, or JavaScript code in that a compiler can't look for problems as well.
29th Aug 2019, 4:15 PM
Josh Greig
Josh Greig - avatar