Permutation

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
Need help to permutate all the posible combination of string for example

Dim arr(2) As String
arr(0) = "A"
arr(1) = "B"
arr(2) = "C"

I need the list of posible combination like "ABC" , "ACB", ... etc

Thanks.
 
Dim arr(2,2) As String

arr(0,0) = "A"
arr(0,1) = "B"
arr(0,2) = "C"
arr(1,0) = "A"
arr(1,1) = "B"
arr(1,2) = "C"
arr(2,0) = "A"
arr(2,1) = "B"
arr(2,2) = "C"

For _i As Integer = 0 To 2
For _j As Integer = 0 To 2
For _k As Integer = 0 To 2
Console.Writeline(arr(_i,_i) & arr(_i,_j) & arr(_i,_k))
Next
Next
Next
 
Hi Stephany,

On this and similar forums, it is seen as bad form to answer homework
questions. Let's try to avoid doing that, OK?

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
 
Back
Top