CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Sep 2009
    Posts
    2

    Smile circular linked list.

    Can we delete an element in a circular linked list, if yes how are we supposed to do that?

  2. #2
    Join Date
    May 2009
    Posts
    2,413

    Re: circular linked list.

    Quote Originally Posted by aravindan333 View Post
    Can we delete an element in a circular linked list, if yes how are we supposed to do that?
    Sure you can. What do you consider to be the problem?

  3. #3
    Join Date
    Feb 2002
    Posts
    4,640

    Re: circular linked list.

    Just any other linked list. Remove the node, and re-adjust the pointers in the remaining nodes that pointed to the removed node.

    Viggy

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured