摘要: // 冒泡排序 // 选择排序 // 希尔排序 // 快速排序 // 递归排序 // 堆排序 #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #define MAX 40000 long getSystemTime() { struct timeb tb; ... 阅读全文
posted @ 2019-08-18 21:58 chentianyuan 阅读(253) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash # Ping Batch Script # 连接超时时间 TMOUT=3 # 最大线程数 MAX_THREAD=4000 # 保留内存大小 MIN_MEM=400 # 默认ip配置,可通过 -r ip-ip指定,格式: ping_batch.sh -r 192.168.1.1-192.168.2.254 # ip前缀 ip_preffix="192.168" # 1... 阅读全文
posted @ 2019-08-18 11:15 chentianyuan 阅读(660) 评论(0) 推荐(0) 编辑