我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Java开发学习 Java数组操作工具

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Java开发学习 Java数组操作工具

看到网上的一段关于对数组操作的代码,觉得有用,在此备用。

import java.util.Arrays; import java.util.List; import java.util.Map; import java.util.Random; import java.util.TreeMap;   public class MyArrayUtils {           public static int[] swap(int[] ints, int x, int y) {     int temp = ints[x];     ints[x] = ints[y];     ints[y] = temp;     return ints;   }       public static int[] bubbleSort(int[] source) {          for (int i = source.length - 1; i>0 ; i--) {        for (int j = 0; j < i; j++) {          if (source[j] > source[j + 1]) {            swap(source, j, j + 1);         }       }     }     return source;   }       public static int[] selectSort(int[] source) {     for (int i = 0; i < source.length; i++) {       for (int j = i + 1; j < source.length; j++) {         if (source[i] > source[j]) {           swap(source, i, j);         }       }     }     return source;   }       public static int[] insertSort(int[] source) {      for (int i = 1; i < source.length; i++) {       for (int j = i; (j > 0) && (source[j] < source[j - 1]); j--) {         swap(source, j, j - 1);       }     }     return source;   }       public static int[] quickSort(int[] source) {     return qsort(source, 0, source.length - 1);   }       private static int[] qsort(int source[], int low, int high) {     int i, j, x;     if (low < high) {       i = low;       j = high;       x = source[i];       while (i < j) {         while (i < j && source[j] > x) {           j--;         }         if (i < j) {           source[i] = source[j];           i++;         }         while (i < j && source[i] < x) {           i++;         }         if (i < j) {           source[j] = source[i];           j--;         }       }       source[i] = x;       qsort(source, low, i - 1);       qsort(source, i + 1, high);     }     return source;   }    // /////////////////////////////////////////////   // 排序算法结束   // ////////////////////////////////////////////      public static int[] binarySearch(int[] source) {     int i,j;     int low, high, mid;     int temp;     for (i = 0; i < source.length; i++) {       temp=source[i];       low=0;       high=i-1;       while (low <= high) {         mid = (low + high)/2;         if (source[mid]>temp) {           high=mid-1;         } else {           low = mid + 1;         }       }       for (j= i-1; j>high;j--)          source[j+1]=source[j];       source[high+1]=temp;     }     return source;   }       public static int[] reverse(int[] source) {     int length = source.length;     int temp = 0;     for (int i = 0; i < length >> 1; i++) {       temp = source[i];       source[i] = source[length - 1 - i];       source[length - 1 - i] = temp;     }     return source;   }       public static int[] insert(int[] array, int index, int insertNumber) {     if (array == null || array.length == 0) {       throw new IllegalArgumentException();     }     if (index - 1 > array.length || index <= 0) {       throw new IllegalArgumentException();     }     int[] dest = new int[array.length + 1];     System.arraycopy(array, 0, dest, 0, index - 1);     dest[index - 1] = insertNumber;     System.arraycopy(array, index - 1, dest, index, dest.length - index);     return dest;   }       public static int[] remove(int[] array, int index) {     if (array == null || array.length == 0) {       throw new IllegalArgumentException();     }     if (index > array.length || index <= 0) {       throw new IllegalArgumentException();     }     int[] dest = new int[array.length - 1];     System.arraycopy(array, 0, dest, 0, index - 1);     System.arraycopy(array, index, dest, index - 1, array.length - index);     return dest;   }       public static int[] merge(int[] array1, int[] array2) {     int[] dest = new int[array1.length + array2.length];     System.arraycopy(array1, 0, dest, 0, array1.length);     System.arraycopy(array2, 0, dest, array1.length, array2.length);     return dest;   }       public static int[] offsetArray(int[] array, int offset) {     int length = array.length;     int moveLength = length - offset;     int[] temp = Arrays.copyOfRange(array, moveLength, length);     System.arraycopy(array, 0, array, offset, moveLength);     System.arraycopy(temp, 0, array, 0, offset);     return array;   }       public static List shuffle(List list) {     java.util.Collections.shuffle(list);     return list;   }       public int[] shuffle(int[] array) {     Random random = new Random();     for (int index = array.length - 1; index >= 0; index--) {       // 从0到index处之间随机取一个值,跟index处的元素交换       exchange(array, random.nextInt(index + 1), index);     }     return array;   }    // 交换位置   private void exchange(int[] array, int p1, int p2) {     int temp = array[p1];     array[p1] = array[p2];     array[p2] = temp;   }       private static List<Integer> mergeByList(int[] a, int[] b) {     // 用于返回的新数组,长度可能不为a,b数组之和,因为可能有重复的数字需要去掉     List<Integer> c = new ArrayList<Integer>();     // a数组下标     int aIndex = 0;     // b数组下标     int bIndex = 0;     // 对a、b两数组的值进行比较,并将小的值加到c,并将该数组下标+1,     // 如果相等,则将其任意一个加到c,两数组下标均+1     // 如果下标超出该数组长度,则退出循环     while (true) {       if (aIndex > a.length - 1 || bIndex > b.length - 1) {         break;       }       if (a[aIndex] < b[bIndex]) {         c.add(a[aIndex]);         aIndex++;       } else if (a[aIndex] > b[bIndex]) {         c.add(b[bIndex]);         bIndex++;       } else {         c.add(a[aIndex]);         aIndex++;         bIndex++;       }     }     // 将没有超出数组下标的数组其余全部加到数组c中     // 如果a数组还有数字没有处理     if (aIndex <= a.length - 1) {       for (int i = aIndex; i <= a.length - 1; i++) {         c.add(a[i]);       }       // 如果b数组中还有数字没有处理     } else if (bIndex <= b.length - 1) {       for (int i = bIndex; i <= b.length - 1; i++) {         c.add(b[i]);       }     }     return c;   }       private static int[] mergeByArray(int[] a, int[] b) {     int[] c = new int[a.length + b.length];      int i = 0, j = 0, k = 0;      while (i < a.length && j < b.length) {       if (a[i] <= b[j]) {         if (a[i] == b[j]) {           j++;         } else {           c[k] = a[i];           i++;           k++;         }       } else {         c[k] = b[j];         j++;         k++;       }     }     while (i < a.length) {       c[k] = a[i];       k++;       i++;     }     while (j < b.length) {       c[k] = b[j];       j++;       k++;     }     return c;   }       private static Map<Integer, Integer> mergeByTreeMap(int[] a, int[] b) {     Map<Integer, Integer> map = new TreeMap<Integer, Integer>();     for (int i = 0; i < a.length; i++) {       map.put(a[i], a[i]);     }     for (int i = 0; i < b.length; i++) {       map.put(b[i], b[i]);     }     return map;   }       public static String print(int[] array) {     StringBuffer sb = new StringBuffer();     for (int i = 0; i < array.length; i++) {       sb.append("," + array[i]);     }     System.out.println("\n"+sb.toString().substring(1));     return sb.toString().substring(1);   } }

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Java开发学习 Java数组操作工具

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Java开发学习 Java数组操作工具

看到网上的一段关于对数组操作的代码,觉得有用,在此备用。import java.util.Arrays; import java.util.List; import java.util.Map; import java.util.Rando
2023-05-31

有哪些学习Java编程常用的开发工具

本篇内容介绍了“有哪些学习Java编程常用的开发工具”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!在刚刚接触学习Java编程的时候,我们可以
2023-06-15

初学java开发用哪些工具好

本篇内容介绍了“初学java开发用哪些工具好”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!1、文本文档  文本文档,其实就是记事本,有没有觉
2023-06-27

Java开发者必备10大数据工具和框架

当今IT开发人员面对的最大挑战就是复杂性,硬件越来越复杂,OS越来越复杂,编程语言和API越来越复杂,我们构建的应用也越来越复杂。根据外媒的一项调查报告,中软卓越专家列出了Java程序员在过去12个月内一直使用的一些工具或框架,或许会对你有
2023-05-31

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录