All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.src.order.insideOut.js Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
import none from "./none";
import {sum} from "./ascending";

export default function(series) {
  var n = series.length,
      i,
      j,
      sums = series.map(sum),
      order = none(series).sort(function(a, b) { return sums[b] - sums[a]; }),
      top = 0,
      bottom = 0,
      tops = [],
      bottoms = [];

  for (i = 0; i < n; ++i) {
    j = order[i];
    if (top < bottom) {
      top += sums[j];
      tops.push(j);
    } else {
      bottom += sums[j];
      bottoms.push(j);
    }
  }

  return bottoms.reverse().concat(tops);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy