Reverse a linked list.
Anonymous
LinkedList *SomeList,previous,current,Next; current = SomeList; previous = null; while(current) { Next = current->pNext; current->pNext = Previous; Previous = current; current = Next; }
Check out your Company Bowl for anonymous work chats.