码迷,mamicode.com
首页 > 编程语言 > 详细

《程序员代码面试指南》第八章 数组和矩阵问题 自然数数组的排序

时间:2018-05-08 22:27:24      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:sort   ati   rgs   自然数   分享   矩阵   swa   chapter   alt   

题目

自然数数组的排序

java代码

package com.lizhouwei.chapter8;

/**
 * @Description: 自然数数组的排序
 * @Author: lizhouwei
 * @CreateDate: 2018/5/8 20:51
 * @Modify by:
 * @ModifyDate:
 */
public class Chapter8_14 {

    public void sort(int[] arr) {
        int left = 0;
        int right = arr.length - 1;
        while (left < right) {
            if (arr[left] != left + 1) {
                swap(arr, left, arr[left] - 1);
            } else {
                left++;
            }
        }
    }

    public void swap(int[] arr, int a, int b) {
        int temp = arr[a];
        arr[a] = arr[b];
        arr[b] = temp;
    }

    //测试
    public static void main(String[] args) {
        Chapter8_14 chapter = new Chapter8_14();
        int[] arr = {2, 3, 6, 5, 4, 1};
        System.out.println("自然数数组 arr = {2, 3, 6, 5, 4, 1}排序后为:");
        chapter.sort(arr);
        for (int i = 0; i < arr.length; i++) {
            System.out.print(arr[i] + " ");
        }
    }
}

结果

技术分享图片

《程序员代码面试指南》第八章 数组和矩阵问题 自然数数组的排序

标签:sort   ati   rgs   自然数   分享   矩阵   swa   chapter   alt   

原文地址:https://www.cnblogs.com/lizhouwei/p/9010980.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!