Блог пользователя guptaji30

Автор guptaji30, история, 2 года назад, По-английски

Given an array, arr[] of integers. The task is to sort the elements of the given array in the increasing order of their modulo with 3 maintaining the order of their appearance.

Expect time complexity O(N) and the interviewer said that it can be done in only one/two traversal(s)(sorry I don't remember it clearly, it was quite sometime ago).

Expected space complexity O(1).

  • Проголосовать: нравится
  • +5
  • Проголосовать: не нравится

»
2 года назад, # |
Rev. 3   Проголосовать: нравится -22 Проголосовать: не нравится

https://en.wikipedia.org/wiki/Dutch_national_flag_problem

However, stability requirement is not achievable in the given constraints.

»
2 года назад, # |
  Проголосовать: нравится -23 Проголосовать: не нравится

We can use dutch national flag as modulo with 3 will leave us with an array of 0, 1, 2. So the problem will boil down to something like this.

»
2 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Can do it in 2 traversals with no extra space. In one traversal you can get number of 0s,1s and 2s. So in the second traversal, if you encounter a number, you know its exact position (from the previous traversal). Just swap with its exact position and continue the process.

  • »
    »
    2 года назад, # ^ |
    Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

    can you please elaborate I had though of the same thing but wasn't sure if it will maintain the order of the elements

    • »
      »
      »
      2 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      okay, I just gave a thought and found out that the order will not be maintained. If you allow one more traversal then it is possible definitely. In the second traversal replace each value with its original position in the sorted array, this can be done using the number of 0,1,2. Finally, in the 3rd traversal, swap it i.e place everything in the positions stored. Maybe this swapping can be done in the 2nd traversal only efficiently but I guess it's tricky.

      • »
        »
        »
        »
        2 года назад, # ^ |
          Проголосовать: нравится 0 Проголосовать: не нравится

        Can you write the code for this ??

        • »
          »
          »
          »
          »
          2 года назад, # ^ |
            Проголосовать: нравится 0 Проголосовать: не нравится
          Code
»
2 года назад, # |
Rev. 2   Проголосовать: нравится -13 Проголосовать: не нравится

.

»
2 года назад, # |
  Проголосовать: нравится +6 Проголосовать: не нравится

I think below code will work assuming input can be modified It uses two passes one to count the number of 0,1,2's and second for modifying the input to make it sorted by starting three pointers from 0,cnt[0],cnt[0]+cnt[1].

code
  • »
    »
    2 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    I have a doubt.... for example you are changing value of a[oneindx], but you are not storing its previous value i mean it's previous value would be diminshed?

    • »
      »
      »
      2 года назад, # ^ |
        Проголосовать: нравится +7 Проголосовать: не нравится
      This is very standard technique in which we can store information about two numbers using a single number.
      let us say some n 
      n=4
      and now i want to somehow store 50 also.
      So first we require some number that is bigger than both 4 and 50 so let us say 51 is one such number
      so new modified number will be n=4+51*50;
      now if we need to get information of both number 
      so original number = n%51=(4+51*50)%51=(4%51+(50*51)%51)%51=4%51=4(original number)
      if we want new number then it is equal to= n/51(integer division)=(4+51*50)/51=0+50=50(second number).
      so in this we are storing information of two numbers in a single number.