Re: [algogeeks] Re: Blocked/Unrolled linked list with no duplicates and sorted

2011-09-16 Thread Varun Nagpal
Hi all, I wrote a pseudo code for a blocked/unrolled single linked list which does global insertion sort(decreasing order) during insertion of elements in the list. Can someone look at pseudocode and let me know if it works correctly? I think it does! Or do you see any corner cases which might

[algogeeks] Re: Blocked/Unrolled linked list with no duplicates and sorted

2011-07-28 Thread banu
Anyone ? On Jul 26, 10:27 pm, banu varun.nagp...@gmail.com wrote: Hi, Basically I am trying to create a blocked linked list(unrolled linked list) with following properties - Configurable number of elements in each node - No duplicate elements in the unrolled linked list - Linked list is

Re: [algogeeks] Re: Blocked/Unrolled linked list with no duplicates and sorted

2011-07-28 Thread sunny agrawal
Nice Problem :) i think taking care of duplicates is very simple...but main point is sorted insertion that has to very carefully done there are many cases that need to be taken care of 1. if the value to be inserted is between two nodes and both nodes are fullthen a new node will be

Re: [algogeeks] Re: Blocked/Unrolled linked list with no duplicates and sorted

2011-07-28 Thread Varun Nagpal
Thanks a lot for your inputs Sunny. Your solution seems correct to me. Is this the only method ? Can you think of any other methods which could be more efficient. I heard merge sort or quick sort are also used for linked lists. Do you see their applicability in this case? What about duplicate