#include "pch.h" #include #include //线程同步:消息、事件、临界区(不是内核对象)、互斥体
#ifndef __QUEUE__ #define __QUEUE__ class CQueue { &nb
简介 因为在设计或开发中,肯定会有这么一种情况,一个类只能有一个对象被创建,如果有多个对象的话,可能会导致状态的混乱和不一致。这种情况下,单例模式
时间复杂度:O(n2)稳定排序void bubbleSort(int a[], int size){ bool sorted = false;
新建一个.txt文档来存储迷宫,输入n*n的迷宫矩阵并保存起来,如下图//Stack.h#pragma once template cl
1、算法思想如下图:把待排序的数都存在对应的数组的下标中,如果待排序的数有重复的,就用对应的数组加一,最后把数组的下标打印出来即可。2、源码(C)如下:#include
/*堆排序*/ #include using namespace std; void AdjustDown(int*&nb
void quickSort(int a[], int low, int high){ if (low