码迷,mamicode.com
首页 > 其他好文 > 详细

【剑指Offer】字符串的排列

时间:2015-09-21 09:13:34      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:牛客网   剑指offer   字符串的排列   字典排序   permutatio   

题目描述

输入一个字符串,按字典序打印出该字符串中字符的所有排列。例如输入字符串abc,则打印出由字符a,b,c所能排列出来的所有字符串abc,acb,bac,bca,cab和cba。
输入描述:

输入一个字符串,长度不超过9(可能有字符重复),字符只包括大小写字母。

代码实现

class Solution {
public:
    vector<string> Permutation(string str) {
        vector<string> r;
        if(!str.size()) return r;
        sort(str.begin(), str.end());
        do {
            r.push_back(str);
        }
        while(next_permutation(str.begin(), str.end()));
        return r;
    }
};

next_permutation是获取字符串的下一个字典排序
介绍算法http://www.cnblogs.com/devymex/archive/2010/08/17/1801122.html

版权声明:本文为博主原创文章,未经博主允许不得转载。

【剑指Offer】字符串的排列

标签:牛客网   剑指offer   字符串的排列   字典排序   permutatio   

原文地址:http://blog.csdn.net/zgljl2012/article/details/48607069

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!