一、代码提交将新建文件加入到暂存区git add hello_world.c #将hello_world.c加入到暂存区将所有改变的文件加入到暂存区git add. #将hello_world.c加入到暂存区 查看当前状态git status 将暂存区的文件提交到本地的git仓库git commit -m "add:添加一个新文件...." 将本地的git代码提
一、设置密码为空,跳过密码登录MySQL数据库1.打开命令窗口cmd,输入命令:net stop mysql,停止MySQL服务, 2.开启跳过密码验证登录的MySQL服务,输入命令 mysqld --console --skip-grant-tables --shared-memory 3.再打开一个新的cmd,无密码登录MySQL,输入登录命令:mysql -u
//双链表 public static class Node<V>{ public V value; public Node<V> last; public Node<V> next; public Node(V v){ value = v; last = null; next =
单链表public static class Node<V>{ public V value; public Node<V> next; public Node(V v){ value = v; next = null; } }使用单链表实现队列public static class MyQueue<V
单链表定义//单链表 public static class Node{ public int value; public Node next; public Node(int data){ value = data; } }单链表反转新增1、2、3三个节点public static Node reverseLinkedList(Node head
基本概念异或运算:想同为0,不同为1同或运算:想同为1,不同为0即无进位相加性质0^N == N N^N == 0异或运算满足交换律和结合率即:a^b = b ^ a(a^b)^c=a^(b^c)题一、如何不同额外变量交换两个数int a = a ^ bint b = a ^ bint a = a ^ b题二、一个数组中有一种数出现奇数次//arr中,只有一种数出现奇数次,其他都是偶数次,打
有序数组使用二分法查找指定数值public static boolean exist(int[] arr,int num){ if (null==arr||arr.length==0) return false; int L = 0; int R = arr.length -1; int mid = 0; while (L<R){
选择public static void selectionSort(int[] arr){ if (null==arr||arr.length<2) return; /* 每次选出最小值,外循环0~N-1 每个内循环i~N-1 */ for (int i = 0; i < arr.length; i++) {
docker安装下载Docker依赖的组件yum -y install yum-utils device-mapper-persistent-data lvm2设置下载docker服务的镜像源(阿里云)yum-config-manager --add-repohttp://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo 安装dock
Elasticsearch安装
jenkins
cenOS多版本jdk管理
Copyright © 2005-2025 51CTO.COM 版权所有 京ICP证060544号