0
votes
1answer
15 views
Replacing SGI’s hash_set with Boost MultiIndex?
I have one SGI's hash_set:
typedef stdext::hash_set< MyValue*, HashMyValue, EqMyValue > MyValueMap;
struct EqMyValue {
bool operator() (const MyValue& a, const MyValue …
1
vote
8answers
154 views
Is there a known implementation of an indexed linked list?
My gut tells me there is no good way to achieve this, but, unlike Mr. Stephen Colbert, I'd rather trust a community of developers than my gut...
Is there a known way to efficientl …
1
vote
1answer
14 views
is it possible to store single linked list information in NSUserDefaults of iphone
is it possible to store single linked list information in NSUserDefaults of iphone. If there is an another way to store the information please mention that also
0
votes
2answers
50 views
Java Queue Merge, Beginner
I'm trying to write a method that will take in two Queues (pre-sorted Linked Lists) and return the merged, in ascending order, resulting Queue object. I pasted the Queue class, th …
6
votes
6answers
213 views
Java lists — does LinkedList really perform so poorly vs ArrayList and TreeList?
Taken from Apache TreeList doc:
The following relative performance statistics are indicative of this class:
get add insert iterate remove
TreeList 3 5 …
-2
votes
2answers
73 views
node values for a doubly linked list [closed]
i want to be sure about my Solutions to this question here:
// i have put the graph in a picture file.
The Q:
Use the following doubly linked list. Give the node value for the n …
0
votes
2answers
162 views
Java: Trouble with TreeSet and LinkedList
I have an unsorted linked list. To sort it, I thought I'd put the values into a TreeSet with a comparator supplied, then return those values as a new linked list. Yet, it fails.
C …
0
votes
3answers
163 views
What is test best sorting algorithm for a Doubly LinkedList
Hi,
Can someone recommend me a sorting algorithm for my custom link list + example, basically it is similar to the Generic LinkedList so if you could give examples for the Generic …
0
votes
0answers
14 views
Need Help in List Destroy function
Hi all,
I am writing a storage allocator using the First Fit Algorithm and would like to free up memory I have obtained from the system before quitting. So I have this list of 'f …
5
votes
15answers
7k views
How do I implement a Linked List in Java?
What's the best way to make a linked list in Java?
0
votes
5answers
116 views
How do I use merge sort to delete duplicates?
I use recursive merge sort for sorting a link list, but during the merge sort I would like to delete duplicates. Anyone has insight in how to accomplish this?
I am using C code.
7
votes
6answers
952 views
What is an efficient algorithm to find whether a singly linked list is circular/cyclic or not?
How can i find whether a singly linked list is circular/cyclic or not? I Tried searching but couldn't find a satisfactory solution. If possible, can you provide pseudocode or Java? …
0
votes
2answers
106 views
Find out whether a Linked List has a loop [closed]
Possible Duplicate:
What is an efficient algorithm to find whether a singly linked list is circular/cyclic or not?
Given the head node of a linked list, how can you find o …
0
votes
5answers
138 views
how to copy one linked list contents to another linked list
Hi, I have been given list L1, L2. L1 contains 1,2,3 and L2 contains 4,5,6. how do i copy the contents from L2 to the end of L1 so in the end L1 contains 1,2,3,4,5,6. any suggestio …
0
votes
5answers
153 views
Is there a linked list predefined library in C++?
Is there a linked list in C++ that I could just #include? Or do I need to create my own if I want to use one?
