Already have an account? Get multiple benefits of using own account!
Login in your account..!
Remember me
Don't have an account? Create your account in less than a minutes,
Forgot password? how can I recover my password now!
Enter right registered email to receive password!
Among other things, a binary search tree can be used for sorting data elements. This project is to randomly generate a sequence of integer numbers, insert the first 20 distinct numbers into a binary search tree, and finally produce an in-order listing of the tree. You are provided with the declarations and two functions for binary search trees (see the appended). One of the functions is Insert that adds a new element to a binary search tree. And the other is lookup which checks if a given element is already in a binary search tree. In this project, you need to define a print function that prints tree elements in in-order as well as a count function that counts and returns the number of tree nodes in a binary search tree. In addition you need to complete the main function. You may use the built-in random number function to generate new elements for inserting as shown below:
srand(time(NULL)); /* do it at the beginning of main function */newElem = rand() % 100; /* generate a new element one at a time */Then you can check for each new element if it is already there using the lookup function and if there are enough elements in the tree using the count function before doing insert. Finally, use the print function to show the result./* declarations and function definitions for binary search trees */#include <stdio.h>#include <stdlib.h>#include <time.h>#define TRUE 1#define FALSE 0typedef int BOOLEAN;typedef int ETYPE;typedef struct NODE *TREE;struct NODE {ETYPE element;TREE leftChild, rightChild;};TREE insert(ETYPE x, TREE T){if (T == NULL) {T = (TREE) malloc(sizeof(struct NODE));T->element = x;T->leftChild = NULL;T->rightChild = NULL;}else if (x < T->element)T->leftChild = insert(x, T->leftChild);else if (x > T->element)T->rightChild = insert(x, T->rightChild);return T;}BOOLEAN lookup(ETYPE x, TREE T){if (T == NULL)return FALSE;else if (x == T->element)return TRUE;else if (x < T->element)return lookup(x, T->leftChild);else /* x must be > T->element */return lookup(x, T->rightChild);}
In this programming assignment you will implement an open hash table and compare the performance of four hash functions using various prime table sizes.
Explain how will use a search tree to find the solution.
How to access virtualised applications through UNICORE
Write a recursive function to determine if a binary tree is a binary search tree.
Determine the mean salary as well as the number of salaries.
Currency Conversion Development
WSDL service that receives a request for a stock market quote and returns the quote
Design a GUI and implement Tic Tac Toe game in java
Write a recursive implementation of Euclid's algorithm for finding the greatest common divisor (GCD) of two integers
Data structures for a single algorithm
Write the selection sort algorithm
The report is divided into four main parts. The introduction about sample, hold amplifier and design, bootstrap switch design followed by simulation results.
Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!
whatsapp: +1-415-670-9521
Phone: +1-415-670-9521
Email: [email protected]
All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd