Login
Register
Dark Mode
Brightness
Ambient Glow – Questions list
Register
Profile
Edit Profile
Messages
My favorites
My Updates
Logout
Recent questions tagged tree
1
1 vote
1
1 answer
2.8k
2.8k views
DSA-Test 3-Question 10
For which of the following scenarios does there exist a simple graph G = (V, E) satisfying the specified conditions? (A) It has 3 components 20 vertices and 16 edges. (B)...
Sandy Sharma
2.8k
views
asked
Sep 18, 2018
Graph Theory
tree
discrete-mathematics
+
–
0
0 votes
1
answers
1 answer
2.1k
2.1k views
DSA-Test 3-Question 9
Consider following statements: (i) Every simple graph has at least two vertices of the same degree. (ii) If u is a vertex of odd degree in a graph, then there exists a pa...
Sandy Sharma
2.1k
views
asked
Sep 18, 2018
Graph Theory
discrete-mathematics
tree
+
–
0
0 votes
0
0 answers
824
824 views
DSA-Test 3-Question 5
Consider following statements about tripartite graph, i.e. TPG, which contains three subsets of vertices of graph as A,B and C: (i) Minimum number of edges in a cycle in ...
Sandy Sharma
824
views
asked
Sep 18, 2018
Graph Theory
tree
discrete-mathematics
+
–
2
2 votes
1
answers
1 answer
842
842 views
DSA-Test 3-Question 3
A quinpartite graph is a graph whose vertices can be partitioned into five groups such that no two vertices in same group are connected via some edge. The maximum number ...
Sandy Sharma
842
views
asked
Sep 18, 2018
Graph Theory
tree
+
–
0
0 votes
0
0 answers
1.0k
1.0k views
Number of trees
Shivangi Parashar 2
1.0k
views
asked
Aug 28, 2018
Data Structures
tree
+
–
1
1 vote
1
1 answer
4.7k
4.7k views
AVL tree
Consider following statements: S1: Rotation operation in AVL always preserves the Inorder ordering.S2: The median of all elements in AVL tree is always at root or one of ...
Na462
4.7k
views
asked
Aug 21, 2018
Data Structures
avl-tree
data-structures
tree
binary-search-tree
+
–
0
0 votes
1
1 answer
1.3k
1.3k views
Tree DS
1. How many Binary trees can be made with:(a) 3 unlabelled nodes?(b) 3 labelled nodes?2. How many Binary Search trees can be made with:(a) 3 unlabelled nodes?(b) 3 labell...
Naveen Kumar 3
1.3k
views
asked
Aug 4, 2018
Data Structures
data-structures
tree
+
–
1
1 vote
1
1 answer
1.2k
1.2k views
madeeasy
which is an efficient tree structure in terms of space and time complexity?a) AVL Treeb)Full Binary treec)Complete binary treed)Binary tree
manvi_agarwal
1.2k
views
asked
Aug 4, 2018
Data Structures
data-structures
tree
+
–
1
1 vote
3
answers
3 answers
3.5k
3.5k views
Made Easy test series DS
The number of binary search trees possible with 12 keys, when keys 1, 2, 3, 4, ........ 12 are inserted into empty Binary Search Tree with condition such that 4 is the r...
Sambhrant Maurya
3.5k
views
asked
Jul 27, 2018
Data Structures
combinatory
tree
+
–
3
3 votes
1
answers
1 answer
3.6k
3.6k views
AVL Tree
Let T be a binary search tree with n nodes and Sn be the average number of comparisons required for successful search and Un be the average number of comparison required ...
hrcule
3.6k
views
asked
Jul 16, 2018
Programming in C
avl-tree
data-structures
tree
binary-search-tree
+
–
0
0 votes
2
2 answers
10.7k
10.7k views
UGC NET CSE | July 2018 | Part 2 | Question: 29
A 5-ary tree in which every internal node has exactly 5 children. The number of left nodes in such a tree with 8 internal nodes will be:303345125
Pooja Khatri
10.7k
views
asked
Jul 13, 2018
Data Structures
ugcnetcse-july2018-paper2
data-structures
tree
+
–
1
1 vote
2
2 answers
3.3k
3.3k views
proof
how the b and b+ tree formulae computed can u explain with the proof
vijju532
3.3k
views
asked
Jun 24, 2018
Databases
b-tree
b-tree
tree
+
–
0
0 votes
1
1 answer
1.1k
1.1k views
trees data structure
Is the root node an internal node?
once_2019
1.1k
views
asked
Jun 24, 2018
Programming in C
data-structures
tree
programming-in-c
+
–
0
0 votes
0
0 answers
354
354 views
data structure
how does linux kernel uses the red black tree property ???elabourate
vijju532
354
views
asked
Jun 13, 2018
Algorithms
data-structures
algorithms
tree
+
–
1
1 vote
2
answers
2 answers
1.8k
1.8k views
AVL Tree
Minimum number of internal nodes in an AVL tree with height 5?Please give a standard procedure that can be applied to larger heights as well. I know the formula: S(h) = S...
Akhilesh Singla
1.8k
views
asked
May 15, 2018
Data Structures
avl-tree
tree
+
–
0
0 votes
0
0 answers
830
830 views
compile design question from runtime environment
Ronish Jariwala 1
830
views
asked
Apr 15, 2018
Compiler Design
runtime-environment
compiler-design
hashing
tree
+
–
1
1 vote
1
1 answer
1.6k
1.6k views
BST Data Structure
a:) If given Tree is BST = Inorder of keys is sortedb:) Inorder of keys is sorted = Tree is BST(converse of above)I know first one holds.Is second one also true?If not ca...
rahul sharma 5
1.6k
views
asked
Apr 12, 2018
Programming in C
data-structures
algorithms
programming-in-c
tree
+
–
0
0 votes
0
0 answers
2.0k
2.0k views
Number of Possible Trees
How many total Homeomorphically Irreducible Trees are possible with 'n' nodes ?
ankitgupta.1729
2.0k
views
asked
Apr 11, 2018
Graph Theory
graph-theory
discrete-mathematics
tree
+
–
0
0 votes
2
2 answers
627
627 views
self doubt
given an array which contains the preorder traversal of full $k-ary$ tree. Give an algorithm for constructing the full $k-ary$ tree
Kaluti
627
views
asked
Mar 29, 2018
Data Structures
data-structures
tree
descriptive
+
–
4
4 votes
3
3 answers
18.1k
18.1k views
Tree question
In delete operation of BST, we need inorder successor (or predecessor) of a node when the node to be deleted has both left and right child as non-empty. Which of the foll...
Mohit Srivastava
18.1k
views
asked
Mar 21, 2018
Data Structures
data-structures
tree
+
–
0
0 votes
2
2 answers
807
807 views
Uttrakhand Asst. Professor Exam-39
If the post order traversal of treegives $ab - cd * +$, then the label of the nodes A, B, C, ......, G will bea, -, b, +, c, *, d+, -, *, a, b, c, d-, a, +, b, c, d, *a, ...
gatecse
807
views
asked
Mar 2, 2018
Data Structures
uttarakhand-asst-prof-2018
data-structures
tree
+
–
2
2 votes
3
3 answers
2.9k
2.9k views
AVL Tree
Suppose we have an AVL tree of n nodes and any change in the tree violates the AVL tree property then :-S1: If we insert an element in the tree, maximum 2 Rotations are r...
gauravkc
2.9k
views
asked
Jan 27, 2018
Data Structures
avl-tree
data-structures
tree
+
–
3
3 votes
0
0 answers
2.2k
2.2k views
DS TREES
Consider a binary tree T that has 150 leaf nodes. Then the number of TOTAL nodes in T that have exactly two children are ______.
iarnav
2.2k
views
asked
Jan 7, 2018
Data Structures
data-structures
tree
binary-tree
+
–
3
3 votes
2
2 answers
4.4k
4.4k views
ISRO-DEC2017-56
Which one of the following property is correct for a red-black tree?Every simple path from anode to a descendant leaf contains the same number of black nodes.If a node is...
gatecse
4.4k
views
asked
Dec 17, 2017
Data Structures
isrodec2017
data-structures
binary-search-tree
tree
+
–
0
0 votes
1
1 answer
2.1k
2.1k views
B+ Tree Question
Does values in Leaf nodes of B+ tree repeats or ever leaf node has an unique value?
iarnav
2.1k
views
asked
Dec 15, 2017
Databases
b-tree
bplustrees
databases
indexing
tree
+
–
0
0 votes
0
0 answers
1.2k
1.2k views
MadeEasy Test Series: Programming & DS - Trees
True / False:-1. : The difference between the number of nodes in a binary tree that have exactly two children and the number of leaf nodes is 12. Deletion of root of AVL...
rahul sharma 5
1.2k
views
asked
Dec 7, 2017
Data Structures
made-easy-test-series
data-structures
algorithms
tree
+
–
1
1 vote
1
1 answer
1.5k
1.5k views
B+ tree
$\text{Insertion Sequence}$ : $8,5,1,7,3,12,9,6$Can someone plz show the Sequence of insertion in B+ tree step by step Thanks
Pawan Kumar 2
1.5k
views
asked
Dec 7, 2017
Databases
b-tree
tree
bplustrees
+
–
1
1 vote
2
answers
2 answers
2.9k
2.9k views
MadeEasy Test Series: Programming & DS - Trees
assume the preorder tŕaversal of binary tree is "abc" how many total different binary trees are possible whose postorder traversal.is "cba" with the given preorder traver...
aaru14
2.9k
views
asked
Dec 7, 2017
Programming in C
made-easy-test-series
data-structures
tree
tree-traversal
+
–
1
1 vote
1
1 answer
1.1k
1.1k views
B+ tree
Assume a system has following parameters to construct a B+ tree. The specification of the tree are:• Size of search key is 15 B• Size of block is 512 B• Size of record po...
Tuhin Dutta
1.1k
views
asked
Nov 30, 2017
Databases
databases
b-tree
tree
+
–
0
0 votes
0
0 answers
501
501 views
Data Structure
Lakshman Bhaiya
501
views
asked
Nov 14, 2017
Programming in C
tree
+
–
Page:
« prev
1
2
3
4
5
6
7
next »