how to check whether a linked list is circular.

Answer Posted / shruti

consider home pointer as the starting pointer of the linked
list.
consider temp as the temporary pointer.


temp = home;
while(temp != NULL)
{
if(temp -> next == start)
{
flag = 1;
break;
}
else
flag = 0;
temp = temp -> next;
}

if(flag == 1)
printf("Circular");
else
printf("Not circular");

Is This Answer Correct ?    30 Yes 30 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

why do you use macros? Explain a situation where you had to incorporate macros in your proc report? use a simple instream data example with code ?

2508


Develop a routine to reflect an object about an arbitrarily selected plane

3277


Cluster head selection in Wireless Sensor Network using C programming language.

3388


Design an implement of the inputs functions for event mode

3167


write a program for area of circumference of shapes

2232


how to create a 3x3 two dimensional array that will give you the sums on the left and bottom columns

3347


How can you relate the function with the structure? Explain with an appropriate example.

3129


could you please send the program code for multiplying sparse matrix in c????

3283


What is the match merge ? compare data step match merge with proc sql merge - how many types are there ? data step vs proc sql

2631


why nlogn is the lower limit of any sort algorithm?

2541


What is data _null_? ,Explain with code when u need to use it in data step programming ?

3022


How to palindrom string in c language?

9810


how to programme using switch statements and fuctions, a programme that will output two even numbers, two odd numbers and two prime numbers of the users chioce.

2354


To Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates. String contains only lowercase characters ['a'-'z']

733


Write a Program in 'C' To Insert a Unique Number Only. (Hint: Just Like a Primary Key Numbers In Database.) Please Some One Suggest Me a Better Solution for This question ??

2136