博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode 45: Permutations
阅读量:5812 次
发布时间:2019-06-18

本文共 843 字,大约阅读时间需要 2 分钟。

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].

 

 

class Solution {public:    vector
> permute(vector
&num) { // Start typing your C/C++ solution below // DO NOT write int main() function vector
> rel; int level = 0; permuteRec( rel, num, level); return rel; } private: void permuteRec( vector
> & rel, vector
&num, int level) { if( level == num.size() ) { rel.push_back( num ); return; } for( int i=level; i

 

转载于:https://www.cnblogs.com/xishibean/archive/2013/01/19/2951375.html

你可能感兴趣的文章
WCF
查看>>
django 目录结构修改
查看>>
win8 关闭防火墙
查看>>
Android实例-录音与回放(播放MP3)(XE8+小米2)
查看>>
CSS——(2)与标准流盒模型
查看>>
MYSQL 基本SQL语句
查看>>
C#中的Marshal
查看>>
linux命令:ls
查看>>
Using RequireJS in AngularJS Applications
查看>>
hdu 2444(二分图最大匹配)
查看>>
shell编程笔记六:实现ll命令
查看>>
【SAP HANA】关于SAP HANA中带层次结构的计算视图Cacultation View创建、激活状况下在系统中生成对象的研究...
查看>>
[nodejs] nodejs开发个人博客(五)分配数据
查看>>
《Linux内核修炼之道》 之 高效学习Linux内核
查看>>
Java数据持久层框架 MyBatis之API学习九(SQL语句构建器详解)
查看>>
30分钟Git命令“从入门到放弃”
查看>>
nginx : TCP代理和负载均衡的stream模块
查看>>
MYSQL数据库间同步数据
查看>>
DevOps 前世今生 | mPaaS 线上直播 CodeHub #1 回顾
查看>>
iOS 解决UITabelView刷新闪动
查看>>