面试题精选(84):使序列有序的最少交换次数(minimum swaps) + 删除序列中所有重复的元素

该博客介绍了两个算法问题:一是求解使序列有序的最少交换次数,通过分析序列中的循环并进行适当交换达到排序;二是删除序列中所有重复的元素,通过标记法在常量空间和线性时间内完成。提供了C++实现代码。
摘要由CSDN通过智能技术生成

题目描述:(minimum swaps)

Given a sequence, we have to find the minimum no of swaps required to sort the sequence.

 

分析:

formula:  no. of elements out of place  -  "cycles" in the sequence

 

A cycle is a set of elements, each of which is in the place of another.  So in example sequences { 2, 1, 4, 3}, there are two cycles: {1, 2} and {3, 4}.  1 is in the place where 2 needs to go, and 2 is in the place where 1 needs to go 1, so they are a cycle; likewise with 3 and 4.


The sequences {3, 2, 1, 5, 6, 8, 4, 7 }also has two cycles: 3 is in the place of 1 which is in the place of 3, so {1, 3} is a cycle; 2 is

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值