Describe BFS and DFS
Write down the difference between BFS and DFS?
Expert
BFS: This can be thought of as being such as Dijkstra's algorithm for shortest paths, however with each and every edge containing the same length. Though it is a lot simpler and does not require any data structures. We just keep a tree (that is, the breadth first search tree), a list of nodes to be added to tree and markings (Boolean variables) on the vertices to tell whether they are in the tree or list.
Depth first search is the other way of traversing graphs, which is closely associated to preorder traversal of a tree. Remember that preorder traversal just visits each node before its children. It is most simple to program as a recursive routine.
Define when we should use plain list.
What are the differences between data structure of System R and the relational structure?
Explain the user interface design?
Give a small description of the term Arrays?
What are the uses of binary tree?
Briefly describe the term sequential search? And also write down the average number of comparisons in a sequential search?
Explain the case tools?
What do you mean by B+ tree? Describe some of its uses.
How is this possible to insert different type of elements within a stack?
Explain the disadvantages of the array implementations of linked list?
18,76,764
1947534 Asked
3,689
Active Tutors
1432733
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!