摘要:
sudo apt-get upgrate sudo apt-get install open-vm-tools-desktop -y sudo reboot 阅读全文
摘要:
import java.util.*; public class Solution { public int longestConsecutive(int[] num) { if( num==null || num.length == 0){ return 0; } if(num.length==1){ ... 阅读全文
摘要:
public class Solution { public void solve(char[][] board) { if(board == null || board.length = board.length || column = board[0].length ){ return; } i... 阅读全文
摘要:
sudo dmidecode -t 1 阅读全文
摘要:
/** * Definition for undirected graph. * class UndirectedGraphNode { * int label; * ArrayList<UndirectedGraphNode> neighbors; * UndirectedGraphNode(int x) { label = x; neighbors = new ArrayList<Undire 阅读全文
摘要:
List<Integer> list = new ArrayList<>(); for(int i= 0; i < gas.length; i++){ if(gas[i]>=cost[i]){ list.add(i); } } for(int n = 0; n<list.size(); n++ ){ int j = list.get(n); int sum = gas[j]; //System.o 阅读全文
摘要:
1.HashMap可以存放null HashTable不能存放null 2.HashMap是线程不安全的 HashTable是线程安全的 StringBuffer 是线程安全的 StringBuilder 是非线程安全的 所以当进行大量字符串拼接操作的时,如果是单线程就用StringBuilder, 阅读全文
摘要:
public class Solution { public int candy(int[] ratings) { int[] dp = new int[ratings.length]; dp[0] = 1; int sum = 0; for(int i = 1; i < ratings.length; i++){ if(ratings[i] > ratings[i-1]){ dp[i] = dp 阅读全文
摘要:
sql注入问题 防止sql注入,对特殊字符进行过滤、转义或者使用预编译的sql语句绑定变量 当sql语句运行报错时,不要把数据库返回的错误信息全部显示给用户,以防止泄露服务器和数据库相关信息 如果sql语句在拼接的情况下,使得查询永远成立,如拼接上 or '1'='1',会发生不安全问题 解决办法: 阅读全文
摘要:
TCP/IP协议 四层模型 应用层、运输层、网络层、网络接口层 其中网络层的协议:IP ICMP ARP RARP OSPF IPX RIP IGMP 运输层协议:tcp、udp、spx 三次握手 客户端向服务器发起SYN同步请求; 服务器端回复SYN+ACK; 客户端回复ACK确认; 四次挥手 客 阅读全文