dailycodebase

2 month data structures and algorithmic scripting challenge starting from 20th December 2018 - Coding is Fun! πŸ’―πŸ’― Do it everyday!! Also, Do give us a ⭐ if you liked the repository

View on GitHub

cover

Day 51 - Circular List

Ques) Given a Linked List, write a function isCircular() which returns true if the list is circular, false if it is not.

Circular Linked List

Circular linked list is a linked list where all nodes are connected to form a circle. A circular linked list can be a singly circular linked list or doubly circular linked list.

Basically, there is no NULL at the end, rather the β€œlast” element points again to the first element.

ques

Solution

JavaScript Implementation

Solution

// To Be Added