5 edited title

Binary Heap: I need to know the Big O time of my binary heap code and how can I make it better

4 Format
public static void CreateMaxHeap(int[] a)
        {
            for (int heapsize = 0; heapsize < a.Length; heapsize++)
            {
                int n, p;
                    n = heapsize;
                while (n > 0)
                {
                    p = (n - 1) / 2;
                    if(a[n]>a[p])
                        Swap(a,n,p);
                    n = p;
                }


         
    }

         
} // end of create heap
public static void CreateMaxHeap(int[] a)
        {
            for (int heapsize = 0; heapsize < a.Length; heapsize++)
            {
                int n, p;
                    n = heapsize;
                while (n > 0)
                {
                    p = (n - 1) / 2;
                    if(a[n]>a[p])
                        Swap(a,n,p);
                    n = p;
                }


            }

        } // end of create heap
public static void CreateMaxHeap(int[] a)
{
    for (int heapsize = 0; heapsize < a.Length; heapsize++)
    {
        int n, p;
        n = heapsize;
        while (n > 0)
        {
            p = (n - 1) / 2;
            if(a[n]>a[p])
                Swap(a,n,p);
            n = p;
        } 
    } 
} // end of create heap
3 edited title

Binary Heap: I need to know the run Big O time of my code and how can I make it better

2 edited tags
1