Leetcode Problem.46—Permutations C++实现

Given a collection of numbers, return all possible permutations.

For example,
[1,2,3] have the following permutations:
[1,2,3][1,3,2][2,1,3][2,3,1][3,1,2], and [3,2,1].

中文描述:将数组实现全排列。

我的C++程序:

STL algorithm 实现 next-permutation

    vector> permute(vector& nums) 
    {
        int len=nums.size();
        vector> result;
        vector temp;
        sort(nums.begin(),nums.end());
        do {
             for(int i=0;i

你可能感兴趣的:(Leetcode Problem.46—Permutations C++实现)