自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 资源 (6)
  • 收藏
  • 关注

原创 线代和概率论补漏

1、Tracethe trace of a square matrix A is defined as the sum of elements on the main diagonal of A.The trace of a matrix is sum of the eigenvalues, and it is invariant with respect to a change of bas...

2019-10-27 21:19:00 621

原创 880. Decoded String at Index, medium, stack

思路1直接用String把字符串拼起来。public String decodeAtIndex(String S, int K) { StringBuffer sb = new StringBuffer(); for (int i = 0; i < S.length(); i++) { char c = S.charAt(i);...

2019-10-08 18:55:07 198

原创 155. Min Stack ——easy, stack

原题链接思路还没读完题时第一反应是最小堆,然而不符合题意。题意是要实现一个普通的栈,外加一个getMin()的功能。思路是使用两个栈,一个是普通的栈,另一个栈放当前最小值。class MinStack { private Deque<Integer> stack1 = new ArrayDeque<>(); private Deque<Int...

2019-10-08 12:27:40 214

王爽 debug link masm

里面有汇编用到的工具:edit.exe、masm.exe、link.exe、debug.exe。还有DOS的模拟程序DOSBox0.74-win32-installer.exe。还有王爽老师的《汇编语言》

2018-06-03

complete_nginx_cookbook.pdf

How to configure content caching, load balancing, monitoring, high availability (HA), and other critical NGINX features. How to protect your applications: mitigate DDoS attacks, stop Layer 7 attacks, and configure Single Sign-On with OpenID. How to deploy NGINX and NGINX Plus in AWS, Azure, and GCP; as well as in Docker containers. About monitoring and troubleshooting application performance with NGINX.

2018-01-19

hadoop 2.8.3 eclipse oxygen plugin hadoop-eclipse-plugin-2.8.3.jar

hadoop-eclipse-plugin-2.8.3.jar hadoop eclipse插件,hadoop版本2.8.3,eclipse版本oxygen,亲测可以,用问题请留言:http://blog.csdn.net/familyshizhouna/article/details/78892500

2017-12-25

hadoop-eclipse-plugin-2.8.3.jar

hadoop2.8.3的eclipse插件,eclipse版本是mars,亲测可用。如果遇到这个错误:An internal error occurred during: "Map/Reduce location status updater"不是插件问题,请执行命令:hadoop dfs -mkdir /用户名。

2017-12-25

测量文件夹大小工具

能显示文件夹大小。挺方便的小工具,想删除没用文件,而且文件特别多时,可快速定位占硬盘的文件夹。

2015-01-14

[Visual.C.与Windows编程学习参考].汪小龙.扫描版.pdf

[Visual.C.与Windows编程学习参考].汪小龙.扫描版.pdf

2010-09-29

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除