摘要:
import java.util.ArrayList; import java.util.List; public class Yanghui118 { public static List<List<Integer>> generate(int numRows) { List<List<Integ 阅读全文
摘要:
import java.util.HashMap; import java.util.Map; public class RomanToInt13 { public static int romanToInt(String s) { int sum=0; int i=0; Map<Character 阅读全文
摘要:
public class Palindrome_Number9 { public static boolean isPalindrome(int x) { if(x<0){ return false; } String result=new Integer(x).toString(); for(in 阅读全文
摘要:
public class String_to_Integer { public static int myAtoi(String str) { str=str.trim(); int target=0; if(str.length()==0){ return 0; } if(str.equals(" 阅读全文
摘要:
public class Main { public static void main(String[] args) { System.out.println(reverse(-123)); } public static int reverse(int x) { long sum=0; while 阅读全文
摘要:
http://c.biancheng.net/view/1311.html 阅读全文
摘要:
(一)时间复杂度 依赖算法输入数据的规模 如果时间复杂度为O(1),说明无论算法输入的数据个数是多少,运行时间都相同。 O(n)代表算法的执行时间与输入的数据元素个数成正比。 O(n^2)代表程序时间复杂度与输入数据元素数目的平方成正比。 (二)二分搜索 二分搜索是基于已排序数据的技术。 https 阅读全文
摘要:
OAuth 2.0 是目前最流行的授权机制,用来授权第三方应用,获取用户数据。 这个标准比较抽象,使用了很多术语,初学者不容易理解。其实说起来并不复杂,下面我就通过一个简单的类比,帮助大家轻松理解,OAuth 2.0 到底是什么。 一、快递员问题 我住在一个大型的居民小区。 小区有门禁系统。 进入的 阅读全文
摘要:
安装 https://www.cnblogs.com/dxllp/p/10573498.html#4585546 设置 https://www.baidu.com/link?url=67t7HSI09TO3qgdu7Pjp133Ko34nfKocc0AIN5V0Hmh4G2fNJ2N1fF4wnL0 阅读全文
摘要:
通用命令 1)keys pattern 查询与pattern所匹配的key 2)del key1 key2......删除指定的key 3)exits key 4)rename key newkey 5)expire key 设置过期时间 6)ttl key 获取key所剩的过期时间 7)type 阅读全文