Program on chapter 7
1, Input 10 employee’ name and number
2, Sort the number from small to big order, also adjust name order along with number
3, Input an employee’ number, using bisearch method to find this employee’s name, output the information of this employee.
4, If the employee’s information does not exist, insert this employee’s information to list (array)
Notes: create 2 arrays, one for name(2D array), other for number. The program is very much similar to last assignment (Lab assignment).