Linked lists -- can you tell me how to check whether a linked list is circular?
No Answer is Posted For this Question
Be the First to Post Answer
What is a program?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
Why doesnt that code work?
Given an array A[n+m] of n+m numbers, where A[1] ... A[n] is sorted and A[n+1] ... A[n+m] is sorted. Design a linear time algorithm to obtain A[1...n+m] sorted using only O(1) extra space. Time Complexity of your algorithm should be O(n) and Space Complexity O(1).
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
What is a const pointer in c?
Write a program to find given number is even or odd without using any control statement.
i want to know aptitude questions,technical questions
give one ip, find out which contry
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?