can someone help me to solve this problem?
Project
This project consists of writing a Java application that sorts input data.
The program will perform the following steps:
Step 1. Read input from a screen â using GUI
Step 2. Sort the input. For example, if the input is a sequence (11,44,33,55,22), and descending order is selected then the sorted sequence will be (55,44,33,22,11). The user can choose either to sort in descending or ascending order.
For example, if the input sequence is
4 2 9 3 5 6 7 8 10 11 1 12 14 13
then the screen will display the following information:
Data Structure: Array / Linked Chain
Sorting Algorithm: (whatever algorithm â taught in class)
Order : Ascending / Descending
Numbers Read In: 14
Input Sequence:
4 2 9 3 5 6 7 8 10 11
1 12 14 13
Sorted Sequence:
14 13 12 11 10 9 8 7 6 5
4 3 2 1
|