zoukankan      html  css  js  c++  java
  • [Leetcode] Permutations

    Permutations 题解

    题目来源:https://leetcode.com/problems/permutations/description/


    Description

    Given a collection of distinct numbers, return all possible permutations.

    Example

    For example,

    [1,2,3] have the following permutations:

    
    [
      [1,2,3],
      [1,3,2],
      [2,1,3],
      [2,3,1],
      [3,1,2],
      [3,2,1]
    ]
    
    

    Solution

    class Solution {
    private:
        void backTrack(vector<vector<int> >& res, vector<int>& nums, int index) {
            if (index >= nums.size()) {
                res.push_back(nums);
            } else {
                int i, size = nums.size();
                for (i = index; i < size; i++) {
                    swap(nums[i], nums[index]);
                    backTrack(res, nums, index + 1);
                    swap(nums[i], nums[index]);
                }
            }
        }
    public:
        vector<vector<int> > permute(vector<int>& nums) {
            vector<vector<int> > res;
            if (nums.empty())
                return res;
            backTrack(res, nums, 0);
            return res;
        }
    };
    

    解题描述

    这道题题意是求给定数组(元素互不相同)的全排列。用到的算法是递归回溯,元素交换起始位index初值为0,每次进入回溯函数交换index及其后某个位置上的元素,再将index + 1使用递归回溯,以穷尽所有可能的排列情况并且不会重复相同情形。

  • 相关阅读:
    CALayer3-层的属性
    CALayer2-创建新的层
    CALayer1-简介
    autofac 使用
    .net5的异步
    动态添加菜单
    PDF解析帮助类
    正则获取字符串中两个字符串间的内容
    水晶报表
    通用easyui查询页面组件
  • 原文地址:https://www.cnblogs.com/yanhewu/p/8408958.html
Copyright © 2011-2022 走看看