insert_sort

insert_sort

#define _CRT_SECURE_NO_WARNINGS 1
#include <iostream>

using namespace std;

//from the front to the back
void insert_sort1(int *a,int n) {
	if (n < 2)
		return;
	int t;//store elem_i
	int p;//finding the insert point 
	int j;//traverse the sorted_elem
	for (int i = 1; i < n; i++) {
		int p = 0;
		for (j = 0; j <i; j++) {
			if (a[i] < a[j]) {
				p = j;
				break;
			}		
		}

		
		if(j!=i){
			t = a[i];
			for (int k = i; k > p; k--)
				a[k] = a[k-1];
			a[p] = t;
		}
		
	}
	return;
}

//from the back to the front
void insert_sort2(int* a, int n) {
	if (n < 2)
		return;
	int t, j;
	for (int i = 1; i < n; i++) {
		t = a[i];
		for (j = i - 1; j >= 0 && t < a[j]; j--)//a[i] may be covered,so t<a[j] not a[i]<a[j]
			a[j + 1] = a[j];
		a[j + 1] = t;
	}
	

	return;
}

int main() {
	
	int a[] = {44,3,38,5,47,15,36,26,27,2,46,4,19,50,48 };
	insert_sort1(a,sizeof(a)/sizeof(a[0]));
	for (const auto& e : a)
		cout << e << " ";
	cout << endl;

	int b[] = { 44,3,38,5,47,15,36,26,27,2,46,4,19,50,48 };
	insert_sort2(b, sizeof(b) / sizeof(b[0]));
	for (const auto& e : b)
		cout << e << " ";
	cout << endl;
	return 0;
}
  • 9
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
ELEVATOR_INSERT_SORT是一种电梯排序算法。这个算法可以使电梯的总运行时间最短,并且在电梯内乘客的等待时间最小。其具体实现步骤如下: 1. 当电梯停靠在某一层时,乘客会按电梯内按钮或楼层外的按钮。 2. 按下电梯内按钮的乘客会在电梯内等待,按下楼层外按钮的乘客会在该楼层等待电梯。 3. 电梯内有一个目标队列,存储所有电梯要停靠的楼层,这些楼层按顺序排列。 4. 当电梯内没有乘客时,电梯会朝着目标队列中第一个元素的方向运动。 5. 当电梯内有乘客时,电梯会朝着目标队列中所有需要停靠的楼层的方向运动,并且在每个需要停靠的楼层停靠一次。 6. 当电梯到达某一层时,会寻找该层的所有乘客并将他们加入目标队列,并且将目标队列中该层的所有楼层都删除。 7. 当电梯内没有乘客,也没有任何等待的乘客时,电梯会停在最近的楼层。 下面是电梯排序算法的Python实现代码: ```python class Elevator: def __init__(self): self.current_floor = 0 self.target_floors = [] self.direction = 1 def add_target_floor(self, floor): if floor not in self.target_floors: self.target_floors.append(floor) def remove_target_floor(self, floor): if floor in self.target_floors: self.target_floors.remove(floor) def move(self): self.current_floor += self.direction if self.current_floor in self.target_floors: self.remove_target_floor(self.current_floor) if len(self.target_floors) == 0: self.direction = 0 elif self.direction == 1: self.check_up() else: self.check_down() def check_up(self): floors_to_remove = [] for floor in self.target_floors: if floor > self.current_floor: floors_to_remove.append(floor) for floor in floors_to_remove: self.remove_target_floor(floor) if len(self.target_floors) == 0: self.direction = 0 else: self.direction = 1 if self.target_floors[-1] > self.current_floor else -1 def check_down(self): floors_to_remove = [] for floor in self.target_floors: if floor < self.current_floor: floors_to_remove.append(floor) for floor in floors_to_remove: self.remove_target_floor(floor) if len(self.target_floors) == 0: self.direction = 0 else: self.direction = -1 if self.target_floors < self.current_floor else 1 elevator = Elevator() elevator.add_target_floor(2) elevator.add_target_floor(4) elevator.add_target_floor(1) elevator.add_target_floor(3) while elevator.direction != 0: elevator.move() print("Elevator is on floor", elevator.current_floor) print("Elevator has stopped") ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值