美文网首页Lintcode
Lintcode52 Next Permutation solu

Lintcode52 Next Permutation solu

作者: 代码码着玩 | 来源:发表于2017-04-21 08:02 被阅读22次

    【题目描述】

    Given a list of integers, which denote a permutation.Find the next permutation in ascending order.

    Notice:The list may contains duplicate integers.

    给定一个整数数组来表示排列,找出其之后的一个排列。

    注意:排列中可能包含重复的整数

    【题目链接】

    www.lintcode.com/en/problem/next-permutation/

    【题目解析】

    找下一个升序排列,C++ STL 源码剖析一书中有提及,Permutations 一小节中也有详细介绍,下面简要介绍一下字典序算法:

    从后往前寻找索引满足 a[k] < a[k + 1], 如果此条件不满足,则说明已遍历到最后一个。

    从后往前遍历,找到第一个比a[k]大的数a[l], 即a[k] < a[l].

    交换a[k]与a[l].

    反转k + 1 ~ n之间的元素。

    由于这道题中规定对于[4,3,2,1], 输出为[1,2,3,4], 故在第一步稍加处理即可。

    【参考答案】

    www.jiuzhang.com/solutions/next-permutation/

    相关文章

      网友评论

        本文标题:Lintcode52 Next Permutation solu

        本文链接:https://www.haomeiwen.com/subject/yjrznttx.html