Linked Lists

I am using glib for linked lists in C. Is there any corresponding such library available in cuda ? Please help …!!

Linked lists aren’t typically a good match for the GPU. That’s not to say they don’t work, just that you might not get the performance you want. If you’re looking for a generic library that has containers and algorithms, definitely check out Thrust.