Do one (1) of the following assignments:
Drawing things on Screen!
Drawing simple objects on screen is not something we covered, but it can easily be done in a C# windows form program. In this assignment you are going to draw very simple objects and use our friend the random number generator to create artwork!
Here is the problem
Create a program that does the following:
The position of the point MUST be saved in an ADT (or interface or class).
If you need my help figuring out how to draw points and geometric objects, I can but it will cost you one (1) partial level for each drawing thing I help you with!
Two part assignment
This is a 2 week assignment:
Each week ENSURE you include the Marking Rubric
Things to note
More ways to Search!
There are many ways to to search for items. The great things about a Binary Search is that it is really fast, since it is a divide and concur strategy. The problem is that to make it work, you have to ensure that the list is always ordered.
Here is the problem
Create a program that will generate a random list of 250 values and present them to the user. Then the list is sorted and presented to the user again. Finally you enter a number to be found. If the number is in the list, the position will be returned. If it is not in the list, the user will be informed of this. You CAN NOT use any "sort" or "search" function built into your programming language, you must write a binary search function to find the item yourself!
Two part assignment
This is a 2 week assignment:
Each week ENSURE you include the Marking Rubric
Things to note