Java直接插入排序是有一個已經有序的數據序列,要求在這個已經排好的數據序列中插入一個數,但要求插入後此數據序列仍然有序;排序的主要思想是:將有序數存放在數組a中,要插入的數為x,首先要確定x在數組a中的位置p,然後將數組a中p位置以後的數都往後移動一位,空出a(p),然後將x放入a(p)位置,這樣即可實現插完以後的數據仍然有序。
首先生成一組隨機數:
- protected void do_button_actionPerformed(ActionEvent e)
- {
- Random random = new Random();
- textArea1.setText("");
- for(int i = 0;i<array.length; i++){
- array[i] = random.nextInt(90);
- textArea.append(array[i] + "\n");
- }
- }
排序算法代碼:
- protected void do_button1_actionPerformed(ActonEvent e)
- {
- int tmp;
- int j;
- for(int i = 1;i<array.length; i++)
- {
- tmp = array[i];
- for(j =i - 1; j>=0 && array[j] > tmp; j--){
- array[j+1] = tmp;
- }
- array[j+1] = tmp;
- }
- textArea2.setText("");
- for(int i = 0;i<array.length; i++){
- textArea2.append(array[i] + "\n");
- }
- }
各種排序算法的比較請見 http://www.linuxidc.com/Linux/2012-02/55383.htm