数据结构 - 折半插入排序(Binary Insertion Sort) 详解 及 代码(C++)

折半插入排序(Binary Insertion Sort) 详解及代码(C++)

 

本文地址: http://blog.csdn.net/caroline_wendy/article/details/24001053

 

折半插入排序, 即查找插入点的位置, 可以使用折半查找.

这样可以减少比较的次数,移动的次数不变, 

时间复杂度仍为O(n^2);

 

代码:

 

/*
 * test.cpp
 *
 *  Created on: 2014.04.18
 *      Author: Spike
 */

/*eclipse cdt, gcc 4.8.1*/

#include 
#include 

using namespace std;

void BInsertSort(std::deque& L) {
	for (std::size_t i=2; i=high+1; --j) L[j+1] = L[j];

		L[high+1] = L[0];
	}
}

void print(const std::deque& L) {
	for(std::size_t i=0; i < L.size(); ++i) {
		std::cout << L[i] << " ";
	}
	std::cout << std::endl;
}

int main() {
	std::deque L = {0, 5, 2, 4, 3, 1};
	print(L);
	BInsertSort(L);
	print(L);

	return 0;
}


输出:

 

 

0 5 2 4 3 1 
1 1 2 3 4 5 

 

 

 

 

 

 

你可能感兴趣的:(数据结构 - 折半插入排序(Binary Insertion Sort) 详解 及 代码(C++))