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 :
- {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
- {0,6,4,3,7,8,0}
- {0,6,3,4,7,8,0}
- {0,6,3,7,4,8,0}
- {0,6,3,7,8,4,0}
- {0,3,6,4,7,8,0}
- {0,3,6,7,4,8,0}
- {0,3,6,7,8,4,0}
- {0,3,6,7,4,8,0}
- {0,3,6,7,8,4,0}
- {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.