All Sorting Techniques with clear explanation

แชร์
ฝัง
  • เผยแพร่เมื่อ 18 ก.ย. 2024
  • Watch all sortings with clear explanation in the following link..
    www.udemy.com/...
    Watch this playlist for Placements related training videos in the following link
    • Top 100 MCQs in C ("Wa...
    Watch 50 more MCQs in the following link....
    • Top 50 MCQs in C
    Best way to understand Patterns in C
    • patterns in C - Tips a...
    Watch design and Analysis of Algorithms in the following link.
    www.udemy.com/...
    Watch "Best Loop programming and Patterns in C- Tips & Tricks " in the following link...
    www.udemy.com/...
    Watch Formal languages & Automata theory in the following link
    www.udemy.com/...
    You can watch "Tricky 150 mcqs in C" in the following link
    www.udemy.com/...
    Technical lectures by Shravan Kumar Manthri.
    Watch Technical C programming
    • Technical C coding : p...
    Watch Data Warehousing & Data Mining
    • 1. Multi-Dimensional ...
    Watch Design & Analysis of Algorithms
    • 1. Introduction to the...
    Watch Formal Languages & Automata theory
    • 1. Introduction to Aut...
    Visit us: www.csegurus.com
    Contact me @ fb : shravan.kites@gmail.com
    Like us on fb: CSE GURUS
    This video explains "All Sorting Techniques" related to Concepts in C . #ShravankumarManthri#CSEGURUS

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

  • @freecoder522
    @freecoder522 2 ปีที่แล้ว

    you the best teacher .......................

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

      very great to hear...Watch Top 90 Data Structures MCQs in the following link...
      th-cam.com/video/i2LTAJhkFf8/w-d-xo.html

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

    U r great 🙏🙏🙏 sir

    • @CSEGURUS
      @CSEGURUS  3 ปีที่แล้ว

      Thank u...Watch Top 90 Data Structures MCQs in the following link...
      th-cam.com/video/i2LTAJhkFf8/w-d-xo.html

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

    Sir please make video on 100 mcq for data structures and algorithms.

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

      It vl be recorded and uploaded in the month of June.

    • @mainakchakraborty8795
      @mainakchakraborty8795 3 ปีที่แล้ว

      @@CSEGURUS thank u so much sir it will be very helpful to us

  • @malubalumbwe
    @malubalumbwe ปีที่แล้ว

    Really helpfull🤝

    • @CSEGURUS
      @CSEGURUS  ปีที่แล้ว

      Glad to hear that...You can watch this playlist for placement related stuff in C
      th-cam.com/play/PLYT7YDstBQmEGhVqAoubBS0OE_5m4JDUe.html

  • @Wolfiie95
    @Wolfiie95 ปีที่แล้ว

    //2-6

  • @venkatakrishnan8106
    @venkatakrishnan8106 3 ปีที่แล้ว

    i think your algorithem is wrong,kindly check it
    here is mine
    void bubbleSort(int arr[], int length)
    {
    _Bool isSorting = 1;
    for (int i = 0; i < length && isSorting; i++)
    {
    isSorting = 0;
    for (int j = 0; j < length - i - 1; j++)
    {
    if (arr[j] > arr[j + 1])
    {
    swap(&arr[j], &arr[j + 1]);
    isSorting = 1;
    }
    }
    }
    }

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

      Its not wrong. Checkout one more time.

    • @venkatakrishnan8106
      @venkatakrishnan8106 3 ปีที่แล้ว

      @@CSEGURUS in your function the 2nd for loop will always run but the if condition alway fail ,that what i was saying
      consider the sorted array
      1,2,3,4,5
      count++ in the 2nd for loop ,not inside the if condition ,your's will run , and count will increment .
      am i right ?

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

      in special case
      1:04:43
      your flag variable is inside if condition(which always false for sorted array),
      But it should be outside the if condition and inside the 2nd for loop,
      so the complexity will be n

    • @CSEGURUS
      @CSEGURUS  3 ปีที่แล้ว

      I have written the same right? " flag==0" is outside j loop and inside i loop .