Home » Quick Sort | Complete explanation for Beginners and Code | DSA-One Course #20 | Anuj Bhaiya | Chia sẻ về chủ đề quicksort c++ |

Quick Sort | Complete explanation for Beginners and Code | DSA-One Course #20 | Anuj Bhaiya | Chia sẻ về chủ đề quicksort c++ |

Có đúng là bạn đang muốn tìm hiểu bài viết nói về quicksort c++ có phải không? Có phải bạn đang muốn tìm chủ đề Quick Sort | Complete explanation for Beginners and Code | DSA-One Course #20 | Anuj Bhaiya đúng vậy không? Nếu đúng như vậy thì mời bạn xem nó ngay tại đây.

Quick Sort | Complete explanation for Beginners and Code | DSA-One Course #20 | Anuj Bhaiya | Xem thông tin về laptop tại đây.

[button color=”primary” size=”medium” link=”#” icon=”” target=”false” nofollow=”false”]XEM VIDEO BÊN DƯỚI[/button]

Ngoài xem những thông tin về laptop mới cập nhật này bạn có thể xem thêm nhiều thông tin hữu ích khác do soyncanvas.vn cung cấp tại đây nha.

Thông tin liên quan đến chủ đề quicksort c++.

Xin chào các bạn, Trong video này, chúng ta sẽ tìm hiểu về Thuật toán Sắp xếp Nhanh. Theo dõi để cập nhật: Instagram: LinkedIn: Telegram: DSA-One Course: Sử dụng #DSAOne để truyền bá kiến ​​thức và thể hiện sự ủng hộ của bạn trên LinkedIn, Instagram. Tham gia Nhóm Telegram cho khóa học DSA-One:.

Hình ảnh liên quan đếnbài viết Quick Sort | Complete explanation for Beginners and Code | DSA-One Course #20 | Anuj Bhaiya.

Quick Sort | Complete explanation for Beginners and Code | DSA-One Course #20 | Anuj Bhaiya

Quick Sort | Complete explanation for Beginners and Code | DSA-One Course #20 | Anuj Bhaiya

>> Ngoài xem nội dung này bạn có thể tìm hiểu thêm nhiều Thông tin hay khác tại đây: Xem thêm thông tin hữu ích tại đây.

Từ khoá liên quan đến chuyên mục quicksort c++.

#Quick #Sort #Complete #explanation #Beginners #Code #DSAOne #Anuj #Bhaiya.

quicksort,quicksort algorithm,quicksort example,quicksort complexity,quicksort (algorithm),quicksort c++,quicksort python,quicksort concept,quicksort in-place,quicksort animation,how does quicksort work,quicksort java,quick-sor,quicksort algorithm divide and conquer,python quicksort,in place quicksort,inplace quicksort,quicksort inplace,quicksort analysis,quicksort beispiel,aprender quicksort,quicksort em python,quicksort explained,working of quicksort.

Quick Sort | Complete explanation for Beginners and Code | DSA-One Course #20 | Anuj Bhaiya.

quicksort c++.

Rất mong những Chia sẻ về chủ đề quicksort c++ này sẽ mang lại giá trị cho bạn. Chúng tôi chân thành .

25 thoughts on “Quick Sort | Complete explanation for Beginners and Code | DSA-One Course #20 | Anuj Bhaiya | Chia sẻ về chủ đề quicksort c++ |”

  1. public class QucikSort {

    static void Sort(int arr[],int low,int high) {

    if(low>high) return;

    int mid = low+(low+high)/2;

    int pivot = arr[mid];

    int i = low;

    int j = high;

    while(i<j) {

    while(arr[i]<pivot) {i++;}

    while (arr[j]>pivot) {j–;}

    if(i<=j) {

    int temp =arr[i];

    arr[i]= arr[j];

    arr[j]= temp;

    i++;

    j–;

    }

    }

    if(low<j)

    Sort(arr,low,j);

    if(high>i)

    Sort(arr,i,high);

    }

    public static void main(String args[]) {

    int arr[] = {5,8,45,3,54,8,3,5,31,4,21,2,5,1}; //hardcode

    System.out.print("Before quick sorting:");

    for(int i=0;i<arr.length;i++) {

    System.out.print(" " +arr[i]); //loop for printing array

    }

    System.out.println(); // print statement for printing it on nextline;

    Sort(arr, 0, arr.length-1);

    System.out.print("After quick sorting:");

    for(int i=0;i<arr.length;i++) {

    System.out.print(" "+arr[i]);////loop for printing array

    }

    }

    }

    sir iam getting stack overflow error plz help me stuck with my code
    below is my error
    Exception in thread "main" java.lang.StackOverflowError

    at QucikSort.Sort(QucikSort.java:21)

    at QucikSort.Sort(QucikSort.java:21)

    at QucikSort.Sort(QucikSort.java:21)

    at QucikSort.Sort(QucikSort.java:21)

  2. The complete C++ working Code below with reference to video:

    #include <bits/stdc++.h>

    using namespace std;

    int partition(int a[], int l, int h){

    int i = l, j = h;

    int pivot = a[l];

    while (i<j) {

    while (a[i] <= pivot && i<j)

    i++;

    while (a[j] > pivot && i<=j)

    j–;

    if (i<j)

    swap(a[i],a[j]);

    }

    swap(a[l], a[j]);

    return j;

    }

    void QuickSort(int a[], int l, int h){

    if(l<h){

    int pivot = partition(a, l, h);

    QuickSort(a, l, pivot-1);

    QuickSort(a, pivot + 1, h);

    }

    }

    int main()

    {

    int arr[] = {10, 7, 8, 9, 1, 5, 37, 89, 28, 39};

    int n = sizeof(arr) / sizeof(arr[0]);

    QuickSort(arr, 0, n – 1);

    for(int i=0;i<n;i++){

    cout<<arr[i]<<endl;

    }

    return 0;

    }

  3. your logic should actually look like :
    while (i<j) {
    while (a[i] <= pivot && i<=hi-1)
    i++;
    while (a[j] > pivot && j>=low)
    j–;
    if (i<j)
    swap(a,i,j);
    }

  4. correct code

    public static int partition(int arr[], int l, int h) {

    int pivot = arr[l];

    int i = l;

    int j = h;

    while (j >= 0 && i < arr.length && i < j) {

    while (i<arr.length &&arr[i] <= pivot) {

    i++;

    }

    while (j>=0 &&arr[j] > pivot) {

    j–;

    }

    if (i < j) {

    int temp = arr[i];

    arr[i] = arr[j];

    arr[j] = temp;

    }

    }

    int temp = arr[l];

    arr[l] = arr[j];

    arr[j] = temp;

    return j;

    }

  5. hay Anju bhaiya …… there was a major problem on code……
    please pin the comment….. for other students
    if array = 10, 7, 8, 9, 1, 5
    .👇🏼👇🏼👇🏼
    while (arr[i]<=pivot)

    i++;
    //index_out_of_bound

    👆🏼👆🏼👆🏼

    use this……
    .while (arr[i]<=pivot && i<j)

    i++;

  6. This algo has a bug and it isn't working , you should check it again and post because i wasted so much of my time its going to give index out of bound exception

  7. Sir, please help me in this error,
    This code run on some input but
    On some output it give Array out of bound index error
    import java.util.Scanner;

    public class QuickSort {
    static int partition(int[] arr,int low,int high) {
    int pivot=arr[low];
    int i=low;
    int j=high;
    int swap;
    while(i<j) {
    while(arr[i] <= pivot)
    {
    i++;
    }
    while(arr[j] > pivot)
    {
    j–;
    }
    if(i<j) {
    swap=arr[i];
    arr[i]=arr[j];
    arr[j]=swap;
    }
    }
    swap=arr[low];
    arr[low]=arr[j];
    arr[j]=swap;
    return j;
    }

    static void quickSort(int[] arr,int low,int high) {
    if(low<high) {
    int pi=partition(arr, low, high);
    quickSort(arr, low, pi-1);
    quickSort(arr, pi+1, high);
    }
    }

    public static void main(String[] args) {
    // TODO Auto-generated method stub
    Scanner sc=new Scanner(System.in);
    System.out.println("Enter the size of array");
    int n=sc.nextInt();
    int[] arr=new int[n];
    //Entering the Element in the array
    for (int i = 0; i < arr.length; i++) {
    arr[i]=sc.nextInt();
    }
    // Printing the Original Array
    System.out.println("The Original Array is:");
    for (int i : arr) {
    System.out.print(i+" ");
    }
    System.out.println();
    // Sorting the array using quick Sort
    int no=arr.length;
    quickSort(arr,0,no-1);

    // Printing the Sorted Array
    System.out.println("The Sorted Array using Quick sort is:");
    for (int i : arr) {
    System.out.print(i+" ");
    }
    sc.close();

    }

    }
    output:

    5
    1 4 5 8 6
    The Original Array is:
    1 4 5 8 6
    Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: Index 5 out of bounds for length 5
    at Introduction/sortingAlgorithm.QuickSort.partition(QuickSort.java:12)
    at Introduction/sortingAlgorithm.QuickSort.quickSort(QuickSort.java:34)
    at Introduction/sortingAlgorithm.QuickSort.quickSort(QuickSort.java:36)
    at Introduction/sortingAlgorithm.QuickSort.quickSort(QuickSort.java:36)
    at Introduction/sortingAlgorithm.QuickSort.quickSort(QuickSort.java:36)
    at Introduction/sortingAlgorithm.QuickSort.main(QuickSort.java:58)

  8. It's failing with test case {23, 13,45,67,89,2,10,86}. Because we have not checked in while loop for I and j with lower and upper limits. But it's great explanation. Thanks for such nice explaination

Leave a Reply

Your email address will not be published. Required fields are marked *