How to merge two arrays of objects in angular?

Sorting Algorithms: Let A and B be two linear arrays. How to merge these two arrays into a new array C?

  • Answer:

    Are these arrays sorted already? Because if they are already sorted, then using two variables, for example, i and j, being i the first element in the first array, and j the first element in the second array, then: Compare array[i] and array[j], if array[i] is < array[j], then in C, add array[i] and i++, now i = 1, and compare array[i] and array[j], if array[i] is < array[j] again, then add to C array[i] and i++ again, else, add to C array[j] and j++ and so on.. :) Get it?

Oscar Bralo at Quora Visit the source

Was this solution helpful to you?

Other answers

As Oscar pointed out,  the question is if each are sorted already. If not, I'd sort each one separately ,to think of the counter way of doing it, merge, then sort, you can see it would have higher complexity. That is: length(A) + length(B) =  length(C) O(N) of a good sort is usually O(nlogn) unless there are specific properties that allow for something like counting sort etc.  1- Sorting each first will give: O(N) of A = O(length(A)*log(length(A)) O(N) of B = O(length(B)*log(length(B)) Now that you have a 2 sorted arrays, create an array C of length A+B (obviously). I'd prefer not to write out the algorithm, Oscar has already, in words I'd think of 2 decks of cards with random numbers on them, sorted top to bottom. In a loop, until *one* of the decks A or B runs out of cards: - You will look at the top of each deck, the lower number gets moved to C. At one point, one of the decks will exhaust first, you can they simply move (arraycopy) the remainder of that deck to C, this is because those are already sorted.  You'll notice some interesting properties. 1- If the numbers are pretty well intermixed, you reach n² comparisons. 2- If the numbers mostly are disjoint, as in most of B is larger than A or the reverse, this procedure gets closer to O(n) as you can consider the array copy as a constant time operation ( or even iteratively , O(n)).

James Szczesny

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.