1.實(shí)現(xiàn)環(huán)境
- windows7
- python 3.6.5
- Sublime Text3
2.簡(jiǎn)介
這篇文章,簡(jiǎn)單介紹了如何使用Python語(yǔ)言實(shí)現(xiàn)一個(gè)簡(jiǎn)單的算法探查器。
這里面主要用到了兩個(gè)外部模塊profiler,algorithms
3.實(shí)現(xiàn)
from profiler import profiler
from algorithms.sort import selection_sort
import random
#創(chuàng)建一個(gè)無(wú)序的列表
p = profiler()
test = [x for x in range(1000)]
random.shuffle(test)
#算法探查
p.start()
selection_sort(test)
p.end()