博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java数组只能交换0下标和n_编程练习-只用0交换排序数组
阅读量:5740 次
发布时间:2019-06-18

本文共 1968 字,大约阅读时间需要 6 分钟。

题目来源:华为模拟题

题目描述

华为模拟测试题,蛮简单,一个长度为n的整型数组,乱序存放0至n-1,要求只能交换0和其中的一个数,对数组进行排序(也没有说升序还是降序),交换的函数他已经写好了。给出如下结构:

public class Solution {

public void swapWithZero(int[] array, int len, int n) {

Main.SwapWithZero(array, len, n);

}

public void sort(int[] array, int len) {

// 完成这个函数

}

}

要求完成这个sort函数,在sort函数中调用swapWithZero函数进行排序,注意这里的n是指要调换的数,并不是在数组中的下标!

分析

首先需要始终明确几点:

数组为[0, n-1],是连续的,只是乱序的。

从始至终只能交换0和其中某个数。

不需要考虑怎么交换

最终排好的数组,下标和该位置上的数相同,这点非常重要

基本思想:

首先将0放到第一位上,还有1->n-1的位置上需要排序

循环n-1次,每次将一个数放到相应的位置上。这里就要用到数组的特点,第1次循环(0已经在下标为0的位置上了)将1放到下标为1的位置上,第2次循环将2放到下标为2的位置上,……,第n-1次循环,将n-1放在n-1的位置上! 下面来看一下我采用的示例{4,5,0,3,1,2} 首先看一下手工推导过程

005RsUADgy1g1wpra7g4rj30kq0hmas4.jpg 这里只是将1交换到相应位置处的过程!

第一步将0和初始数组第一个数交换,将0交换到第一位。

第二步将0和1交换,将1交换到第一个位置上。

第三步将当前正在处理(循环处)的位置下标处(位置1)的数和0交换(有点绕)。

第四步将1和0交换,这样1就到了应该呆的位置上了。同时0又回到了第一个,方便下次操作!

实现(java 1.8)

package sxtest20190409;

/**

* @ClassName: Solution

* @Author: fanjiajia

* @Date: 2019/4/9 下午8:12

* @Version: 1.0

* @Description:

*/

public class Solution {

public static void main(String[] args) {

int[] array = {4,5,0,3,2,1};

Solution solution = new Solution();

solution.sort(array, array.length);

for (int i = 0; i < array.length; i++) {

System.out.print(array[i] + " ");

}

}

public void sort(int[] array, int len) {

// 完成这个函数

// 将0移动到第一位

int firstNum = array[0];

swapWithZero(array, len, firstNum);

// 还有位置1->n-1位置的数需要移动

for (int index = 1; index < len; index++) {

//每次循环将index处放置该位置应该的数(index本身)

swapWithZero(array,len, index); // 将index 放在首位

int indexNum = array[index];

swapWithZero(array, len, indexNum);

swapWithZero(array, len, index);

}

}

public void swapWithZero(int[] array, int len, int n) {

Main.SwapWithZero(array, len, n);

}

}

class Main {

/**

* 交换数组中0和n

* @param array

* @param len

* @param n

*/

public static void SwapWithZero(int[] array, int len, int n) {

/**

* 1 0的位置更改为n

* 2 n的位置改为0

*/

for (int i = 0; i < len; i++) {

if (array[i] == 0) {

array[i] = n;

}

else if (array[i] == n) {

array[i] = 0;

}

}

}

}

这里自定义实现了Main类,以及其中的SwapWithZero函数,这里交换相对简单,直接赋值即可。

最后

此致,敬礼

转载地址:http://tbnzx.baihongyu.com/

你可能感兴趣的文章
JQ入门(至回调函数)
查看>>
【洛天依】几首歌的翻唱(无伴奏)
查看>>
OpenSSL初瞻及本系列的博文的缘由
查看>>
ISO8583接口的详细资料
查看>>
tmux不自动加载配置文件.tmux.conf
查看>>
经验分享:JavaScript小技巧
查看>>
[MOSEK] Stupid things when using mosek
查看>>
程序实例---栈的顺序实现和链式实现
查看>>
服务的使用
查看>>
Oracle 用户与模式
查看>>
MairDB 初始数据库与表 (二)
查看>>
拥在怀里
查看>>
chm文件打开,有目录无内容
查看>>
whereis、find、which、locate的区别
查看>>
一点不懂到小白的linux系统运维经历分享
查看>>
桌面支持--打不开网页上的pdf附件解决办法(ie-tools-compatibility)
查看>>
nagios监控windows 改了NSclient++默认端口 注意事项
查看>>
干货 | JAVA代码引起的NATIVE野指针问题(上)
查看>>
POI getDataFormat() 格式对照
查看>>
Python 中的进程、线程、协程、同步、异步、回调
查看>>