Шукаєте відповіді та рішення тестів для Algoritmai ir duomenų struktūros? Перегляньте нашу велику колекцію перевірених відповідей для Algoritmai ir duomenų struktūros в emokymai.vu.lt.
Отримайте миттєвий доступ до точних відповідей та детальних пояснень для питань вашого курсу. Наша платформа, створена спільнотою, допомагає студентам досягати успіху!
Given oriented weighted graph G=(V;E) where V={A;B;C;D;E}, E={(A,B,w=10); (A,D,w=13); (B,C,w=6); (B,D,w=2); (D,C,w=3); (D,E,w=5); (C,E,w=1)}. What sequence of vertices is on the shortest path from vertex A to vertex E and what is the length of that shortest path (length of path is the sum of weights)?
Undirected graph has vertices V={0,1,2,3,4} and edges E={(0,1); (0,2); (1,3); (1,4); (3,4)}. In which order vertices may be visited by breadth first traverse algorithm if started at vertex 0? (several answers may be selected)
Undirected graph has vertices V={0,1,2,3,4} and edges E={(0,1), (0,2), (1,3), (1,4), (3,4)}. In which order vertices may be visited by depth first traverse algorithm if started at vertex 0? (several answers may be selected)
Insert numbers 1, 17, 5, 8, 3, 9, 6, 18, 20 in B-tree of order 4. What numbers will be stored in root node?
The following keys are inserted into binary search tree: 11, 9, 10, 5, 3, 12. Perform pre-order traversal on this BST. In which order the nodes will be visited?
Which are true for Binary Search Trie?
Which are true for B+ tree?
Which are true about Red-Black trees?
Which are true about BTree?
Which are true about AVL trees?