1.

Can We Check Whether A Link List Is Circular Or Not ?

Answer»

Yes, we can check that a given link-LIST is circular or not. A link-list will be a circular link-list if it follows the two main REQUIREMENTS:

  1. If a link list is not null terminated( it points to the first node)
  2. If all NODES are connected in the FORM of cycle.

Yes, we can check that a given link-list is circular or not. A link-list will be a circular link-list if it follows the two main requirements:



Discussion

No Comment Found