it.unimi.dsi.Util.invertPermutationInPlace()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(3.4k)|赞(0)|评价(0)|浏览(211)

本文整理了Java中it.unimi.dsi.Util.invertPermutationInPlace()方法的一些代码示例,展示了Util.invertPermutationInPlace()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.invertPermutationInPlace()方法的具体详情如下:
包路径:it.unimi.dsi.Util
类名称:Util
方法名:invertPermutationInPlace

Util.invertPermutationInPlace介绍

[英]Computes in place the inverse of a permutation expressed as an array of n distinct integers in [0 .. n).

Warning: if perm is not a permutation, essentially anything can happen.
[中]在[0..n]中计算置换的逆,置换表示为n个不同整数的数组。
警告:如果perm不是一个排列,基本上任何事情都可能发生。

代码示例

代码示例来源:origin: it.unimi.dsi/webgraph

  1. /** Renumbers by decreasing size the components of this set.
  2. *
  3. * <p>After a call to this method, both the internal status of this class and the argument
  4. * array are permuted so that the sizes of strongly connected components are decreasing
  5. * in the component index.
  6. *
  7. * @param size the components sizes, as returned by {@link #computeSizes()}.
  8. */
  9. public void sortBySize(final int[] size) {
  10. final int[] perm = Util.identity(size.length);
  11. IntArrays.parallelRadixSortIndirect(perm, size, false);
  12. IntArrays.reverse(perm);
  13. final int[] copy = size.clone();
  14. for (int i = size.length; i-- != 0;) size[i] = copy[perm[i]];
  15. Util.invertPermutationInPlace(perm);
  16. for(int i = component.length; i-- != 0;) component[i] = perm[component[i]];
  17. }

代码示例来源:origin: it.unimi.dsi/webgraph

  1. /**
  2. * Renumbers by decreasing size the components of this set.
  3. *
  4. * <p>After a call to this method, both the internal status of this class and the argument array
  5. * are permuted so that the sizes of connected components are decreasing in the component index.
  6. *
  7. * @param size the components sizes, as returned by {@link #computeSizes()}.
  8. */
  9. public void sortBySize(final int[] size) {
  10. final int[] perm = Util.identity(size.length);
  11. IntArrays.parallelRadixSortIndirect(perm, size, false);
  12. IntArrays.reverse(perm);
  13. final int[] copy = size.clone();
  14. for (int i = size.length; i-- != 0;)
  15. size[i] = copy[perm[i]];
  16. Util.invertPermutationInPlace(perm);
  17. for (int i = component.length; i-- != 0;)
  18. component[i] = perm[component[i]];
  19. }

代码示例来源:origin: it.unimi.dsi/dsiutils

  1. public static void main(final String[] arg) throws IOException, ClassNotFoundException, JSAPException {
  2. SimpleJSAP jsap = new SimpleJSAP(PermutedFrontCodedStringList.class.getName(), "Builds a permuted front-coded list of strings using a given front-coded string list and a permutation (either in text or binary format).",
  3. new Parameter[] {
  4. new Switch("invert", 'i', "invert", "Invert permutation before creating the permuted list."),
  5. new Switch("text", 't', "text", "The permutation is a text file."),
  6. new UnflaggedOption("list", JSAP.STRING_PARSER, JSAP.REQUIRED, "A front-coded string list."),
  7. new UnflaggedOption("permutation", JSAP.STRING_PARSER, JSAP.REQUIRED, "A permutation for the indices of the list (in DataInput format, unless you specify --text)."),
  8. new UnflaggedOption("permutedList", JSAP.STRING_PARSER, JSAP.REQUIRED, "A the filename for the resulting permuted list."),
  9. });
  10. JSAPResult jsapResult = jsap.parse(arg);
  11. if (jsap.messagePrinted()) return;
  12. final String permutationFile = jsapResult.getString("permutation");
  13. final int[] permutation = jsapResult.userSpecified("text")
  14. ? IntIterators.unwrap(TextIO.asIntIterator(permutationFile))
  15. : BinIO.loadInts(permutationFile);
  16. if (jsapResult.getBoolean("invert")) Util.invertPermutationInPlace(permutation);
  17. BinIO.storeObject(
  18. new PermutedFrontCodedStringList((FrontCodedStringList)BinIO.loadObject(jsapResult.getString("list")), permutation),
  19. jsapResult.getString("permutedList")
  20. );
  21. }
  22. }

相关文章