answersLogoWhite

0

trees have legs and Hands which can punch on your face.........

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is the process of implementing the B tree deletion algorithm to efficiently remove nodes in a B tree data structure?

The process of implementing the B tree deletion algorithm involves identifying the node to be deleted, redistributing keys and pointers if necessary, and adjusting the tree structure to maintain balance and order. This algorithm efficiently removes nodes in a B tree data structure by carefully managing the redistribution of keys and pointers to maintain the properties of the tree.


What is the need of parallel line algorithm?

Do you mean "Why might a parallel line algorithm be needed?" or "What properties does a parallel line algorithm need to have?".


What is krushkal algorithm?

Kruskal's algorithm is an algorithm in graph theory that finds a minimum spanning tree for a connected weighted graph. This means it finds a subset of the edges that forms a tree that includes every vertex, where the total weight of all the edges in the tree is minimized. If the graph is not connected, then it finds a minimum spanning forest (a minimum spanning tree for each connected component). Kruskal's algorithm is an example of a greedy algorithm.


What is algorithm write properties of algorithm?

An ALGORITHM is a sequence of steps that depicts the program logic independent of the language in which it is to be implemented. An algorithm should be designed with space and time complexities in mind.


What is the rightmost derivation parse tree for the keyword "algorithm"?

The rightmost derivation parse tree for the keyword "algorithm" is a tree structure that shows the order in which the grammar rules are applied to generate the keyword.


Is the statement 'Definiteness is one of the properties of an algorithm' True or false?

definiteness is on of the properties of an algorithms


Can dijkstra's algorithm produce a spanning tree?

yes, but a shortest path tree, not a minimum spanning tree


Give you the algorithm of creating a new binary search tree using c?

i want to know how to give the algorithm password in a computer ?


Can you provide an example of a leftmost derivation parse tree for the keyword "algorithm"?

A leftmost derivation parse tree for the keyword "algorithm" would start with the initial symbol S and then branch out to the terminals and non-terminals in a leftmost manner, showing the step-by-step derivation of the word "algorithm".


Why will the shortest paths tree returned by Dijkstra's algorithm never be a correct minimum spanning tree (MST)?

The shortest paths tree returned by Dijkstra's algorithm will never be a correct minimum spanning tree (MST) because Dijkstra's algorithm prioritizes finding the shortest path from a single source node to all other nodes, while a minimum spanning tree aims to connect all nodes in a graph with the minimum total edge weight without forming cycles. Dijkstra's algorithm does not consider the overall connectivity of the graph, leading to potential inconsistencies with the requirements of a minimum spanning tree.


Magical properties of the curly willow tree?

well the only magical properties is under the willow tree and you can also talk to a willow tree


Can you provide the pseudocode for Kruskal's algorithm?

Here is the pseudocode for Kruskal's algorithm: Sort all the edges in non-decreasing order of their weights. Initialize an empty minimum spanning tree. Iterate through all the edges in sorted order: a. If adding the current edge does not create a cycle in the minimum spanning tree, add it to the tree. Repeat step 3 until all vertices are included in the minimum spanning tree. This algorithm helps find the minimum spanning tree of a connected, undirected graph.