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
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 ?
Develop a routine to reflect an object about an arbitrarily selected plane
Cluster head selection in Wireless Sensor Network using C programming language.
Design an implement of the inputs functions for event mode
write a program for area of circumference of shapes
how to create a 3x3 two dimensional array that will give you the sums on the left and bottom columns
How can you relate the function with the structure? Explain with an appropriate example.
could you please send the program code for multiplying sparse matrix in c????
What is the match merge ? compare data step match merge with proc sql merge - how many types are there ? data step vs proc sql
why nlogn is the lower limit of any sort algorithm?
What is data _null_? ,Explain with code when u need to use it in data step programming ?
How to palindrom string in c language?
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.
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']
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 ??