Algorithms

Moderators: None (Apply to moderate this forum)
Number of threads: 384
Number of posts: 762

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
Linked List Interesting problem Posted by ilarum on 14 Apr 2004 at 9:00 PM
Hi,
In a linked list if the last node is pointing to one of the previous node, rather than pointing to the null. How do I find the last node.

With Regards
Murali
Report
Re: Linked List Interesting problem Posted by melissa_may1 on 24 Apr 2004 at 8:14 PM
: Hi,
: In a linked list if the last node is pointing to one of the previous node, rather than pointing to the null. How do I find the last node.
:
: With Regards
: Murali
:

Hi!

If the "last" node is pointing to a previous one, then the links are bad. This happens with a link list and, in my opinion, is one of the bad features of a linked list.

If one or more of the links are bad, you need to recreate them. So you end up having to sort the list, then update all of the links. It's tedious, but it's the only way I know how.

Well, not the only way... You could write a procedure that steps through the list and keeps track of any node that is accessed. then, as you step through the list, if you see a node that's already been accessed, you know that link, or a subsequent one, is bad.

You might be able to fix them up at that point without sorting the whole list. Or just sort the ones that are bad, fix up those links, and continue on.

Linked lists can be fast, but they can be trouble...


Melissa

Report
Re: Linked List Interesting problem Posted by ilarum on 28 Apr 2004 at 9:04 PM
Hi,
Got the solution use two pointers okay. With one move one node at a time and with the other move two nodes at a time. Thats the solution. The best solution i guess.

With Regards
Murali

: : Hi,
: : In a linked list if the last node is pointing to one of the previous node, rather than pointing to the null. How do I find the last node.
: :
: : With Regards
: : Murali
: :
:
: Hi!
:
: If the "last" node is pointing to a previous one, then the links are bad. This happens with a link list and, in my opinion, is one of the bad features of a linked list.
:
: If one or more of the links are bad, you need to recreate them. So you end up having to sort the list, then update all of the links. It's tedious, but it's the only way I know how.
:
: Well, not the only way... You could write a procedure that steps through the list and keeps track of any node that is accessed. then, as you step through the list, if you see a node that's already been accessed, you know that link, or a subsequent one, is bad.
:
: You might be able to fix them up at that point without sorting the whole list. Or just sort the ones that are bad, fix up those links, and continue on.
:
: Linked lists can be fast, but they can be trouble...
:
:
: Melissa
:
:

Report
Re: Linked List Interesting problem Posted by Ram Manohar on 27 May 2004 at 3:40 AM
Hi,
If we get
node->next=node->next->next->next
then node->next
is the last node, while scanning from the start node.




: Hi,
: Got the solution use two pointers okay. With one move one node at a time and with the other move two nodes at a time. Thats the solution. The best solution i guess.
:
: With Regards
: Murali
:
: : : Hi,
: : : In a linked list if the last node is pointing to one of the previous node, rather than pointing to the null. How do I find the last node.
: : :
: : : With Regards
: : : Murali
: : :
: :
: : Hi!
: :
: : If the "last" node is pointing to a previous one, then the links are bad. This happens with a link list and, in my opinion, is one of the bad features of a linked list.
: :
: : If one or more of the links are bad, you need to recreate them. So you end up having to sort the list, then update all of the links. It's tedious, but it's the only way I know how.
: :
: : Well, not the only way... You could write a procedure that steps through the list and keeps track of any node that is accessed. then, as you step through the list, if you see a node that's already been accessed, you know that link, or a subsequent one, is bad.
: :
: : You might be able to fix them up at that point without sorting the whole list. Or just sort the ones that are bad, fix up those links, and continue on.
: :
: : Linked lists can be fast, but they can be trouble...
: :
: :
: : Melissa
: :
: :
:
:

Report
Re: Linked List Interesting problem Posted by hi_vinay on 28 Feb 2005 at 11:10 PM
hi murali,

u can do one thing. keep one more field for flag.initially that will be 0, whenever u encounter new node ,set that flag as 1. if last node pointing to previous node,that can be find out by the flag.

-vinay




Hi,
: In a linked list if the last node is pointing to one of the previous node, rather than pointing to the null. How do I find the last node.
:
: With Regards
: Murali
:




 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.