I have a problem with this case to Insert a number into a list of array. Let me just straight to the case. I'm not post any code in here because I believe that my code wasn't working as well as I thought.

I will tell you the details about this. This is a dynamic array that created on VB.NET. Example: I have a list of array just like below this {0,3,7,8,0}. This is the list of the array. So what I want to ask is about how to insert two variable into the list. Insert is not just like that but we do have like statistic like this explanation :

  1. {0,3,7,8,0}

The 3 always should be in front of 7 and 8 so do with the 7 always in front of 8 and before 3

and now I will add 2 variable into the list of array. But please noticed that this two variables will be sorted for example {6,4} the first variable will be always in the first of before "4" and if I add "4" and in the first list of array its number "4" is already existed the "4" number will be not added to the list, there will be added only "6" number.

So then if I add this 2 variables then it will be 10 possibilities just like below this

  1. {0,6,4,3,7,8,0}
  2. {0,6,3,4,7,8,0}
  3. {0,6,3,7,4,8,0}
  4. {0,6,3,7,8,4,0}
  5. {0,3,6,4,7,8,0}
  6. {0,3,6,7,4,8,0}
  7. {0,3,6,7,8,4,0}
  8. {0,3,6,7,4,8,0}
  9. {0,3,6,7,8,4,0}
  10. {0,3,7,8,6,4,0}

Please be reminded and be pleased that first integer in the first index of array always 0 and also with the latest one always zero.

I stuck in this case so if any helped will be so much appreciated.

link|improve this question

75% accept rate
Do you want just one the possibilities, or do you want the insertion to randomly choose one of these possibilities? Also, if this is homework you should use the homework tag so we can help you towards the answer instead of explicitly spelling it out (academic integrity). – cable729 Dec 8 '11 at 17:11
Hi thanks for your comment and your message. There will be 10 possibility randomly that's fine but as we knew that there is an explanation or rule to insert the variable to the list of array so there will be 10 possibility and always be. If I have 5 variables like above this list then it will be multiplied by 2 so the possibility will be 10. Also if I add 2 more variable then it will be 12 possibilities. I already explained the basic rule before insert the variable. Sorry if I forgot to snapped the homework project. I will edit it immediately. Thanks a lot for the message and help me before. – javalovers Dec 8 '11 at 17:17
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.