zoukankan      html  css  js  c++  java
  • LintCode Partition Array

    Given an array nums of integers and an int k, partition the array (i.e move the elements in "nums") such that:
    All elements < k are moved to the left
    All elements >= k are moved to the right
    Return the partitioning index, i.e the first index i nums[i] >= k.
    Have you met this question in a real interview? Yes
    Example
    If nums = [3,2,2,1] and k=2, a valid answer is 1.
    Note
    You should do really partition in array nums instead of just counting the numbers of integers smaller than k.
    If all elements in nums are smaller than k, then return nums.length
    Challenge
    Can you partition the array in-place and in O(n)?

    快排partition函数简化

    class Solution {
    public:
        int partitionArray(vector<int> &nums, int k) {
            // write your code here
            int div = 0;
            int len = nums.size();
            for (int i = 0; i < len; i++) {
                if (nums[i] < k) {
                    swap(nums[div++], nums[i]);
                }
            }
            return div;
        }
    };
    
    

    说起来这个partition函数还是非常有用的

  • 相关阅读:
    coredump分析
    Sword LRU算法
    C++ STL迭代器失效问题
    Sword DB主从一致性的解决方法
    Sword CRC算法原理
    C语言 按位异或实现加法
    Linux 等待信号(sigsuspend)
    C语言 宏定义之可变参数
    Linux shell字符串操作
    C++ *和&
  • 原文地址:https://www.cnblogs.com/lailailai/p/4802439.html
Copyright © 2011-2022 走看看