摘要:
/**归并排序,稳定 ,时间复杂度O(nlogn) 空间复杂度O(n)*/ public static void mergeSort(int[] a , int l ,int h , int[] temp) 9 { 10 if(a== null ||l >=h)return; 11 12 int m = l + (h-l)/2; 13 mergeSort(a , l , m , temp ); 14 mergeSort(a , m+1 , h, temp); 15 16 merge(a , l ,m, h , temp); 17 } 18 ... 阅读全文
摘要:
## r表示读 rb表示读二进制 file_object = open('test.py','r')try: file_text=file_object.read()finally: file_object.close()print file_text## 可以直接用for循环遍历文件每行file_input= open('test.py', 'r')try: for line in file_input: print linefinally: file_input.close()## 或者使用readlines读取每行file_ 阅读全文