Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have vertex IDs, say, 1,2,3,4,5 in a container. I wish to output all possible combinations of triangles with these vertices. So possible triangles would be:

(1,2,3)
(1,2,4) 
(1,2,5) 

and so on .. How do I do this?

share|improve this question
6  
What have you tried? – honk Oct 16 '12 at 11:35
Type "permutation algorithm" into your favourite search engine. – Deestan Oct 16 '12 at 11:38

closed as not a real question by Deestan, Gorpik, Don Roby, honk, Tichodroma Oct 16 '12 at 11:50

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Since it's basic math staff, there is a lot of info about it in the internet:

and a lot of other links. However, if you need all possible triangles, you will need Combinations, not permutations (the triangle [A,B,C] is the same as [B,A,C], right?). Finding info about getting combinations in C++ is very easy, e.g.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.