search

Home  >  Q&A  >  body text

java - topN排序问题求解。

有个字符串数组,string[] str = {A,B,C,D,E,F,G,H};,数组分别对应一个整数数组,int[] a = {3,2,6,4,8,9,1,23};,类似于这样,对整数数组中的数从大到小排序,然后将整数数组对应的字符串数组按序输出,求解java代码的实现方式。

阿神阿神2908 days ago556

reply all(1)I'll reply

  • 天蓬老师

    天蓬老师2017-04-18 10:50:07

    You define a Holder class to save the character-number mapping, then sort all Holders according to the numbers in the Holders from large to small, and finally output the characters of each Holder in order.

    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    11

    12

    13

    14

    15

    16

    17

    18

    19

    20

    21

    22

    23

    24

    25

    26

    27

    28

    29

    30

    31

    32

    33

    34

    35

    36

    37

    38

    39

    40

    41

    42

    43

    44

    45

    46

    47

    <code>import java.util.Arrays;

     

    public class Test {

     

        static class Holder implements Comparable<Holder> {

     

            public int num;

            public String str;

     

            public Holder(String str, int num) {

                this.str = str;

                this.num = num;

            }

     

            @Override

            public int compareTo(Holder that) {

                return that.num - this.num; // 逆序排序

            }

     

        }

     

        public static void test(String[] strs, int[] nums) {

            if (strs.length != nums.length) {

                return;

            }

     

            Holder[] holders = new Holder[strs.length];

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

                holders[i] = new Holder(strs[i], nums[i]);

            }

     

            Arrays.sort(holders);

     

            for (Holder holder : holders) {

                System.out.print(holder.str + " ");

            }

            System.out.println();

        }

     

        public static void main(String[] args) throws Exception {

            String[] strs = {"A", "B", "C", "D", "E", "F", "G", "H"};

            int[] a = {3, 2, 6, 4, 8, 9, 1, 23};

     

            test(strs, a);

        }

    }

    </code>

    Run results:

    reply
    0
  • Cancelreply