javascript - Find all *unique combinations* of an array - Stack Overflow

I'd like to find all unique binations of element positions of an array in JavaScript.This is my ar

I'd like to find all unique binations of element positions of an array in JavaScript.

This is my array:

var places = ['x', 'y', 'z'];

I'd like to find the following binations: [0,1], [0,2], [1,2].

Currently I have the functional but slightly unwieldy:

for (var i = 0; i < places.length; i++) {
    for (var j = 0; j < places.length; j++) {
        if ((j > i) && (j != i)) { 
            console.log(i, j);
        }
    }
}

Is there a neater way to do it?

I'd like to find all unique binations of element positions of an array in JavaScript.

This is my array:

var places = ['x', 'y', 'z'];

I'd like to find the following binations: [0,1], [0,2], [1,2].

Currently I have the functional but slightly unwieldy:

for (var i = 0; i < places.length; i++) {
    for (var j = 0; j < places.length; j++) {
        if ((j > i) && (j != i)) { 
            console.log(i, j);
        }
    }
}

Is there a neater way to do it?

Share Improve this question edited Nov 4, 2011 at 18:10 Richard asked Nov 3, 2011 at 12:46 RichardRichard 33k30 gold badges111 silver badges146 bronze badges 3
  • You don't need j!= i, every time you can reach it, it will evaluate false. any time j==i, j>i will evaluate to false, and the second condition will be skipped, along with rest of the 'if' statement. although, you could just use jodaka's suggestion and eliminate the if statement altogether – Chris Bye Commented Nov 3, 2011 at 13:50
  • You're not paring the values of the array atm. If you want to pare the value, use places[i] and places[j] instead of i and j. – Rob W Commented Nov 3, 2011 at 13:51
  • @RobW - sorry, I wasn't clear, by unique binations I mean unique binations of array positions, not of the values in the array. – Richard Commented Nov 4, 2011 at 18:09
Add a ment  | 

2 Answers 2

Reset to default 9
// from codecademy.

var people = ["Alice", "Bob", "Carol", "Dave", "Ed"];
var n = people.length;
var i, j;

for(i = 0; i < n; i++){
    for(j = i + 1; j < n; j++){
        console.log(people[i] + ", " +  people[j]);
    }
}

// output
Alice, Bob
Alice, Carol
Alice, Dave
Alice, Ed
Bob, Carol
Bob, Dave
Bob, Ed
Carol, Dave
Carol, Ed
Dave, Ed

You can start j at i + 1 and eliminate your if condition.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743645850a4483742.html

相关推荐

  • javascript - Find all *unique combinations* of an array - Stack Overflow

    I'd like to find all unique binations of element positions of an array in JavaScript.This is my ar

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信