Quote Originally Posted by [email protected] View Post
I am storing data in a linked list. Every linked list node contains data,KEY and pointer to the next node. I trying to access the data stored randomly based on the unique KEY. Is there any way by which other data strcture can be used so that search will be faster? pl suggest.
std::map.

Regards,

Paul McKenzie