码迷,mamicode.com
首页 >  
搜索关键字:possible    ( 2665个结果
Java/Android中的引用类型及WeakReference应用实践
一、背景 一般意义上而言,Java/Android中的引用类型包括强引用、软引用、弱引用、虚引用。不同的引用类型具有各自适用的应用场景,并与JVM的GC直接相关。 作为Java/Android中的引用类型之一,WeakReference被大量的使用到系统源码、基础工具甚至具体的业务逻辑中。在解决需要 ...
分类:移动开发   时间:2020-05-31 21:54:36    阅读次数:110
[LeetCode] 77. Combinations
Given two integers n and k, return all possible combinations of k numbers out of 1 ... n. Example: Input: n = 4, k = 2 Output: [ [2,4], [3,4], [2,3], ...
分类:其他好文   时间:2020-05-31 13:17:49    阅读次数:57
SpringBoot深入理解(更新中)
SpringBoot深入理解 项目打包SpringBoot启动过程 当使用打包时,会下载org-springframework-boot-loader的jar,并且不会放在lib存放的第三方jar包文件中,该jar包中有个JarLauncher.class文件中设置了jar包运行时的入口和打包后文件 ...
分类:编程语言   时间:2020-05-30 01:34:45    阅读次数:128
MySQL 之数据库优化
不管对于哪种服务,对于其优化,无非是从两个方面着手,第一个是对于硬件方面的优化,第二个是对系统以及服务本身的优化。1、查询连接MySQL服务器的次数mysql>showstatuslike‘connections‘;+---------------+-------+|Variable_name|Value+---------------+-------+|Connections|3+----
分类:数据库   时间:2020-05-29 19:21:47    阅读次数:73
Possible unbalanced tuple unpacking with sequence
使用Visual Studio Code, 遇到这样的警告,看着不舒服,怎样才能解决掉这个警告呢?"owner": "python","code": "unbalanced-tuple-unpacking","severity": 8,"message": "Possible unbalanced ... ...
分类:其他好文   时间:2020-05-28 16:44:36    阅读次数:119
UVA1025 城市里的间谍 A Spy in the Metro
参照《算法竞赛入门经典(第二版)》,这上面写得很清楚。 核心代码如下: 倒推十分巧妙。 ...
分类:其他好文   时间:2020-05-24 16:55:16    阅读次数:46
CF3D Least Cost Bracket Sequence 贪心
"Least Cost Bracket Sequence" "CodeForces 3D " 题目描述 This is yet another problem on regular bracket sequences. A bracket sequence is called regular, if ...
分类:其他好文   时间:2020-05-17 19:09:17    阅读次数:56
ssh连接的时候出现Host key verification failed
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ...
分类:其他好文   时间:2020-05-16 18:52:21    阅读次数:113
【每日一题】- Leetcode 402. Remove K Digits
Description: Given a non-negative integer num represented as a string, remove k digits from the number so that the new number is the smallest possible ...
分类:其他好文   时间:2020-05-15 00:34:42    阅读次数:86
数据预处理之缺失值&重复值
缺失值、重复值的查看、删除、填充,使用dropna、fillna、interpolate函数处理缺失值,使用duplicated、drop_duplicates函数处理重复值,使用reset_index函数重置行索引 ...
分类:其他好文   时间:2020-05-12 18:34:36    阅读次数:93
2665条   上一页 1 ... 4 5 6 7 8 ... 267 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!