Computer Science Engineering (CSE) Exam  >  Computer Science Engineering (CSE) Questions  >  Which of the following is TRUE?a)The cost of ... Start Learning for Free
Which of the following is TRUE?
  • a)
    The cost of searching an AVL tree is θ(log n) but that of a binary search tree is O(n)
  • b)
    The cost of searching an AVL tree is θ (log n) but that of a complete binary tree is θ(n log n)
  • c)
    The cost of searching a binary search tree is O(log n) but that of an AVL tree is θ(n)
  • d)
    The cost of searching an AVL tree is θ(n log n) but that of a binary search tree is O(n)
Correct answer is option 'A'. Can you explain this answer?
Verified Answer
Which of the following is TRUE?a)The cost of searching an AVL tree is ...
AVL tree is a balanced tree.
AVL tree's time complexity of searching = θ(logn) 
But a binary search tree, may be skewed tree, so in worst case BST searching time = θ(n)
View all questions of this test
Most Upvoted Answer
Which of the following is TRUE?a)The cost of searching an AVL tree is ...
AVL trees and binary search trees are two commonly used data structures for storing and searching data. Both these data structures are binary trees, which means that each node can have at most two child nodes. However, AVL trees are self-balancing binary search trees, while binary search trees may or may not be balanced.

Searching in AVL Trees and Binary Search Trees:

Searching for a value in a binary search tree or an AVL tree involves traversing the tree from the root node to a leaf node that contains the value. The cost of searching a tree is determined by the number of nodes that must be visited to find the value. In a balanced tree, the cost of searching is proportional to the height of the tree.

The Cost of Searching AVL Trees and Binary Search Trees:

The cost of searching an AVL tree is logarithmic, which means that the number of nodes that must be visited to find a value is proportional to the logarithm of the number of nodes in the tree. The cost of searching a binary search tree is also logarithmic if the tree is balanced. However, if the binary search tree is unbalanced, the cost of searching may be linear, which means that the number of nodes that must be visited may be proportional to the number of nodes in the tree.

Therefore, the correct answer is option 'A'. The cost of searching an AVL tree is (log n) but that of a binary search tree is O(n) if the binary search tree is unbalanced. However, if the binary search tree is balanced, the cost of searching is also (log n). AVL trees are always balanced, so the cost of searching is guaranteed to be logarithmic.
Explore Courses for Computer Science Engineering (CSE) exam

Top Courses for Computer Science Engineering (CSE)

