昨天一个同事he告诉我他的ldap账户无法登录系统,提示Permission denied, please try again 解决方法: 先在百度上找了下别人的博客参考了下 https://blog.csdn.net/xiaowen_1990/article/details/78793382 跟着 ...
分类:
其他好文 时间:
2019-04-26 22:48:21
阅读次数:
400
前端开发中经常会用到npm安装一些框架所需要的模块,比如我在使用vue-resource这个vue依赖时,执行命令npm install vue-resouce --save-dev 这个命令的时候,试了好几次都是报 没有管理员权限,百度的办法大体有两种,第一种是清理缓存,如npm cache cl ...
分类:
其他好文 时间:
2019-04-24 23:30:01
阅读次数:
490
After a terrifying forest fire in Berland a forest rebirth program was carried out. Due to it N rows with M trees each were planted and the rows were ...
分类:
其他好文 时间:
2019-04-21 20:33:40
阅读次数:
156
1.功能键:F1 help帮助(help文档) F3 find (search again) F4 run to cursor(运行/运行到光标) F5 添加或取消断点 F7 trace into (单步跟踪 进入函数过程实现内部) F8 step over(单步跟踪) F9 run F10 显示工 ...
An inorder binary tree traversal can be implemented in a non-recursive way with a stack. For example, suppose that when a 6-node binary tree (with the ...
分类:
其他好文 时间:
2019-04-16 01:28:53
阅读次数:
181
1.为什么安装选项中没有sdk? 其实并非没有只是被放在了后面 选择cancel后, 可以看到下载目录。 2.初次运行错误gradle sync issues 找到如下grade-wrapper.properties 点击try again即可。 ...
分类:
移动开发 时间:
2019-04-12 20:45:49
阅读次数:
237
int fibonacci(int n) { if(n<=0) { return = 0; } if(n==1||n==2) { return =1; } return fibonacci(n-1)+fibonacci(n-2); ) int fibonacci(int n) { if(n<=0) ...
分类:
其他好文 时间:
2019-04-12 12:07:49
阅读次数:
104
Description 现在有一个长度为n的串S,其中每一个字母都是前m个小写字母计算有多少个不同的长度为n的T(其中T也是由前m个小写字母组成),并且S与T的LCS为n-1LCS就是同时存在于S和T的最长子序列 Description 现在有一个长度为n的串S,其中每一个字母都是前m个小写字母计算 ...
分类:
其他好文 时间:
2019-04-09 21:01:26
阅读次数:
188
An inorder binary tree traversal can be implemented in a non-recursive way with a stack. For example, suppose that when a 6-node binary tree (with the ...
分类:
其他好文 时间:
2019-04-08 13:41:11
阅读次数:
116
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1848 Problem Description 任何一个大学生对菲波那契数列(Fibonacci numbers)应该都不会陌生,它是这样定义的:F(1)=1;F(2)=2;F(n)=F(n-1)+F(n ...
分类:
其他好文 时间:
2019-04-05 18:16:18
阅读次数:
154