摘要:
redis官方不提供windows版本,下载地址:①微软,2016年之后不再更新,版本截止于3.2:https://github.com/MicrosoftArchive/redis/releases②其他开发者,截止当前最新5.0.10:https://github.com/tporadowski 阅读全文
摘要:
方式1:被除数转double后,除以除数,结果是一个double类型的数,将double结果按要求保留n位小数即可。 保留n位小数的写法 int a = 10; int b = 3; double res = new BigDecimal((double) a / b).setScale(2, Ro 阅读全文
摘要:
1. 使用BigDecimal double v = 1.233; double res = new BigDecimal(v).setScale(2, RoundingMode.HALF_UP).doubleValue(); tip: setScale中的 roundingMode参数详解,参考此 阅读全文
摘要:
1. 删除指定行 new_df = df.drop(index='行索引') new_df = df.drop('行索引', axis='index') new_df = df.drop('行索引', axis=0) 2. 删除指定的多行 new_df = df.drop(index=['行索引1' 阅读全文
摘要:
(一)Series初始化 1.通过列表,index自动生成 se = pd.Series(['Tom', 'Nancy', 'Jack', 'Tony']) print(se) 2.通过列表,指定index se = pd.Series(['Tom', 'Nancy', 'Jack', 'Tony' 阅读全文
摘要:
1. Series Series通俗来讲就是一维数组,索引(index)为每个元素的下标,值(value)为下标对应的值 例如: arr = ['Tom', 'Nancy', 'Jack', 'Tony'] 那在Series中为:index为0,value为Tomindex为1,value为Nanc 阅读全文
摘要:
1. 解压后根目录添加配置文件my.ini [client] default-character-set=utf8mb4 [mysql] default-character-set=utf8mb4 [mysqld] character-set-server=utf8mb4 collation-ser 阅读全文
摘要:
二分查找的前提是线性表(数组、列表)是已经有序排列的,如果无序则需要先排序。释义参考百度百科 1.循环二分查找 public static int binarySearch(int[] ints, int target) { int start = 0; int end = ints.length 阅读全文
摘要:
public static boolean isPrime(int num) { /* * 质数定义:只有1和它本身两个因数的自然数 * * 1. 小于等于1或者是大于2的偶数,直接返回false * 2. 2直接返回true * 3. 从3开始算起(每次加2,截止为输入值的平方根),每次输入值除以 阅读全文
摘要:
public static boolean isPalindrome(String str) { int start = 0, end = str.length() - 1; while (start < end) { if (str.charAt(start) != str.charAt(end) 阅读全文