• 调整数组顺序使奇数位于偶数的前面


    题目描述

    输入一个整数数组,实现一个函数来调整该数组中数字的顺序,使得所有的奇数位于数组的前半部分,所有的偶数位于位于数组的后半部分,并保证奇数和奇数,偶数和偶数之间的相对位置不变。
    (以空间换时间的方法:
    class Solution {
    public:
        void reOrderArray(vector<int> &array) {
            vector<int> res;
            for(int i = 0; i < array.size(); i++)
            {
                if(array[i] % 2 == 1)
                    res.push_back(array[i]);
            }
            for(int i = 0; i < array.size(); i++)
            {
                if(array[i] % 2 == 0)
                    res.push_back(array[i]);
            }
            //array.swap(res);
            array = res;
            
        }
    };
    方法二:
    class Solution {
    public:
        void reOrderArray(vector<int> &array) {
            int j=0;
            for(int i=0;i<array.size();i++)
            {
                if(array[i]%2==1)
                {
                    j=i;
                    int temp=array[i];
                    while(j>=1&&array[j-1]%2==0)
                    {
                        array[j]=array[j-1];
                        j--;
                    }
                    array[j]=temp;
                }
            }
        }
    };
  • 相关阅读:
    HDU 3401 Trade
    POJ 1151 Atlantis
    HDU 3415 Max Sum of MaxKsubsequence
    HDU 4234 Moving Points
    HDU 4258 Covered Walkway
    HDU 4391 Paint The Wall
    HDU 1199 Color the Ball
    HDU 4374 One hundred layer
    HDU 3507 Print Article
    GCC特性之__init修饰解析 kasalyn的专栏 博客频道 CSDN.NET
  • 原文地址:https://www.cnblogs.com/wft1990/p/7411768.html
Copyright © 2020-2023  润新知