Java Sort algorithm optimization--shell sort "warm and know new"

Source: Internet
Author: User
Tags int size
/** * * @author Fly/public class Shellsort {public int[] Shellsort (int[] a) {int size = A.length;
                for (int step = SIZE/2, step > 0, Step/= 2) {for (int i = 0; i < step; i++) {
                    for (int j = i; j < size; J + = step) {int temp = a[j], k;
                    for (k = j; k > I && a[k-step] > Temp. K-= Step) {A[k] = A[k-step];
                } A[k] = temp;
    }} return A;
        public void PrintArray (int[] a) {for (int i:a) {System.out.print (i + ",");
    } System.out.println ();
        public static void Main (string[] args) {int[] a = {2, 3, 1, 5, 7, 8, 9, 0, 11, 10, 12, 13, 14, 4, 6};
        Shellsort shellsort = new Shellsort ();
        Shellsort.printarray (a);
    Shellsort.printarray (Shellsort.shellsort (a)); }
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.