剔除重複資料

2021-07-26 13:16:01 字數 948 閱讀 1771

明明想在學校中請一些同學一起做一項問卷調查,為了實驗的客觀性,他先用計算機生成了n個1到1000之間的隨機整數(n≤1000),對於其中重複的數字,只保留乙個,把其餘相同的數去掉,不同的數對應著不同的學生的學號。然後再把這些數從小到大排序,按照排好的順序去找同學做調查。請你協助明明完成「去重」與「排序」的工作。

input param 

n               輸入隨機數的個數     

inputarray      n個隨機整數組成的陣列 

return value

outputarray    輸出處理後的隨機整數

注:測試用例保證輸入引數的正確性,答題者無需驗證。測試用例不止一組。

輸入描述:

輸入多行,先輸入隨機整數的個數,再輸入相應個數的整數

輸出描述:

返回多行,處理後的結果

輸入例子:

11

1020

4032

6740

2089

300400

15

輸出例子:

101520

3240

6789

300#include#include#include#includeusing namespace std;

int main()

sort(iter.begin(),iter.end());

vector::iterator end_unique=unique(iter.begin(),iter.end());

iter.erase(end_unique,iter.end());

for(vector::iterator itor=iter.begin();itor!=iter.end();++itor)

{cout<< *itor <

11 17完成對無陣列中重複資料的剔除

include produce some numbers not bigger than ten and change the content to the one include define n 20 int main for j 0 j printf d t n1 j return 0 在這個...

篩選重複資料

沒有主鍵,有大量重複資料,並且兩張表之間也可能有重複資料。先要求 匯出資料不能重複,身份證號碼相同的按警告級別高的匯出,身份證號碼相同的按警告級別也相同的則按修改時間最新的匯出。大致有這麼幾個方案 1。直接寫sql語句把要用的資料篩選出來。2。新建乙個臨時表,先將兩張表的資料放入臨時表,然後篩選。3...

刪除重複資料

介紹兩種刪除重複行的方式 1.使用臨時表,分組找出重複部分的id進行刪除 刪除table goods info 中存在重複goods id的記錄 select identity int,1,1 as autoid,into temptable from goods info select min a...