《Java核心技术I》并行数组算法

并行数组算法

Arrays类提供了大量并行化操作。

Arrays.parallelSort方法可以对一个基本类型值或对象的数组排序。

java 复制代码
package arrays;

import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.Arrays;
import java.util.Comparator;

public class ParallelSortTest {

    public static void main(String[] args) throws IOException {
        var contents = new String(
                Files.readAllBytes(Path.of("D:\\ChromeCoreDownloads\\eclipse-jee-2024-09-R-win32-x86_64\\eclipse\\eclipse-workspace\\JavaCore1\\src\\arrays\\alice.txt")),StandardCharsets.UTF_8);
//        System.out.println(contents);
        String[] words = contents.split("[\\P{L}]+");
        System.out.println(Arrays.toString(words));
        Arrays.parallelSort(words, Comparator.comparing(String::length));
        System.out.println(Arrays.toString(words));
    }

}

三种:

  • 默认排序:Arrays.parallelSort(words)
  • 提供比较器排序:Arrays.parallelSort(words, Comparator.comparing(String::length));
  • 只排序提供的范围:values.parallelSort(values.length/2,values.length);

parallelSetAll方法会用由一个函数计算得到的值填充一个数组。

java 复制代码
package arrays;

import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.Arrays;
import java.util.Comparator;

public class ParallelSetAllTest {

    public static void main(String[] args) throws IOException {
        int[] values = new int[20];
        Arrays.parallelSetAll(values, i->i+1);
        System.out.println(Arrays.toString(values));
    }

}
//[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]

最后一个parallelPrefix方法,用一个给定结合操作的相应前缀的累加结果替换各个数组元素。

java 复制代码
package arrays;

import java.util.Arrays;

public class ParallelPrefixTest {

    public static void main(String[] args) {
        int[] values = new int[] {1,2,3,4,5,6,7,8,9}; 
        Arrays.parallelPrefix(values, (x,y)->x+y);
        System.out.println(Arrays.toString(values));
    }

}
//[1, 3, 6, 10, 15, 21, 28, 36, 45]
相关推荐
易和安6 分钟前
JS进阶DAY5|JS执行机制
开发语言·javascript·ecmascript
余生H10 分钟前
前端的 Python 入门指南(六):调试方式和技巧对比
开发语言·前端·javascript·python
Evand J32 分钟前
自适应卡尔曼滤波(包括EKF、UKF、CKF等)的创新思路——该调什么、不该调什么
开发语言·笔记·matlab·卡尔曼滤波·自适应滤波
Edward.W32 分钟前
ElementEye,网页分析器
python
汝即来归35 分钟前
什么是运算符重载?如何在 C++ 中进行运算符重载?运算符重载在面向对象编程中的好处是什么?
开发语言·c++
ac-er888836 分钟前
PHP和GD如何根据颜色生成渐变效果
开发语言·php
代码写着写着就会了37 分钟前
打开matlab生成的fig文件
开发语言·matlab
IT信息技术学习圈39 分钟前
2024年12月CCF编程能力等级认证(GESP)C++一级试卷讲解
开发语言·c++
ling1s39 分钟前
C#核心(16)万物之父和装箱拆箱
开发语言·c#
liupenglove1 小时前
protobuf c++开发快速上手指南
开发语言·c++