Problem
Given a list of integers, which denote a permutation.
Find the previous permutation in ascending order.
NoticeThe list may contains duplicate integers.
ExampleFor [1,3,2,3], the previous permutation is [1,2,3,3]
For [1,2,3,4], the previous permutation is [4,3,2,1]
Note Solutionpublic class Solution { public ArrayListpreviousPermuation(ArrayList nums) { int pre = nums.size()-1; while (pre > 0 && nums.get(pre-1) <= nums.get(pre)) pre--; pre--; if (pre >= 0) { int cur = pre+1; while (cur < nums.size() && nums.get(cur) < nums.get(pre)) cur++; cur--; int temp = nums.get(cur); nums.set(cur, nums.get(pre)); nums.set(pre, temp); } int left = pre+1; int right = nums.size()-1; while (left < right) { int temp = nums.get(left); nums.set(left, nums.get(right)); nums.set(right, temp); left++; right--; } return nums; } }
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/65982.html
摘要:从末位向前遍历,假设循环开始全是倒序排列,如当第一次出现正序的时候,如的和此时从数列末尾向前循环到,找到第一个比大的交换这两个数,变成倒置第位到末位的数为正序排列这里的是完全倒置的排列,如,即上面循环的情况完全没有出现, Problem Implement next permutation, which rearranges numbers into the lexicographic...
摘要:我觉得虽然在里分类是,但其实是一道难题。思路如下搞一个哈希表,存储数组中每一位的后面小于它的数的个数。与上一题的不同之处时会有重复的数。当然,每个重复数的都要阶乘,例如有个,个,就是。是所有排列的次数和,返回下一次。 Permutation Index Problem Given a permutation which contains no repeated number, find...
Problem Given two strings s1 and s2, write a function to return true if s2 contains the permutation of s1. In other words, one of the first strings permutations is the substring of the second string. ...
摘要:做法先把这个数放入一个数组里,同时计算出的阶乘。假设这一组是第组,第一个数就是,同时删去这个数,并让除以取余作为新的。如此循环,这样,下一组的成员数减少了,要找的位置也更为精确了。 Problem Given n and k, return the k-th permutation sequence. Example For n = 3, all permutations are li...
摘要:已获原作者授权原系列地址游戏本章我们演示一个进阶例子我们用编写了游戏这个游戏也被称作或者或者是一个古老的益智解谜游戏由两名玩家参与早在世纪人们就在用铅笔和纸来玩这个游戏了在年发明的游戏正是受到这个游戏的启发和在基本理念上是一样的但被盒装出售 已获原作者授权. 原系列地址: Python Tkinter Mastermind 游戏 本章我们演示一个进阶例子. 我们用 Tkinter 编...
阅读 3692·2021-10-11 10:59
阅读 1233·2019-08-30 15:44
阅读 3446·2019-08-29 16:39
阅读 2856·2019-08-29 16:29
阅读 1772·2019-08-29 15:24
阅读 780·2019-08-29 15:05
阅读 1239·2019-08-29 12:34
阅读 2267·2019-08-29 12:19