面試題精選(84):使序列有序的最少交換次數(minimum swaps) + 刪除序列中所有重複的元素
題目描述:(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 in its proper place; and 4 is in the place of 7 which is in the place of 8 in place of 6 in place of 5 in place of 4, so {4, 7, 8, 6, 5} is a cycle. There are seven elements out of place in two cycles, so five swaps are needed.
實現:
e.g. { 2, 3, 1, 5, 6, 4}
231564 -> 6 mismatch
two cycles -> 123 and 456
swap 1,2 then 2,3, then 4,5 then 5,6 -> 4 swaps to sort
Probably the easiest algorithm would be to use a bitarray. Initialize it to 0, then start at the first 0. Swap the number there to the right place and put a 1 there. Continue until the current place holds the right number. Then move on to the next 0
Example:
231564
000000
-> swap 2,3
321564
010000
-> swap 3,1
123564
111000
-> continue at next 0; swap 5,6
123654
111010
-> swap 6,4
123456
111111
-> bitarray is all 1's, so we're done.
程式碼:
#include <iostream>
#include <algorithm>
using namespace std;
template <typename T>
int GetMinimumSwapsForSorted(T seq[], int n)
{
bool* right_place_flag = new bool[n];
T* sorted_seq = new T[n];
int p ,q;
////
copy(seq, seq + n, sorted_seq);
sort(sorted_seq, sorted_seq + n); ////可採用效率更高的排序演算法
////
for(int i = 0; i < n; i++)
{
if(seq[i] != sorted_seq[i])
right_place_flag[i] = false;
else
right_place_flag[i] = true;
}
////
p = 0;
int minimumswap = 0;
while(1)
{
while(right_place_flag[p])
p++;
q = p + 1;
////此種找法只對無重複序列能得出minimum swaps
while(q < n)
{
if(!right_place_flag[q] && sorted_seq[q] == seq[p])
break;
q++;
}
if(q >= n || p >= n)
break;
right_place_flag[q] = true;
if(seq[q] == sorted_seq[p])
right_place_flag[p] = true;
swap(seq[p], seq[q]);
minimumswap++;
}
delete[] sorted_seq;
delete[] right_place_flag;
return minimumswap;
}
int _tmain(int argc, _TCHAR* argv[])
{
int seq[] = {3, 2, 1, 5, 6, 8, 4, 7 };//{2,3,1,5,6,4};//{2,3,2,4,7,6,3,5};
int n = sizeof(seq) / sizeof(int);
cout<<"minimum swaps : "<<GetMinimumSwapsForSorted(seq, n)<<endl;
system("pause");
return 0;
}
題目描述:(刪除序列中所有重複的元素)
Given an unsorted n element array[0....n-1] not containing any numbers outside the range 1 to n. We need to remove all duplicates from this array in constant space and O(n) time.
分析:
array[0...n-1]取值[1,n],可以轉換思路對序列中存在的元素作標記,然後輸出這些元素便去掉了序列中所有的重複元素,時間複雜度為O(n)
程式碼:
#include <iostream>
#include <math.h>
using namespace std;
void RemoveAllDuplicates(int seq[], int n)
{
// if element e exists in the array, make index (e-1) negative
for(int i = 0; i < n; i++)
seq[abs(seq[i]) - 1] = -abs(seq[abs(seq[i]) - 1]);
// if index (e-1) is negative, print element e
cout<<endl;
for(int i = 0; i < n; i++)
if(seq[i] < 0)
cout<<i + 1<<"/t";
cout<<endl;
}
int _tmain(int argc, _TCHAR* argv[])
{
int seq[] = { 5,3,4,2,3,2,2,5};
RemoveAllDuplicates(seq, 8);
system("pause");
return 0;
}
相關推薦
面試題精選(84):使序列有序的最少交換次數(minimum swaps) + 刪除序列中所有重複的元素
題目描述:(minimum swaps) Given a sequence, we have to find the minimum no of swaps required to sort the sequence. 分析: formula: no. of elemen
BAT面試題精選 | 一個完整機器學習專案的流程(視訊)
良好的資料要能夠提取出良好的特徵才能真正發揮效力。特徵預處理、資料清洗是很關鍵的步驟,往往能夠使得演算法的效果和效能得到顯著提高。歸一化、離散化、因子化、缺失值處理、去除共線性等,資料探勘過程中很多時間就花在它們上面。這些工作簡單可複製,收益穩定可預期,是機器學習的基礎必備步驟。篩選出顯著特徵、摒棄非顯著特徵
劍指Offer(第二版)面試題3:陣列中的重複元素
從今天開始,學習劍指Offer(第二版)中的所有演算法題,並且用java實現一遍,同步更新Blog劍指Offer(第二版)面試題3:陣列中重複的數字題目一:找出陣列中重複的數字 (限定不可以重複數字是-1,如果沒有重複數字,返回-1) 在一個長度為n的數組裡得所有
第一次只出現一次的字元(程式設計師面試題精選100題)
題目:在一個字串中找到第一個只出現一次的字元。如輸入abaccdeff,則輸出b。 分析:這道題是2006年google的一道筆試題。 方法一: 最直觀的想法是從頭開始掃描這個字串中的每個字元。當訪問到某字元時拿這個字元和後面的每個字元相比較,如果在後面沒
Java虛擬機器面試題精選(二)
概述現在面試Java開發時,基本都會問到Java虛擬機器的知識,根據職位不同問的內容深淺又有所區別。本文整理了10道面試中常問的Java虛擬機器面試題,希望對正在面試的同學有所幫助。11.介紹下垃圾收集
【劍指Offer面試題】 九度OJ1516:調整數組順序使奇數位於偶數前面
pen 沒有 name func hide tracking 順序 popu type 題目鏈接地址: http://ac.jobdu.com/problem.php?pid=1516 題目1516:調整數組順序使奇數位於偶數前面 時間限制:
轉載:JAVA企業面試題精選 Java基礎 1-10
JAVA企業面試題精選 第一部分 Java基礎 1.1.你認為Java與其他(你所瞭解的)語言相比,有什麼優點和缺點? 參考答案: 首先,Java與C/C++相比。Java語言是一種完全的面嚮物件語言,雖
轉載:JAVA企業面試題精選 Java基礎 11-20
1.11.&和&&的區別? 參考答案: &和&&都可以執行關係判斷。二者的區別是:&運算是把邏輯表示式全部計算完,而&&
轉載:JAVA企業面試題精選 Java基礎 41-50
1.41.查詢有哪幾種方法:試寫其中一種方法的小例子 參考答案: 有順序查詢,二分查詢,分塊查詢,二叉排序樹查詢等。 下面的sequelSearch方法是順序查詢的案例(順序查詢適合與儲存結構為順序儲存或連結儲存的線性表)。 publ
轉載:JAVA企業面試題精選 OOP 1-10
2.OOP 2.1.什麼是OOAD?OOAD怎麼實現? 參考答案: OOAD(Object Orient Analysis Design,面向物件的分析與設計)是現代軟體企業廣為採用的一項有效技術。OOAD方法要求在設計中腰對映現實世界中指
轉載: JAVA企業面試題精選 資料庫11-20
1.11.請說明資料庫主鍵,外來鍵的作用 參考答案: 主鍵作用:能保證設定主鍵的列非空且唯一.另外,在定義主鍵時,如果這列之前沒有索引,系統會為其建立唯一性索引 外來鍵作用:能保證設定外來鍵的列取值必須匹配父表中已有的值.通過外來鍵可以與同一張表的
【面試題】統計產量資料:難點(分組彙總 列轉行 查詢結果插入)
題目:有一張資料產量表 如下YearMonthdata2016150020162600.........201712300編寫SQL,產生如下資料,並儲存到tab2,其中S1 S2 S3 S4代表4個季度YearS1S2S3S4201612003000600080002017
各大網際網路Java面試題彙總,最後我成功拿到百度的offer(文末送書)
從事Java開發也有5年經驗了,7月初來到帝都,開啟面試經歷,前後20天左右,主要面網際網路公司
springCloud(3):微服務的註冊與發現(Eureka)
springcloud 微服務的註冊與發現 eureka 一、簡介服務消費者需要一個強大的服務發現機制,服務消費者使用這種機制獲取服務提供者的網絡信息。即使服務提供者的信息發生變化,服務消費者也無須修改配置。服務提供者、服務消費者、服務發現組件三者之間的關系大致如下: 1.各個微服務在啟動時,將自
[程序猿面試題精選100題]10.排序數組中和為給定值的兩個數字
連續正數序列 ati 試題 連續 tails blog div 劍指offer ott 劍指Offer之和為S的兩個數字 劍指Offer之和為S的連續正數序列 擴展(1):輸入一個數組,推斷這個數組中是
JVM高級特性與實踐(二):對象存活判定算法(引用) 與 回收
添加 引用計數器 程序計數器 正文 bmc 進入 block 結構 內存 關於垃圾回收器GC(Garbage Collection),多數人意味它是Java語言的伴生產物。事實上,GC的歷史遠比Java悠遠,於1960年誕生在MIT的Lisp是第一門真正使用內存動態分配和垃
給tomcat配置外部資源路徑(應用場景:web項目訪問圖片視頻等資源)
res apps http pre tomcat配置 div 找到 ces 數據庫服務器 對於一個web項目來說,除了文字之外,圖片,視頻等媒體元素也是其重要的組成部分。我們知道,web項目中如果用到大量的圖片、視屏的資源,我們 通常的做法是只在數據庫中存儲圖片、視頻等資
python開發(第三篇):python基本數據類型(列表,元組,字典)
python開發 .com mage es2017 列表 基本 images 數據類型 切片 ##########列表:list########## 1.索引: 結果:eirc 2.切片 python開發(第三篇):python基本數據類型(列表,元組,字典)
C#可擴展編程之MEF學習筆記(一):MEF簡介及簡單的Demo(轉)
com ring this exec hosting code .cn 引用 展開 在文章開始之前,首先簡單介紹一下什麽是MEF,MEF,全稱Managed Extensibility Framework(托管可擴展框架)。單從名字我們不難發現:MEF是專門致力於解決擴展性
跟開濤學SpringMVC(4.1):Controller接口控制器詳解(1)
詳解 shu fix gmv 控制器 input abstract pre pdf http://www.importnew.com/19397.html http://blog.csdn.net/u014607184/article/details/5207453