Is there any header file in c or c++ to implement data structure like graph,trees,stack etc?
|
|
You probably mean standard library provided data structures which you can just use without actually writing the code for creating the data structures. Standard c does not provide any such ready to use constructus a few open source libraries do provide the functionality though. In C++ the standard Library provides for a variety of template based container classes which you might want to use. Have a look at std::stack & |
|||
|
|
|
C++ has See Boost.Graph for more C++ graph support. You have worse support for data structures in C (essentially none in standard C), but you could try GLib. |
|||
|
|
In standard C, no. In C++, you have |
|||
|
|
|
In C++ you have STL(Standard Template Library) which has vector,queue,maps etc. You can also use BOOST which has much more robust data structures |
|||
|
|

