I have a 5 dimensional array, where all indicies range from 2-14. It contains all the possible permutations of a 5 number sequence. This array holds 525720 permutations, which takes quite a while to compute. (5-7 seconds on my Macbook pro). It should be used as a lookup table, to access a value in constant time, or more specific, the value of a certain poker-hand:
array[2][3][4][5][7] // 1
array[5][5][5][5][14] // 2000
Is there a faster way to create this array? I was thinking about persisting the array in some way, and then load it each time my program starts - but is there any efficient ways to do this?
I'm not very familiar with persistence. I dont really know if it's worth it for me, to load it from disk, instead of create it each time. I know about Hibernate, but this seems like a bit of a overkill, just to persist a single array?
array[2][3][4][5][6]is the same asarray[4][2][5][6][3]), and that some hands are impossible (array[3][3][3][3][3]) – BlueRaja - Danny Pflughoeft Feb 4 '10 at 21:07array[2][3][4]p[5][6]in addition toarray[4][2][5][6][3]. I've tried this. You don't have time to sort the cards before doing the array look-up. Sorting the cards is way slower than just doing the calculation so, unfortunately, to get a performance improvement, you have to store all permutations of the hand. – Robert Cartaino♦ Feb 4 '10 at 21:14