03 2020 档案

摘要:```java public void quickSort(int[] arr, int left, int right){ if(left>=right){ return ; } int last = left; for(int i=left+1;i<=right;i++){ if(arr[i]<arr[left]){ swap(arr, i, ++last); } } swap(arr, le 阅读全文
posted @ 2020-03-10 16:05 cbhe 阅读(204) 评论(0) 推荐(0)
摘要:core.autocrlf If you’re programming on Windows and working with people who are not (or vice versa), you’ll probably run into line ending issues at som 阅读全文
posted @ 2020-03-10 15:13 cbhe 阅读(4225) 评论(0) 推荐(0)