473,396 Members | 2,021 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

how to implement doubly linked lists using only one pointer?

I'm reading MIT's book "Introduction to Algorithms".
The following is one of the excercises from it:
<
10.2-8
Explain how to implement doubly linked lists using only one pointer
value np[x] per item instead of the usual two (next and prev). Assume
that all pointer values can be interpreted as k-bit integers, and
define np[x] to be np[x] = next[x] XOR prev[x], the k-bit
"exclusive-or" of next[x] and prev[x]. (The value NIL is represented by

0.) Be sure to describe what information is needed to access the head
of the list. Show how to implement the SEARCH, INSERT, and DELETE
operations on such a list. Also show how to reverse such a list in O(1)

time.
/>

Could anybody tell me how to solve it? Thank you!!!

Dec 23 '06 #1
8 3917
to*************@hotmail.com wrote:
I'm reading MIT's book "Introduction to Algorithms".
The following is one of the excercises from it:
<
10.2-8
Explain how to implement doubly linked lists using only one pointer
value np[x] per item instead of the usual two (next and prev). Assume
that all pointer values can be interpreted as k-bit integers, and
define np[x] to be np[x] = next[x] XOR prev[x], the k-bit
"exclusive-or" of next[x] and prev[x]. (The value NIL is represented by

0.) Be sure to describe what information is needed to access the head
of the list. Show how to implement the SEARCH, INSERT, and DELETE
operations on such a list. Also show how to reverse such a list in O(1)

time.
/>

Could anybody tell me how to solve it? Thank you!!!
The book all but told you how to solve it.
If anything XOR'd with itself is zero, solve
the equation

np[x] = next[x] XOR prev[x]

for next[x].

To reverse the list, how would you revers a regular doubly
linked list with next and prev pointers?


--
Joe Seigh

When you get lemons, you make lemonade.
When you get hardware, you make software.
Dec 23 '06 #2
"to*************@hotmail.com" <to*************@hotmail.comwrites:
Explain how to implement doubly linked lists using only one pointer
value np[x] per item instead of the usual two (next and prev). Assume
that all pointer values can be interpreted as k-bit integers, and
define np[x] to be np[x] = next[x] XOR prev[x], the k-bit
"exclusive-or" of next[x] and prev[x]. (The value NIL is represented by

0.) Be sure to describe what information is needed to access the head
of the list. Show how to implement the SEARCH, INSERT, and DELETE
operations on such a list. Also show how to reverse such a list in O(1)
time.
http://en.wikipedia.org/wiki/XOR_linked_list

--
Best regards, _ _
.o. | Liege of Serenly Enlightened Majesty of o' \,=./ `o
..o | Computer Science, Michal "mina86" Nazarewicz (o o)
ooo +--<mina86*tlen.pl>---<jid:mina86*chrome.pl>--ooO--(_)--Ooo--
Dec 23 '06 #3
The book all but told you how to solve it.
If anything XOR'd with itself is zero, solve
the equation

np[x] = next[x] XOR prev[x]

for next[x].
That's the point! It seems that I know nothing about bit computations,
so silly questions are raised here.

Dec 24 '06 #4
If anything XOR'd with itself is zero, solve
the equation

np[x] = next[x] XOR prev[x]

for next[x].
how to solve that equation? i'm confused!

Dec 24 '06 #5
<to*************@hotmail.comwrote in message
news:11**********************@73g2000cwn.googlegro ups.com...
>If anything XOR'd with itself is zero, solve
the equation

np[x] = next[x] XOR prev[x]

for next[x].

how to solve that equation? i'm confused!
Play with bit math.

int X = 1;
int Y = 3;

now output X and Y, X or Y, X xor Y, etc... Find out why they come out the
way they do.
Dec 24 '06 #6
Play with bit math.
>
int X = 1;
int Y = 3;

now output X and Y, X or Y, X xor Y, etc... Find out why they come out the
way they do.
i've known that:
if A ^ B = C, then B = A ^ C, A = B^C.
but anyway how to solve that equation with only np[x] given?

Dec 24 '06 #7
Hello!

The original question is fun!

to*************@hotmail.com wrote:
>
i've known that:
if A ^ B = C, then B = A ^ C, A = B^C.
What's X ^ X? What's (X ^ X) ^ Y?
but anyway how to solve that equation with only np[x] given?
You won't have "only np[x] given".

The answer, as they say, is in the (original) question. It's all a
matter of knowing where to begin. You /will/ know where to begin. Just
use your head. Start at the beginning. After all, nothing will come
from nothing, as they say.

:-)

Simon

--
What happens if I mention Leader Kibo in my .signature?
Dec 29 '06 #8

<to*************@hotmail.comwrote in message
news:11**********************@48g2000cwx.googlegro ups.com...
>
i've known that:
if A ^ B = C, then B = A ^ C, A = B^C.
but anyway how to solve that equation with only np[x] given?
I think this is an easy way to communicate the concept:

Instead of XOR, use addition and subtraction (they are
essentially equivalent when it comes to implementing the
trick of this method, but much easier to comprehend).

First, every node has a field to hold the distance from its
previous-node to its next-node. Note that this is exactly
equal to the sum of the distances from its previous-node
to itself, and from itself to its next-node.

When you iterate, you need pointers to two successive
nodes. Call them A and B. It is easy to compute the
distance between the nodes (B-A), and from there it is
easy to compute the address of A's previous-node [A's
sum-of-distances is reduced by (B-A) and the remainder
applied as an offset to A's address] or of B's next-node
[left as an exercise].

- Risto -
Jan 2 '07 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: surrealtrauma | last post by:
I want to ask what's the differences between doubly liked list and linear liked list, and also the circular doubly liked list in terms of implementation. THX
4
by: dssuresh6 | last post by:
Whether browsing forward or backward can be done using a singly linked list. Is there any specific case where a doubly linked list is needed? For people who say that singly linked list allows...
8
by: sudhirlko2001 | last post by:
How to swap two nodes of doubly Linklist
1
by: drewy2k12 | last post by:
Heres the story, I have to create a doubly linked list for class, and i have no clue on how to do it, i can barely create a single linked list. It has to have both a head and a tail pointer, and...
2
by: murali | last post by:
Hi, I want to insert a node in an sorted doubly linked list of integers in ascending order. The list should not have duplicate nodes. I need an algorithm (assuming an object oriented language) ...
3
by: maruf.syfullah | last post by:
Consider the following Class definitions: class AClass { int ai1; int ai2; public: CClass* c; AClass(){}
10
by: kalar | last post by:
Hello. we have this struct and we must to make a linked list struct node { char name; char phone; struct node *prevName; // previous node alphabetically struct node *prevNumber; //...
4
by: valt | last post by:
public class DLLNode { String Item; int Time; DLLNode Next; DLLNode Prev; public DLLNode(String newItem,int newTime,DLLNode newNext,DLLNode newPrev) { Item = newItem;
4
by: arnuld | last post by:
This program follows from the section 6.5 of K&R2 where authors created a doubly-linked list using a binary-tree based approach. The only thing I have rewritten myself is the getword function. I am...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.