What is meant by a * search algorithm?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More AI Algorithms Interview Questions

1. Consider the following algorithm: for ( i = 1 ; i <= 1 . 5 n ; i++) cout << i ; for ( i = n ; i >= 1 ; i - - ) cout << i ; (a) What is the output when n = 2, n = 4, and n = 6? (b) What is the time complexity T(n)? You may assume that the input n is divisible by 2.

0 Answers  


Give an algorithm for the following problem. Given a list of n distinct positive integers, partition the list into two sublists, each of size n/2, such that the difference between the sums of the integers in the two sublists is minimized. You may assume that n is a multiple of 2.

0 Answers  


Which search algorithm will use a limited amount of memory in an online search?

0 Answers  


What is the most efficient way to store 1 million phone numbers memory-wise?

0 Answers   Aspire, Infogain,


Which algorithm in ‘unification and lifting’ takes two sentences and returns a unifier?

0 Answers  






Consider the following algorithm: j = 1 ; while ( j <= n/2) { i = 1 ; while ( i <= j ) { cout << j << i ; i++; } j++; } (a) What is the output when n = 6, n = 8, and n = 10? (b) What is the time complexity T(n)? You may assume that the input n is divisible by 2.

1 Answers  


Explain me what's your favorite algorithm, and can you explain it to me in less than a minute?

0 Answers  


Why size of integer depends on the machine architecture then what the best sorting algorithm and why?

0 Answers   HPCL, Hughes Systique Corporation,


What are the disadvantages of depth-first search algorithm?

0 Answers  


What are the disadvantages of breadth-first search algorithm?

0 Answers  


What is bidirectional search algorithm?

0 Answers  


Tell us why is naïve bayes machine learning algorithm naïve?

0 Answers  


Categories