- 博客(7)
- 收藏
- 关注
原创 Leetcode刷题题解(Java版)
一、数组1.两数之和class Solution { public int[] twoSum(int[] nums, int target) { int[] result = new int[2]; // 返回两个值,建数组 // 建立k-v ,一一对应的哈希表 Map<Integer,Integer> store = new HashMap<>(); for(int i = 0; i < nums.
2022-03-30 17:10:36 820
原创 matlab参数设置和出图
1.matlab参数设置 workspac R=10subsystem ——mask ——edit2.matlab模型复制到wordscope模型
2021-10-21 11:11:55 575
原创 牛客C语言刷题笔记
一、函数sizeof() : 计算变量字节大小 \n :换行 %d :整数,%D大写 ;%d小写。例如 printf("%d",n),为输出n ; %c - 字符 %hd -短整形 %d - 整形 %s - 字符串 %f - 单精度浮点数 %lf - 双精度浮点数 %p - 地址格式 printf(""): 打印输出,例如printf("%#o %#X",1234,1234) scanf(""):输入,例如scanf("%d",&n); ..
2021-09-15 11:43:47 251
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人