Which of the following is TRUE?a)The cost of searching an AVL tree is θ(log n) but that of a binary search tree is O(n)b)The cost of searching an AVL tree is θ (log n) but that of a complete binary tree is θ(n log n)c)The cost of searching a binary search tree is O(log n) but that of an AVL tree is θ(n)d)The cost of searching an AVL tree is θ(n log n) but that of a binary search tree is O(n)Correct answer is option 'A'. Can you explain this answer?
Question Description
Which of the following is TRUE?a)The cost of searching an AVL tree is θ(log n) but that of a binary search tree is O(n)b)The cost of searching an AVL tree is θ (log n) but that of a complete binary tree is θ(n log n)c)The cost of searching a binary search tree is O(log n) but that of an AVL tree is θ(n)d)The cost of searching an AVL tree is θ(n log n) but that of a binary search tree is O(n)Correct answer is option 'A'. Can you explain this answer? for Computer Science Engineering (CSE) 2024 is part of Computer Science Engineering (CSE) preparation. The Question and answers have been prepared according to the Computer Science Engineering (CSE) exam syllabus. Information about Which of the following is TRUE?a)The cost of searching an AVL tree is θ(log n) but that of a binary search tree is O(n)b)The cost of searching an AVL tree is θ (log n) but that of a complete binary tree is θ(n log n)c)The cost of searching a binary search tree is O(log n) but that of an AVL tree is θ(n)d)The cost of searching an AVL tree is θ(n log n) but that of a binary search tree is O(n)Correct answer is option 'A'. Can you explain this answer? covers all topics & solutions for Computer Science Engineering (CSE) 2024 Exam. Find important definitions, questions, meanings, examples, exercises and tests below for Which of the following is TRUE?a)The cost of searching an AVL tree is θ(log n) but that of a binary search tree is O(n)b)The cost of searching an AVL tree is θ (log n) but that of a complete binary tree is θ(n log n)c)The cost of searching a binary search tree is O(log n) but that of an AVL tree is θ(n)d)The cost of searching an AVL tree is θ(n log n) but that of a binary search tree is O(n)Correct answer is option 'A'. Can you explain this answer?.
Solutions for Which of the following is TRUE?a)The cost of searching an AVL tree is θ(log n) but that of a binary search tree is O(n)b)The cost of searching an AVL tree is θ (log n) but that of a complete binary tree is θ(n log n)c)The cost of searching a binary search tree is O(log n) but that of an AVL tree is θ(n)d)The cost of searching an AVL tree is θ(n log n) but that of a binary search tree is O(n)Correct answer is option 'A'. Can you explain this answer? in English & in Hindi are available as part of our courses for Computer Science Engineering (CSE). Download more important topics, notes, lectures and mock test series for Computer Science Engineering (CSE) Exam by signing up for free.
Here you can find the meaning of Which of the following is TRUE?a)The cost of searching an AVL tree is θ(log n) but that of a binary search tree is O(n)b)The cost of searching an AVL tree is θ (log n) but that of a complete binary tree is θ(n log n)c)The cost of searching a binary search tree is O(log n) but that of an AVL tree is θ(n)d)The cost of searching an AVL tree is θ(n log n) but that of a binary search tree is O(n)Correct answer is option 'A'. Can you explain this answer? defined & explained in the simplest way possible. Besides giving the explanation of Which of the following is TRUE?a)The cost of searching an AVL tree is θ(log n) but that of a binary search tree is O(n)b)The cost of searching an AVL tree is θ (log n) but that of a complete binary tree is θ(n log n)c)The cost of searching a binary search tree is O(log n) but that of an AVL tree is θ(n)d)The cost of searching an AVL tree is θ(n log n) but that of a binary search tree is O(n)Correct answer is option 'A'. Can you explain this answer?, a detailed solution for Which of the following is TRUE?a)The cost of searching an AVL tree is θ(log n) but that of a binary search tree is O(n)b)The cost of searching an AVL tree is θ (log n) but that of a complete binary tree is θ(n log n)c)The cost of searching a binary search tree is O(log n) but that of an AVL tree is θ(n)d)The cost of searching an AVL tree is θ(n log n) but that of a binary search tree is O(n)Correct answer is option 'A'. Can you explain this answer? has been provided alongside types of Which of the following is TRUE?a)The cost of searching an AVL tree is θ(log n) but that of a binary search tree is O(n)b)The cost of searching an AVL tree is θ (log n) but that of a complete binary tree is θ(n log n)c)The cost of searching a binary search tree is O(log n) but that of an AVL tree is θ(n)d)The cost of searching an AVL tree is θ(n log n) but that of a binary search tree is O(n)Correct answer is option 'A'. Can you explain this answer? theory, EduRev gives you an ample number of questions to practice Which of the following is TRUE?a)The cost of searching an AVL tree is θ(log n) but that of a binary search tree is O(n)b)The cost of searching an AVL tree is θ (log n) but that of a complete binary tree is θ(n log n)c)The cost of searching a binary search tree is O(log n) but that of an AVL tree is θ(n)d)The cost of searching an AVL tree is θ(n log n) but that of a binary search tree is O(n)Correct answer is option 'A'. Can you explain this answer? tests, examples and also practice Computer Science Engineering (CSE) tests.
Explore Courses for Computer Science Engineering (CSE) exam

Top Courses for Computer Science Engineering (CSE)

Explore Courses
Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev