睡眠排序
Posted tiandsp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了睡眠排序相关的知识,希望对你有一定的参考价值。
二半夜的有点失眠,来个睡眠排序 -_-||
#include <iostream> #include <thread> #include <windows.h> #include <vector> using namespace std; void delay(int a) { Sleep(a); cout << a <<" "; } int main() { int a[10] = { 30, 45, 23, 1, 43, 5, 7, 34, 32, 2 }; for (int i = 0; i < 10; i++) { thread t(delay, a[i]); t.detach(); } getchar(); return 0; }
以上是关于睡眠排序的主要内容,如果未能解决你的问题,请参考以下文章
初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段
初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段
javascript 睡眠排序(https://dev.to/sishaarrao/sleep-sort-where-theory-meets-sobering-reality-b3m)