MERGE SORT WITH EXAMPLE

Поделиться
HTML-код
  • Опубликовано: 23 янв 2025

Комментарии • 110

  • @manojmaurya9683
    @manojmaurya9683 4 года назад +9

    If you are making the mistakes it means not copying the solution true teacher❤️

  • @gopichanddadigala9106
    @gopichanddadigala9106 6 лет назад +43

    Sir please give the program to merge sort

  • @satyayedida7375
    @satyayedida7375 6 лет назад +46

    Sir,Please explain merge sort with program.

  • @chodisettyaruna
    @chodisettyaruna 4 года назад +4

    We understood the concept we would be great ful if you explain with the program also

  • @gabrieltan3203
    @gabrieltan3203 3 года назад +9

    Hey Sundeep! Excellent video; explanation is very clear and easy to follow. I just have one piece of feedback: I was wondering if you could edit the closed captions for this video? I have noticed some instances where the auto-generated captions display the wrong words (for example, around the 9.5-minute mark, Sodom instead of sort them, and entity instead of and 30) and this might make it more difficult for the folks globally who rely on closed captions to understand the videos. Thank you very much and have a great day!

  • @IWIAIIT-ARAHULROY
    @IWIAIIT-ARAHULROY 5 лет назад +18

    Sir ur explanation is too good sir....but we are wishing you to explain the example with a programm...then we'll feel it much more easier...

  • @Gurrala.J
    @Gurrala.J 2 года назад

    Good details about merge sort technique
    Tq sir

  • @venkatnirmal3385
    @venkatnirmal3385 Год назад

    Sir Naku next week nundi semester start avtundi mi videos challa baga ardam avtunay Thank you sir

  • @Balaji-26s
    @Balaji-26s 2 года назад

    Thanks Sundeep sir ! Really helpful 👍🏻😸

  • @ask294-d9f
    @ask294-d9f 4 года назад +2

    Sir, I request you to explain this with program the way you explain program with examples is very nice, please explain it with program as early as possible.
    Thanks for your awesome videos.

  • @superfact4556
    @superfact4556 6 лет назад +5

    Excellent explanation
    where is coding part?

  • @tharunmathi5944
    @tharunmathi5944 2 года назад +2

    sir,ur videos are excellent and very clear.can u please explain this merge sort with code please ...

  • @shivateja2808
    @shivateja2808 4 года назад +15

    4 52: it's not 0+1/2.
    It is 0+2/2

  • @sharanchhibbar5155
    @sharanchhibbar5155 5 лет назад +15

    /* C program for Merge Sort */
    #include
    #include

    // Merges two subarrays of arr[].
    // First subarray is arr[l..m]
    // Second subarray is arr[m+1..r]
    void merge(int arr[], int l, int m, int r)
    {
    int i, j, k;
    int n1 = m - l + 1;
    int n2 = r - m;

    /* create temp arrays */
    int L[n1], R[n2];

    /* Copy data to temp arrays L[] and R[] */
    for (i = 0; i < n1; i++)
    L[i] = arr[l + i];
    for (j = 0; j < n2; j++)
    R[j] = arr[m + 1+ j];

    /* Merge the temp arrays back into arr[l..r]*/
    i = 0; // Initial index of first subarray
    j = 0; // Initial index of second subarray
    k = l; // Initial index of merged subarray
    while (i < n1 && j < n2)
    {
    if (L[i]

  • @Lakshmi-cj5rx
    @Lakshmi-cj5rx 5 лет назад

    Nice explanation it helps me alot tq sir

  • @aishwaryasangurdekar2302
    @aishwaryasangurdekar2302 5 лет назад +3

    sir... please prepare video on quick sort.. its a request sir.. 🙏

  • @bharathsripathi6153
    @bharathsripathi6153 4 года назад +2

    sir please explain programs n algorithms for all sorting techniques

  • @ritikasingroli2627
    @ritikasingroli2627 Год назад

    Thank sir for this explanation

  • @pia4637
    @pia4637 4 года назад +7

    for (4:54), why did the mid become ((0+1)/2) when as you have said, it should be the floor value of (low + high) divided by two
    --> low = 0, high = 2, therefore, floor((0+2)/2)?

  • @kishorrathva4097
    @kishorrathva4097 6 лет назад +2

    sir It would be great is u add program and explain it ..as u did in previous sorting videos..

  • @aishwaryasangurdekar2302
    @aishwaryasangurdekar2302 5 лет назад +10

    sir...explain the coding part

  • @Bhargav1245-g7dc
    @Bhargav1245-g7dc 2 года назад

    Nice explanation sir

  • @choco-l4x
    @choco-l4x 5 лет назад +2

    Will you also explain us quick sort program with example program

  • @sarathpydakula1981
    @sarathpydakula1981 4 года назад

    Please explain with both algorithm and example...

  • @mohdmasaoodraza9315
    @mohdmasaoodraza9315 3 года назад

    Thnkuu sir 🙏

  • @adithyavarma758
    @adithyavarma758 Год назад

    Thank you very much sir..

  • @chandanboro8714
    @chandanboro8714 5 лет назад +1

    Sir ....Make a video about Quick sort

  • @rajusrkr5444
    @rajusrkr5444 5 лет назад +3

    explain with program, trace the program explaination required

  • @vamsipamulapati5457
    @vamsipamulapati5457 3 года назад +1

    Sir, please provide a program for merge sort in the comment section

  • @kusalmallick286
    @kusalmallick286 6 лет назад +1

    Similar to binary search technique

  • @PiyushSingh-mt2tb
    @PiyushSingh-mt2tb 5 лет назад +1

    Now where is the algorithms? We could understand how to break the given array, but how to write it as a code? That's what I was looking for.

  • @harpreetnagi9708
    @harpreetnagi9708 6 лет назад

    sir i have watched almost your all videos all are good but please explain with for loop as you have explained in bubble sort

  • @chodisettyaruna
    @chodisettyaruna 4 года назад +2

    Could you please explain merge sort with program and how it works

  • @chatarsingh8222
    @chatarsingh8222 3 года назад

    please take a wider whiteboard so you can explain clearly.

  • @gpraneeth7693
    @gpraneeth7693 Год назад

    Sir meru super

  • @vigneshpandiyan9933
    @vigneshpandiyan9933 3 года назад

    Execution part for this technique...???

  • @appideepika1994
    @appideepika1994 2 года назад

    Please explain the merge sort algorithm sir

  • @tejeswarv450
    @tejeswarv450 5 лет назад

    Nice explanation

  • @snjvkb
    @snjvkb 3 года назад

    Write a programme on merge sort with detailed explanation and iteration

  • @sivaprasad8397
    @sivaprasad8397 3 года назад

    Sir Please explain in another method merge sort as takeing has 1st element as key or piovt

  • @bhavyachowdary1058
    @bhavyachowdary1058 5 лет назад +1

    What is use of mid value

    • @sundeepsaradhi
      @sundeepsaradhi  5 лет назад

      hi
      middle value is used to divide the elements into two parts and this will be implemented using Divide and Conquer method.
      Hope your doubt has been clarified and if not let me know.

  • @amishagrawal4208
    @amishagrawal4208 6 лет назад +1

    Sir please make a video on merge sort programming in C

  • @GaadhiMahendra
    @GaadhiMahendra 5 лет назад

    thanks na,baaga cheppinav.Oka program kuda cheppunte perfect undedi.

  • @santhusanthu2589
    @santhusanthu2589 5 лет назад

    Without coding programming everybody can't understand this example so please I ill resquest exaplain programming

  • @4.otechnologysaikumar829
    @4.otechnologysaikumar829 4 года назад

    Sir I want with example programme....

  • @anilyadav-th5ov
    @anilyadav-th5ov 4 года назад

    thanks sir

  • @shikhatripathi3050
    @shikhatripathi3050 5 лет назад

    Sir apne full program nhi btaya h plz ap pura program btaiye

  • @gauravbhandari1184
    @gauravbhandari1184 5 лет назад

    Helpful

  • @GSP-vd9yr
    @GSP-vd9yr 6 лет назад +2

    Sir plzz explain the programs ( merge n radix sort

  • @b2-mani
    @b2-mani 6 лет назад

    wow

  • @tulasiprasadankam709
    @tulasiprasadankam709 6 лет назад +2

    explain programe step by step

  • @Rohithkumar-fw8zg
    @Rohithkumar-fw8zg 2 года назад

    Sir please tell with program sir

  • @dipikakumari3977
    @dipikakumari3977 5 лет назад +1

    Sir plz explain with coding 😥😥😥😥😥

  • @decodingtimer
    @decodingtimer 4 года назад

    we got the graphical representation but not the program

  • @subramanig2279
    @subramanig2279 2 года назад

    plz explain by tracing program

  • @settyrashmika6456
    @settyrashmika6456 6 лет назад

    Please give c coding to this sort sir

  • @ashishtrivedi3416
    @ashishtrivedi3416 3 года назад

    Sir how to write algorithm??

  • @pavanchennur8411
    @pavanchennur8411 6 лет назад

    What is the use for finding mid

  • @punyamurthymanikantakoushi4609
    @punyamurthymanikantakoushi4609 5 лет назад

    Sir ... explain coding part also please

  • @venkatasaiprasad7733
    @venkatasaiprasad7733 5 лет назад +3

    Sir plss I want merge sort program with explanation sir

  • @webdevschool6597
    @webdevschool6597 6 лет назад

    sir,u may write the code also .

  • @puttapallisatishyadav222
    @puttapallisatishyadav222 3 года назад

    Sir please do a vedio on merge sort program explanation

  • @maddurinagendrareddy9770
    @maddurinagendrareddy9770 3 года назад

    sir please explain bcd addition sunbtractin multiplcation and divide

  • @gadgeTTria
    @gadgeTTria 4 года назад

    Sir where is program for merge sorting

  • @Yason032
    @Yason032 5 лет назад

    Program step by step?

  • @gopichand3076
    @gopichand3076 5 лет назад +1

    Sir explain the merge sort program

  • @mrbotarmy4014
    @mrbotarmy4014 4 года назад

    Sir pls explain the merg sort program ,circular queue progm ,and infix to postfix progm pls

  • @shiva-bg6ve
    @shiva-bg6ve 5 лет назад

    Sir plz explain with program

  • @dhumketu8677
    @dhumketu8677 4 года назад

    Please give program with explanation

  • @yashjain3874
    @yashjain3874 6 лет назад

    Upload video on Merge sort program sir

  • @FunnyTeluguVideos69
    @FunnyTeluguVideos69 Год назад

    Sir we want a merg sort program

  • @venualli3917
    @venualli3917 4 года назад

    Explain with the program

  • @sridharpatnaik3531
    @sridharpatnaik3531 3 года назад

    sir explain with program

  • @Nani0106
    @Nani0106 4 года назад

    Please explain k- way merge

  • @dipukanchan3312
    @dipukanchan3312 5 лет назад

    Plz explain C program for Merge sort...

  • @m.d.ganesh4075
    @m.d.ganesh4075 5 лет назад

    explain with program ,sir

  • @__________________________6910
    @__________________________6910 5 лет назад +1

    Tommorow my exam

  • @krishnaleela6228
    @krishnaleela6228 5 лет назад

    Program explanation kuda chaputara

  • @Akhila_Saraswathi
    @Akhila_Saraswathi 6 лет назад

    can i get a c program for this

  • @suvinkasesuraja4878
    @suvinkasesuraja4878 3 года назад

    Sir please give me program and explain the merge sort and then explain program

  • @rahulchengappa
    @rahulchengappa 9 месяцев назад

    yen mayum chesavu?

  • @vamsipappala2707
    @vamsipappala2707 2 года назад

    Example program

  • @akashrajput1858
    @akashrajput1858 5 лет назад +1

    I want a program of merge sort

  • @harpreetnagi9708
    @harpreetnagi9708 6 лет назад

    please explain for loop

  • @yashjain3874
    @yashjain3874 6 лет назад

    Please upload merge sort and heap sort program video

  • @vhemamalini8706
    @vhemamalini8706 5 лет назад +1

    sir merge sort program plls explain

  • @eslavathprashantheslavathp2136
    @eslavathprashantheslavathp2136 3 года назад

    Sir give the program on merge sort

  • @pavantanniru9956
    @pavantanniru9956 6 лет назад

    Program of merge sort sir

  • @sailajarudra604
    @sailajarudra604 4 года назад

    Sir please explain merge sort program using java

  • @mahendrapal3796
    @mahendrapal3796 6 лет назад

    can you please explain it with code

  • @akashrajput1858
    @akashrajput1858 5 лет назад

    Program nhi hai isi liye video chhota tha

  • @ICECREAM-cy2jo
    @ICECREAM-cy2jo Год назад

    Anna nuvv maavodive

  • @damodarareddypadiri3529
    @damodarareddypadiri3529 5 лет назад

    I need the program for merge sort sir

  • @neeleshkumarsaini7905
    @neeleshkumarsaini7905 6 лет назад

    Pls also give code of merge sort

  • @आपलंगाव-bhari
    @आपलंगाव-bhari 5 лет назад

    i want code explanation of merge sort

  • @bhawika902
    @bhawika902 5 лет назад

    Sir tell program also

  • @kranthiputta4533
    @kranthiputta4533 5 лет назад

    program

  • @harshrajsingh9238
    @harshrajsingh9238 5 лет назад

    i want code

  • @vu5700
    @vu5700 4 года назад

    code plox

  • @b2-mani
    @b2-mani 6 лет назад

    Where's the code