This question already has answers here: Closed 11 years ago. Possible Duplicate: When should I use a List vs a LinkedList
When trying to add a person, it just says null pointer error at personList.AddPersonSort.Please help.
How can I write a GUILinkedList program by Java to push Image files instead of other data type items?
U开发者_运维百科sing SQL Server Management Studio to copy the entire contents of a table from SQL Server to an identical table on a MySQL machine. The MySQL db is connected to Management Studio as a l
I\'m trying to read input from the user about a开发者_开发百科 customer. Input: mike,404 forbidden st,raleigh,nc,27607,123.78
I have this homework assignment to make a calculator using a stack and converting infix to postfix. My infix to postfix method works fine. But the other method to evaluate it works for all cases excep
I\'m having some trouble with my insertion method for a linked list in C. It seems to only add at the beginning of the list. Any other insertion I make fail. And this CodeBlocks debugger is so hard to
The following code is part of a stack implementation, implemented via a linked-list, in C. Are there problems with the code?Specifically, in the pop() method the caller passes a void** argument so pop
Im really new to this and am now learning singly linked lists. I am writing some code but I am really confused. I am trying to write a read method and a write method. I have a test harness I cant chan
I\'m trying to create a priority queue using an array of queues, each index of the array being a priority. I tried the following solution,