1. 格式化 去掉空白: Ctrl + Shift + J 格式化代码: Ctrl + Alt + L 2. 查找与替换 该文件下查找(Ctrl+F) 项目全局查找(Ctrl+Shift+F 或【Edit】——>【Find】——>【Find in Path…】) 该文件下替换(Ctrl+R) 项目全 ...
分类:
其他好文 时间:
2020-05-25 12:23:03
阅读次数:
52
看一下题目大意: For a given positive integer n, please find the smallest positive integer x that we can find an integer y such that y^2 = n +x^2.。 自己翻译一下,不难 ...
分类:
其他好文 时间:
2020-05-25 12:06:37
阅读次数:
75
跑spark job的时候碰到了错误: 这是因为nmPrivate目录没有权限访问引起的。 参考: "https://www.oschina.net/question/2288283_2134188" ...
分类:
其他好文 时间:
2020-05-25 09:22:14
阅读次数:
74
周日,晴,记录生活分享点滴 参考博客:https://www.cnblogs.com/resn/p/5800922.html 环境变量 自定义账户的个性化环境的三个重要文件 (参考博客:https://blog.csdn.net/u011479200/article/details/86501366 ...
分类:
编程语言 时间:
2020-05-24 21:26:32
阅读次数:
74
https://www.twle.cn/c/yufei/rust/rust-basic-file-input-output.html Rust 文件读写 Rust 标准库提供了大量的模块和方法用于读写文件。 Rust 语言使用结构体 File 来描述/展现一个文件。 结构体 File 有相关的成员变 ...
分类:
其他好文 时间:
2020-05-24 11:54:03
阅读次数:
132
中心扩展法。 class Solution { public: string longestPalindrome(string s) { int start = 0, end = 0; for (int i = 0; i < s.size(); ++i) { findLongest(s, i, i, ...
分类:
其他好文 时间:
2020-05-24 11:40:39
阅读次数:
50
//配置vs环境变量 C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterpr ...
分类:
其他好文 时间:
2020-05-24 11:38:26
阅读次数:
59
Find the sum of all left leaves in a given binary tree. Example: 3 / \ 9 20 / \ 15 7 There are two left leaves in the binary tree, with values 9 and 1 ...
分类:
其他好文 时间:
2020-05-24 11:27:13
阅读次数:
52
C:\Users\admin>netstat -ano|findstr 8088 TCP 0.0.0.0:8088 0.0.0.0:0 LISTENING 16888 TCP 127.0.0.1:8088 127.0.0.1:64254 ESTABLISHED 16888 TCP 127.0.0.1 ...
分类:
Web程序 时间:
2020-05-24 09:56:03
阅读次数:
54
mkdir 命令 功能说明:创建目录 用法:mkdir [OPTION]... DIRECTORY... | 选项 | 作用 | | | | | p, parents | 自动按需创建父目录 | | v, verbose | 显示详细过程 | | m, mode=MODE | 创建目录时直接设定权限 ...
分类:
系统相关 时间:
2020-05-24 09:36:35
阅读次数:
57