>first C++ data structures exam
>"Make an array of doubly linked lists of strings with constant time access and modification"
NOOO NOOOOOOOOOOO WHY IS THIS BULLSHIT SO HARD
>first C++ data structures exam
>"Make an array of doubly linked lists of strings with constant time access and modification"
NOOO NOOOOOOOOOOO WHY IS THIS BULLSHIT SO HARD
Other urls found in this thread:
wikipedia.org
ufile.io
onlinegdb.com
twitter.com
struct Node
{
Node *fwd;
Node *bk;
std::string str;
};
lol?
What is this bullshit there are no structs in C++
There are structs in C++.
>
DUDE IT DOESNT WORK LIKE THAT
It compiles. So dude it does work like that.
>Constant time access and modification
std::vector > v;
Idontgetit.