原创 【多交流啊】git基本使用|配合GitHub

1.安裝git 點擊下載網址,進入官網下載所需要的版本。 當在右鍵菜單中有git gui和git bash選項時,就說明安裝成功。 2.初始化git倉庫: 命令:git init 在項目目錄右鍵打開git bash,或者直接打

原创 [Algorithm]Selection_選擇排序算法代碼實現

話不多說,上菜: public class Selection { public static void main(String[] args) { //test int[] arr = {5,2,9,3,4}; sele

原创 [Algorithm]Bubble_冒泡算法代碼實現

話不多說,上菜: public class Bubble { public static void main(String[] args) { //test int[] arr = {5,2,9,3,4}; bubbleSo