[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

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

2011-07-27 Thread banu
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 sorted either during insertion or after creating the linked list - In place

[algogeeks] Re: a google question

2010-04-30 Thread banu
Nice question: 1. |A| = |B| i.e I assume their cardinality is equal 2. A(n) = { a1, a2 a3, ...aN} such that a1=a2=a3...=aN 3. B(n) = { b1, b2 b3, ...bN} such that b1=b2=b3...=bN 4. S(n^2) = A x B = {(a1,b1), (a1,b2)(a1,bN), (a2,b1), (a2,b2)(a2,bN),

[algogeeks] Re: a google question

2010-04-30 Thread banu
Nice question: 1. |A| = |B| i.e I assume their cardinality is equal 2. A(n) = { a1, a2 a3, ...aN} such that a1=a2=a3...=aN 3. B(n) = { b1, b2 b3, ...bN} such that b1=b2=b3...=bN 4. S(n^2) = A x B = {(a1,b1), (a1,b2)(a1,bN), (a2,b1), (a2,b2)(a2,bN),

[algogeeks] Alternative Dta Structures for Cache Inefficient Linked Lists

2010-02-17 Thread banu
Hi, I had been thinking about this problem from quite sometime. Linked lists are good dynamic data structures and solve the main problems associated with arrays(static memory allocation) On the other hand, one of the biggest disadvantages of linked lists is that their cache utilization is