上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 94 下一页
摘要: 简介 值传递. 但是对于基本数据类型, 传递的是就是数值, 如果不是基本数据类型, 传递的就是对象的地址,也就是将对象的地址拷贝了一份传递过去. 参考链接 https://www.cnblogs.com/sum-41/p/10799555.html 阅读全文
posted @ 2021-06-28 15:49 HDU李少帅 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 简介 Comparable<> 接口 Compatator 也是接口 -- 类似C++中的cmp函数. 分别对一个对象实现了 从大到小排序和从小到大排序 code import java.util.*; /** * Created by lee on 2021/6/28. */ public cla 阅读全文
posted @ 2021-06-28 15:42 HDU李少帅 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 简介 一个线程的核心线程数是4, 最大线程数是8, 有一个任务提交过来, 迅速执行王弼, 如果再来一个任务, 那么线程池是新建一个线程去执行还是会复用之前的线程? 参考链接 https://blog.csdn.net/hu10131013/article/details/105665232 (逻辑图 阅读全文
posted @ 2021-06-28 14:30 HDU李少帅 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 简介 对cmp的理解能力 常规题 code #include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; struct Student{ int idx; int n 阅读全文
posted @ 2021-06-28 13:46 HDU李少帅 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 简介 用传统的算法, 可能要用到递归栈, 什么鬼. 太难记了 还是python香. code a=input() a = a.replace('{', '(') a = a.replace('}', ')') a = a.replace('[', '(') a = a.replace(']', ') 阅读全文
posted @ 2021-06-28 10:59 HDU李少帅 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 简介 c = c++ ? c = ++c ? code #include <iostream> #include <string> using namespace std; int main() { long long n; while(cin >> n) { bool pre = true; in 阅读全文
posted @ 2021-06-28 09:50 HDU李少帅 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 简介 动态规划问题。 对于贪心无法解决的问题, 要第一时间想到动态规划问题的解法。 但是对于动态规划问题, 你要想的是使用dp[] 还是 dp[][] 其中每个dp元素表示的意义 这题的dp[i] 表示的是, 从0开始的桩子到 i 个桩子 , 从小到大最大的序列。 dp[i] = max(dp[i] 阅读全文
posted @ 2021-06-28 09:36 HDU李少帅 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 简介 使用匈牙利算法进行匹配 code #include <stdio.h> #include <string.h> #include <stdlib.h> #include <limits.h> #include <math.h> #include <algorithm> #include <ve 阅读全文
posted @ 2021-06-27 22:05 HDU李少帅 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 简介 简单题, 但是作者写的很巧妙, 参考答案. code #include <stdio.h> #include <string.h> int main(void) { char str[1000]={0},temp[1000]={0}; while(gets(str)) { int i,j,k= 阅读全文
posted @ 2021-06-27 22:00 HDU李少帅 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 简介 比较好的动态规划的题目. code import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); while 阅读全文
posted @ 2021-06-27 19:26 HDU李少帅 阅读(51) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 94 下一页