The split element of Android interview algorithm problem

Source: Internet
Author: User

.//There is an integer array with negative numbers and integers, with a method to separate positive and negative numbers, requiring a space complexity of O (1), Time complexity is: O (N)/**    *  fractional Group      */   public static void awaylist () {      int  a[] = new int[]{5,-2,4,6,-1,3,-9,-8};      int start  = 0;      int temp = 0;       for (int i=0;i<a.length;i++) {        if (a[i]>0& &start==0) {           continue;         }else if (a[i]<0&&start==0) {            start = i;        }else  if (a[i]>0&&start!=0) {           //No matter what, after the exchange, The next position of start must be less than 0, so STArt++.            temp = a[start];            a[start] = a[i];            a[i] = temp;            if (I>start) {               start++;           }         }      }      for (int  i=0;i<a.length;i++) {        system.out.println (a[i]);       }   }


The split element of Android interview algorithm problem

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.