What's the difference between a data structure in C
https://www.quora.com/Whats-the-difference-between-a-data-structure-in-C++-and-a-data-structure-in-Python
Data Structures are just an abstraction, and way of organizing data that is utilized within an algorithm to solve a problem. Both Python and C++ have a standard library(STL in C++) of data structures readily available for use, although they have syntactical differences, the core concepts should be the same. Ex:// Dictionary(Python) and Map(C++).
DA: 40 PA: 37 MOZ Rank: 41