I need a Flow chart made with Flowgorithim that has a main module and a module for the math. Also need a notepad++ for the pseudocode that matches what's in the flow chart. NEED THIS IN GENERIC PSUEDOCODE NOT A JAVA, C++, or PYTHON DERIVATIVE. THE FLOWCHART MUST ALSO BE DONE IN A PROGRAM NAMED FLOWGORITHIM!
Please Read!!!
NEED IN PSEUDOCODE MADE IN Note++ AND FLOWCHART made in FLOWGORITHIM ! NOT JAVA,C++, OR PYTHON! Not hand Drawn
I have gotten this far with this and can not get the program to work properly any help on how to connect these to make it work right would be great!
What to Do
• create a module called fillArray that has two input parameters; one is for the array to be filled and
the other is for its size.
• create a module called displayArray that has two input parameters; one is for the array to be displayed
and the other is for its size.
• create a sorting module of your choice and the binary search function:
– bubbleSort: provided
– binarySearch: provided
• Create main and in main do the following in sequence:
1. create an integer array of size 50
2. fill the array with random numbers in the range of 0 through 1000
3. display every element in the array
4. sort the array using the sorting module of your choice
5. display every element in the array
6. create a random number in the range of 0 through 1000
7. use the binary search function to search the number
8. display your search results: the number is or is not in the array