水下功夫做透,水上才能顺风顺水。
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 40 下一页
该文被密码保护。 阅读全文
posted @ 2022-01-26 18:16 北方寒士 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 要定位问题,首先你需要获取服务器jvm某刻内存快照。jdk自带的jmap可以获取内存某一时刻的快照,导出为dmp文件后,就可以用Eclipse MAT来分析了,找出是那个对象使用内存过多. 1. top 一下获取内存占用率最高的pid。 2. 转到 jdk的bin目录,执行jdk命令。 一. jst 阅读全文
posted @ 2021-12-17 12:25 北方寒士 阅读(1281) 评论(0) 推荐(0) 编辑
摘要: 1. 启动类 @SpringBootApplication @EnableAlive @EnableFeignClients(basePackages = "com.lingoace.pub.operations.clients") public class Application { public 阅读全文
posted @ 2021-09-28 10:28 北方寒士 阅读(290) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-06-20 17:59 北方寒士 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-06-19 22:56 北方寒士 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-06-19 11:50 北方寒士 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-06-18 23:21 北方寒士 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-06-16 14:24 北方寒士 阅读(0) 评论(0) 推荐(0) 编辑
摘要: int[] a = {7,1,5,3,6,4} 不是动态规划,没有状态转移方程。 第i日最大收益:d[i] = a[i]-min(a{0,i-1})n个第i日构成的数组D[i],D[i]中最大值即为所求。 int getMaxProfit(int[] a,int len){ int min = a[ 阅读全文
posted @ 2021-06-15 21:25 北方寒士 阅读(141) 评论(0) 推荐(0) 编辑
摘要: vector<int> commomValue(vector<int> a, vector<int> b) { vector<int> ret; int m = a.size(); int n = b.size(); int i = 0, j = 0; while(i < m && j < n) { 阅读全文
posted @ 2021-06-13 18:22 北方寒士 阅读(75) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 40 下一页