What's a nice way to merge two sorted arrays in ActionScript (specifically ActionScript 3.0)? The resulting array should be sorted and without duplicates.
|
feedback
|
|
To merge (concatenate) arrays, use Below are two examples of how you can concatenate arrays and remove duplicates at the same time. More convenient way: (you can use
Slightly faster way: (you can loop through the arrays yourself and use
| |||||||
feedback
|
|
This is kind of an simple algorithm to write. I would be surprised if there were a more direct way to do this in Actionscript.
| ||||
|
feedback
|
Then for the "merge" use concat. exemple :
| |||
|
feedback
|
|
Using Array.indexOf to detect duplicates is going to be painfully slow if you have a List containing a large number of elements; a far quicker way of removing duplciates would be to throw the contents of the Array into a Set after concatenating them.
If your program makes heavy use of Collections then if may be prudent to make use of one of the many AS3 Collections frameworks out there which provide a simple interface for manipulating data and will always take the optimal approach when it comes to the implementation. | |||
|
feedback
|
|
Please follow the below step to get your answer:
Returned "ansArr" will be sorted and without duplicate merged array of two array. | |||
|
feedback
|