c++vector怎么正序插入
时间: 2024-02-05 19:09:35 浏览: 71
C++中的vector是一个动态数组,可以方便地进行元素的插入和删除操作。要实现正序插入,可以按照以下步骤进行:
1. 创建一个空的vector对象:`std::vector<int> vec;`(以int类型为例)。
2. 使用`push_back()`函数将元素逐个插入到vector中。例如,要插入元素5,可以使用`vec.push_back(5);`。
3. 在插入元素之前,可以使用`std::sort()`函数对vector进行排序,确保插入的元素按照正序排列。例如,`std::sort(vec.begin(), vec.end());`会对整个vector进行升序排序。
4. 如果要插入的元素已经存在于vector中,可以使用`std::lower_bound()`函数找到插入位置,并使用`insert()`函数在该位置插入元素。例如,要插入元素3,可以使用以下代码:
```cpp
auto it = std::lower_bound(vec.begin(), vec.end(), 3);
vec.insert(it, 3);
```
这样就可以实现正序插入了。
相关问题
请利用STL vector容器编写程序。 输入格式: 输入第一行一个整数:放入vector容器中初始的元素个数,接下来一行:n个整数,即容器中初始的元素,并倒序置于容器中;再一行一个整数p,表示对vector容器操作的次数,之后q行,每行代表一个操作,其格式如下: 1 loc val:在loc位置前插入val;(注:位置从0开始,下同) 2 loc cnt val:在loc位置前插入cnt个val; 3 val:在末尾插入val; 4 val:查找元素val的位置;(注:正序查找第一个相同的元素) 5 loc:删除loc位置的元素; 6:删除末尾元素; 7:排序;(注:升序排序) 8:输出全部元素。 输出格式: 对操作1和2:若loc不合法,输出:"位置不合法,无法插入";否则无输出。 对操作4:输出元素位置(下标);如不存在查找的元素,输出-1。 对操作5:若loc不合法,输出:"位置不合法,无法删除";否则输出删除的元素。 对操作6:输出删除的元素。 对操作7:无输出。 对操作8:正序输出全部元素;(注:末尾无空格)
以下是利用STL vector容器编写的程序,请参考:
```c++
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
int n, p;
cin >> n;
vector<int> v(n);
for (int i = n - 1; i >= 0; i--) {
cin >> v[i];
}
cin >> p;
while (p--) {
int op;
cin >> op;
if (op == 1) {
int loc, val;
cin >> loc >> val;
if (loc < 0 || loc > v.size()) {
cout << "位置不合法,无法插入" << endl;
} else {
v.insert(v.begin() + loc, val);
}
} else if (op == 2) {
int loc, cnt, val;
cin >> loc >> cnt >> val;
if (loc < 0 || loc > v.size()) {
cout << "位置不合法,无法插入" << endl;
} else {
v.insert(v.begin() + loc, cnt, val);
}
} else if (op == 3) {
int val;
cin >> val;
v.push_back(val);
} else if (op == 4) {
int val;
cin >> val;
auto it = find(v.begin(), v.end(), val);
if (it == v.end()) {
cout << -1 << endl;
} else {
cout << it - v.begin() << endl;
}
} else if (op == 5) {
int loc;
cin >> loc;
if (loc < 0 || loc >= v.size()) {
cout << "位置不合法,无法删除" << endl;
} else {
cout << v[loc] << endl;
v.erase(v.begin() + loc);
}
} else if (op == 6) {
cout << v.back() << endl;
v.pop_back();
} else if (op == 7) {
sort(v.begin(), v.end());
} else if (op == 8) {
for (int i = 0; i < v.size(); i++) {
cout << v[i];
if (i != v.size() - 1) {
cout << " ";
}
}
cout << endl;
}
}
return 0;
}
```
用c++使用链表实现下面各种排序算法,写出代码并进行比较。 排序算法: 1、插入排序 2、冒泡排序 3、快速排序 4、简单选择排序 5、其他 要求: 1、测试数据分成三类:正序、逆序、随机数据 2、对于这三类数据,比较上述排序算法中关键字的比较次数和移动次数(其 中关键字交换计为 3 次移动)。 3、对于这三类数据,比较上述排序算法中不同算法的执行时间,精确到微秒 4、对 2 和 3 的结果进行分析,验证上述各种算法的时间复杂度 编写测试 main()函数测试排序算法的正确性
好的,我会记录下您的问题并为您提供答案。下面是用C++实现链表的各种排序算法的代码:
1. 插入排序
```c++
void insertionSort(Node* head) {
if (head == NULL || head->next == NULL) {
return;
}
Node* p = head->next;
while (p != NULL) {
Node* q = head;
while (q != p) {
if (q->val > p->val) {
int temp = q->val;
q->val = p->val;
p->val = temp;
}
q = q->next;
}
p = p->next;
}
}
```
2. 冒泡排序
```c++
void bubbleSort(Node* head) {
if (head == NULL || head->next == NULL) {
return;
}
bool flag = true;
while (flag) {
flag = false;
Node* p = head->next;
while (p->next != NULL) {
if (p->val > p->next->val) {
int temp = p->val;
p->val = p->next->val;
p->next->val = temp;
flag = true;
}
p = p->next;
}
}
}
```
3. 快速排序
```c++
Node* partition(Node* left, Node* right) {
int pivot = left->val;
Node* p = left;
Node* q = left->next;
while (q != right) {
if (q->val < pivot) {
p = p->next;
int temp = p->val;
p->val = q->val;
q->val = temp;
}
q = q->next;
}
left->val = p->val;
p->val = pivot;
return p;
}
void quickSort(Node* left, Node* right) {
if (left == NULL || right == NULL || left == right) {
return;
}
Node* pivotPos = partition(left, right);
quickSort(left, pivotPos);
quickSort(pivotPos->next, right);
}
```
4. 简单选择排序
```c++
void selectionSort(Node* head) {
if (head == NULL || head->next == NULL) {
return;
}
Node* p = head->next;
while (p != NULL) {
Node* minNode = p;
Node* q = p->next;
while (q != NULL) {
if (q->val < minNode->val) {
minNode = q;
}
q = q->next;
}
int temp = p->val;
p->val = minNode->val;
minNode->val = temp;
p = p->next;
}
}
```
5. 其他排序算法(例如归并排序、堆排序等)也可以在这里实现。
下面是主函数的代码,用于测试上述排序算法的正确性和性能:
```c++
int main() {
// 生成测试数据
vector<int> arr1(1000);
for (int i = 0; i < 1000; i++) {
arr1[i] = i;
}
vector<int> arr2(1000);
for (int i = 0; i < 1000; i++) {
arr2[i] = 999 - i;
}
vector<int> arr3(1000);
for (int i = 0; i < 1000; i++) {
arr3[i] = rand() % 1000;
}
// 创建链表
Node* head1 = createList(arr1);
Node* head2 = createList(arr2);
Node* head3 = createList(arr3);
// 测试插入排序
testSort(insertionSort, head1, head2, head3);
// 测试冒泡排序
testSort(bubbleSort, head1, head2, head3);
// 测试快速排序
testSort(quickSort, head1, head2, head3);
// 测试简单选择排序
testSort(selectionSort, head1, head2, head3);
// 释放内存
deleteList(head1);
deleteList(head2);
deleteList(head3);
return 0;
}
```
其中,`createList`函数用于将一个整数数组转换为链表,`deleteList`函数用于释放链表的内存,`testSort`函数用于测试排序算法的性能和正确性。下面是`createList`、`deleteList`和`testSort`函数的代码:
```c++
Node* createList(vector<int>& arr) {
Node* head = new Node();
Node* p = head;
for (int i = 0; i < arr.size(); i++) {
Node* node = new Node(arr[i]);
p->next = node;
p = p->next;
}
return head;
}
void deleteList(Node* head) {
Node* p = head;
while (p != NULL) {
Node* q = p->next;
delete p;
p = q;
}
}
void testSort(void (*sortFunc)(Node*), Node* head1, Node* head2, Node* head3) {
vector<Node*> heads = {head1, head2, head3};
vector<string> types = {"正序", "逆序", "随机"};
for (int i = 0; i < 3; i++) {
Node* head = heads[i];
string type = types[i];
cout << "测试" << type << "数据:" << endl;
// 复制链表
Node* headCopy = new Node();
Node* p = head->next;
Node* q = headCopy;
while (p != NULL) {
Node* node = new Node(p->val);
q->next = node;
p = p->next;
q = q->next;
}
// 测试排序算法的正确性
sortFunc(head);
bool isSorted = checkSort(head);
if (isSorted) {
cout << "排序算法正确" << endl;
} else {
cout << "排序算法错误" << endl;
}
// 测试排序算法的性能
int compareCount, moveCount;
long long timeSpent;
getSortInfo(sortFunc, headCopy, compareCount, moveCount, timeSpent);
cout << "比较次数:" << compareCount << endl;
cout << "移动次数:" << moveCount << endl;
cout << "时间消耗:" << timeSpent << "微秒" << endl;
// 释放内存
deleteList(headCopy);
}
cout << endl;
}
bool checkSort(Node* head) {
Node* p = head;
while (p->next != NULL) {
if (p->val > p->next->val) {
return false;
}
p = p->next;
}
return true;
}
void getSortInfo(void (*sortFunc)(Node*), Node* head, int& compareCount, int& moveCount, long long& timeSpent) {
Node* headCopy = new Node();
Node* p = head->next;
Node* q = headCopy;
while (p != NULL) {
Node* node = new Node(p->val);
q->next = node;
p = p->next;
q = q->next;
}
compareCount = 0;
moveCount = 0;
auto start = chrono::system_clock::now();
sortFunc(headCopy);
auto end = chrono::system_clock::now();
timeSpent = chrono::duration_cast<chrono::microseconds>(end - start).count();
p = head->next;
q = headCopy->next;
while (p != NULL && q != NULL) {
if (p->val != q->val) {
cout << "排序算法错误" << endl;
break;
}
p = p->next;
q = q->next;
}
// 统计比较次数和移动次数
p = headCopy->next;
while (p != NULL) {
Node* q = p->next;
while (q != NULL) {
compareCount++;
q = q->next;
}
moveCount += 3;
p = p->next;
}
// 释放内存
deleteList(headCopy);
}
```
其中,`checkSort`函数用于检查排序算法的正确性,`getSortInfo`函数用于获取排序算法的比较次数、移动次数和时间消耗。
阅读全文