免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2675 | 回复: 3

天才的排序算法... [复制链接]

论坛徽章:
0
发表于 2011-06-17 16:16 |显示全部楼层


  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <omp.h>

  4. int main(int argc, char **argv) {
  5.   int i;

  6.   omp_set_num_threads(argc);

  7. #pragma omp parallel for
  8.   for (i = 0; i < argc - 1; i++) {
  9.     long int this = atol(argv[i+1]);

  10.     sleep(this);

  11.     printf("%ld\n", this);
  12.     fflush(stdout);
  13.   }

  14.   return 0;
  15. }
复制代码
原地址:http://dis.4chan.org/read/prog/1295544154
  有意思啊,用sleep来排序

论坛徽章:
0
发表于 2011-06-21 17:11 |显示全部楼层
哈哈,果真天才。。。。。。

论坛徽章:
0
发表于 2011-06-21 17:37 |显示全部楼层
不懂 C++ 的路过,质疑其效率会不会慢?

论坛徽章:
0
发表于 2011-06-21 18:38 |显示全部楼层
回复 3# x9x9


    没看原文么, 如果 对  0 和 21888 进行排序,需要等待的时间是 21888 秒 。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP