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

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

Problems:

Given a collection of numbers that might contain duplicates, return all possible unique permutations.

For example,

[1,1,2] have the following unique permutations:
[1,1,2], [1,2,1], and [2,1,1].

解法一:STL中的next_permutation

class Solution {public:    vector
> permuteUnique(vector
& nums) { vector
> result; sort(nums.begin(),nums.end()); do{ result.push_back(nums); }while(next_permutation(nums.begin(),nums.end())); return result; }};

 

转载于:https://www.cnblogs.com/xiaoying1245970347/p/4571721.html

你可能感兴趣的文章
Elasticsearch增删改查
查看>>
oracle归档日志增长过快处理方法
查看>>
有趣的数学书籍
查看>>
teamviewer 卸载干净
查看>>
多线程设计模式
查看>>
解读自定义UICollectionViewLayout--感动了我自己
查看>>
SqlServer作业指定目标服务器
查看>>
UnrealEngine4.5 BluePrint初始化中遇到编译警告的解决办法
查看>>
User implements HttpSessionBindingListener
查看>>
抽象工厂方法
查看>>
ubuntu apt-get 安装 lnmp
查看>>
焊盘 往同一个方向增加 固定的长度方法 总结
查看>>
eclipse的maven、Scala环境搭建
查看>>
架构师之路(一)- 什么是软件架构
查看>>
jquery的冒泡和默认行为
查看>>
USACO 土地购买
查看>>
【原创】远景能源面试--一面
查看>>
B1010.一元多项式求导(25)
查看>>
10、程序员和编译器之间的关系
查看>>
前端学习之正则表达式
查看>>