顺序表: #include<stdio.h> #include<stdlib.h> #include<time.h> #include<set> #include<iostream> using namespace std; #define MAX 1000 //冒泡排序 void Sort(int *A,int len) { int i,j,t; for(i = 0;i < len-1;i++) { for(j = 0;j < len-i-1;j++) { if(A[j]...