// language C with STL(C++) // 剑指44 // https://leetcode-cn.com/problems/shu-zi-xu-lie-zhong-mou-yi-wei-de-shu-zi-lcof/ // 同主站400题 // https://leetcode- ...
分类:
其他好文 时间:
2021-02-06 11:54:26
阅读次数:
0
模块化介绍 模块化是指讲一个大的程序文件,拆分成许多小的文件,然后将小文件组合起来。 模块化好处 防止命名冲突 代码复用 高维护性 模块化规范产品 ES6之前的模块化规范有: CommonJS ? NodeJS、Browserify AMD ? requireJS CMD ? seaJS ES6模块 ...
分类:
其他好文 时间:
2021-02-05 10:37:47
阅读次数:
0
SSH: Disconnecting configuration [192.168.2.68] ... ERROR: Exception when publishing, exception message [Exec timed out or was interrupted after 120,0 ...
分类:
其他好文 时间:
2021-02-05 10:37:04
阅读次数:
0
NX二次开发-检查文件夹是否存在 1 bool CheckFolderExist(const string & strPath) 2 { 3 if (strPath.empty()) 4 { 5 return false; 6 } 7 8 WIN32_FIND_DATA wfd; 9 BOOL bV ...
分类:
其他好文 时间:
2021-02-05 10:36:27
阅读次数:
0
一、安装Elasticsearch docker run -d --name=elasticsearch -p 19200:9200 -p 19300:9300 -e "discovery.type=single-node" elasticsearch:7.5.1 访问:http://ip:1920 ...
分类:
其他好文 时间:
2021-02-04 11:54:26
阅读次数:
0
Linux权限管理 普通权限 rw-r--r-- :9位权限位,三位为一组 rw- #属主 user u r-- #属组 group g r-- #其他 other o r read 可读 4 w write 可写 2 x execute 可执行 1 文件默认权限为 rw-r--r-- 数字表示为 ...
分类:
系统相关 时间:
2021-02-03 11:02:13
阅读次数:
0
在用Android StudioBuild项目时,提示:Could not resolve all files for configuration ':classpath'.Could not find com.android.tools. Error:Gradle: A problem occur ...
分类:
移动开发 时间:
2021-02-03 11:01:45
阅读次数:
0
0x01:Phaser Phaser 是一个更加复杂和强大的同步辅助类,对 CountDownLatch 与 CyclicBarrier 的全面升级,是一个 java 并发 api 的一个重量级类。 常用api: arriveAndAwaitAdvance() 每凑齐指定人数就报团执行一次,同一个线 ...
分类:
其他好文 时间:
2021-02-03 11:00:51
阅读次数:
0
ionic cordova build ios 时报错: No profiles for '***' were found: Xcode couldn't find any iOS App Development provisioning profiles matching '***'. Autom ...
分类:
移动开发 时间:
2021-02-03 10:30:48
阅读次数:
0
题目 题意:将n个数分成k组,使得k组中的最大值最小。 题解:暴力DFS,但是要注意两个地方剪枝,首先在DFS的过程中判断当前的最大值是不是已经超过了已有答案。 第二个剪枝的地方比较triky,由于我们对k组没有顺序要求的,所以当剩下的组都是空的时候,我们只需要DFS第一个组。 class Solu ...
分类:
其他好文 时间:
2021-02-02 11:23:19
阅读次数:
0