2011-08-16 03:04:56 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2011-08-18 03:07:18 +00:00
|
|
|
SETUP="import sorting"
|
|
|
|
LIST="$(python -c "import random;l = list(range(0, ${1-5000}));random.shuffle(l);print(l)")"
|
2011-08-16 03:04:56 +00:00
|
|
|
|
|
|
|
echo -n "insertion sort: "
|
2011-08-18 03:07:18 +00:00
|
|
|
python -m timeit -s "$SETUP" "sorting.insertion_sort($LIST)"
|
2011-08-16 03:04:56 +00:00
|
|
|
|
|
|
|
echo -n "merge sort: "
|
2011-08-18 03:07:18 +00:00
|
|
|
python -m timeit -s "$SETUP" "sorting.merge_sort($LIST)"
|