Java Program #17 - Sort an Array of Integers in ascending order

แชร์
ฝัง
  • เผยแพร่เมื่อ 2 ธ.ค. 2024

ความคิดเห็น • 44

  • @patrykz971
    @patrykz971 ปีที่แล้ว +7

    Dziękuję za ten filmik. Pozdrowienia z Polski 😊

  • @enesfuenfeins
    @enesfuenfeins 20 วันที่ผ่านมา +1

    bro very good explenation and technique

  • @kimberlymahilum7800
    @kimberlymahilum7800 ปีที่แล้ว +3

    you deserve more likes and subscribers. You're a life saver, thank you so much for this content.

  • @riddhibanerjee131
    @riddhibanerjee131 ปีที่แล้ว +3

    This was really helpful as I am learning for the first time...thank you so much!!

  • @kirtipawar8442
    @kirtipawar8442 21 วันที่ผ่านมา

    Number of sorting methods is there, can you please make video to compare all sorting methods

  • @ashensavinda99
    @ashensavinda99 หลายเดือนก่อน +1

    Very clear. Thanks 🙏🏾

  • @User_user1445
    @User_user1445 11 หลายเดือนก่อน +2

    Amazing Thank you

  • @Madhuu11
    @Madhuu11 ปีที่แล้ว +1

    You're doing a great job brw! Thank you 😌♥️

  • @MohammadShafi194
    @MohammadShafi194 4 หลายเดือนก่อน +1

    this is really helpful

  • @Madeeha-u1k
    @Madeeha-u1k 8 หลายเดือนก่อน +1

    Thank-you something.

  • @SlushiGuy
    @SlushiGuy 9 หลายเดือนก่อน +1

    Is this insertion sort or selection sort

    • @programmingforbeginners7392
      @programmingforbeginners7392  9 หลายเดือนก่อน +1

      This is simple sort
      Watch this video to know selection and insertion sort algorithms
      th-cam.com/video/QhtGiq2GBn0/w-d-xo.html

  • @houmengwong-o3u
    @houmengwong-o3u 10 หลายเดือนก่อน +2

    If you have a million numbers that would take for ever. How would you do it in that case?

    • @alkrki510
      @alkrki510 10 หลายเดือนก่อน

      //There is a build in method
      //Just import array
      import java.util.Arrays;
      //And for example
      Int arrayName[]={8,2,6,7};
      Arrays.sort(arrayName);
      //The new array is
      {2,6,7,8}
      //then it is sorted

    • @officialyusra
      @officialyusra 9 หลายเดือนก่อน

      it would not take the computer forever.

    • @daniela8375
      @daniela8375 9 หลายเดือนก่อน

      ⁠@@officialyusra O(n^2) isn’t good enough in some cases. @alkrki510 has the best solution

  • @thuppadalokanath5444
    @thuppadalokanath5444 10 หลายเดือนก่อน +1

    thank you sir😍

  • @dunniade8934
    @dunniade8934 4 หลายเดือนก่อน +1

    You didn't put in your braces on the first for loop, so how possible didn't it show errors. And if you were not going to put braces, you could have still closed it with semicolon.. i am still wondering why there were no bugs in that code.

    • @programmingforbeginners7392
      @programmingforbeginners7392  4 หลายเดือนก่อน +4

      if you have only one line of code in for loop than curly braces are optional. Curly braces in for loop are required for multiple lines of code inside for loop
      hope this helps.

  • @laxmanaraomalla9738
    @laxmanaraomalla9738 9 หลายเดือนก่อน

    Can we use j=i in inner loop

  • @needmtuan
    @needmtuan 10 หลายเดือนก่อน +1

    thanks

  • @soulexesns9522
    @soulexesns9522 6 หลายเดือนก่อน +1

    thank you :)

  • @vishnubj826
    @vishnubj826 ปีที่แล้ว +1

    where are you going .....pls reduce your speed

  • @arunkumartirumala2852
    @arunkumartirumala2852 7 หลายเดือนก่อน

    Index out of bound
    I+1 does not exist

    • @programmingforbeginners7392
      @programmingforbeginners7392  6 หลายเดือนก่อน

      Check your indices

    • @Voixy
      @Voixy 14 วันที่ผ่านมา

      i needs to be smaller than array.length-1, because j=i+1, so fix for that is: for(i=0; i

  • @shabarimazumder2598
    @shabarimazumder2598 29 วันที่ผ่านมา

    I think its spelt as array not aarrae!bro

  • @rdsoffice8257
    @rdsoffice8257 11 หลายเดือนก่อน

    Line no 13 14 15 bounce ho gya kucch samjh nahi aaya

    • @programmingforbeginners7392
      @programmingforbeginners7392  11 หลายเดือนก่อน +2

      x = 1
      y = 2
      Ye dono variables ki values Hume interchange karni hai.. to ye karenge:
      temp = x (temp me 1 store ho gaya)
      x = y (x me 2 store ho gaya)
      y = temp (ab y me 1 store ho gaya Jo humne x se liya tha)
      so now:
      x = 2
      y = 1
      Values interchange ho gayi..
      Bas yahi hai line 13, 14, 15 me..
      Practice Karo

    • @rdsoffice8257
      @rdsoffice8257 11 หลายเดือนก่อน

      @@programmingforbeginners7392 Got it Thank you soo much