上一页 1 2 3 4 5 6 7 8 9 10 ··· 32 下一页
摘要: C 语言 printf("%d", n) 默认是左对齐,而如果是给定了数字宽度,如: printf("%5d", n); 这个默认是右对齐, 而要改成左对齐,只需要加一个负号即可: printf("%-5d", n); 示例: #include <stdio.h> #include <string. 阅读全文
posted @ 2020-12-23 16:37 模糊计算士 阅读(4724) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> int main() { int sum = 0, value = 0; while (std::cin >> value) sum += value; std::cout << "Sum is: " << sum << std::endl; return 0 阅读全文
posted @ 2020-12-23 12:53 模糊计算士 阅读(994) 评论(0) 推荐(0) 编辑
摘要: 物体质量为 m,弹簧为轻质弹簧。 平衡时: \(mg = k_a x_a = k_b x_b = kx\) 其中,\(k\) 是串联的总弹力系数,\(x = x_a + x_b\). 我们可以这样理解,分析弹簧 a 时,我们将弹簧 b 和物体看成一个整体,分析 b 时,我们将弹簧 a 和天花板看成一 阅读全文
posted @ 2020-12-21 20:09 模糊计算士 阅读(5603) 评论(0) 推荐(0) 编辑
摘要: 零钱兑换。 思路:动态规划。 利用规律: \(dp[i] = min\{ dp[i - coins[j]] \} + 1, \quad i: 0 \rightarrow coins.length\) class Solution { public int coinChange(int[] coins 阅读全文
posted @ 2020-12-21 15:18 模糊计算士 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 使用最小花费爬楼梯 代码: class Solution { public int minCostClimbingStairs(int[] cost) { int[] dp = new int[cost.length + 1]; dp[0] = 0; dp[1] = cost[0]; for (in 阅读全文
posted @ 2020-12-21 13:21 模糊计算士 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 角速度:\(\omega = \displaystyle \frac{\mathrm{d} \theta }{\mathrm{d} t}\) 角加速度:\(\beta = \displaystyle \frac{\mathrm{d} \omega }{\mathrm{d} t} = \frac{\m 阅读全文
posted @ 2020-12-20 23:01 模糊计算士 阅读(3133) 评论(0) 推荐(0) 编辑
摘要: ![20201220211742](https://cdn.jsdelivr.net/gh/fanlumaster/BlogMaps@master/blogs/pictures/20201220211742.png) 阅读全文
posted @ 2020-12-20 22:42 模糊计算士 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 判断物体是否作简谐振动的依据 这两个判断条件是用来做证明题的依据。即,证明一个物体的运动是简谐振动。 简谐振动运动方程 周期和频率 \(\omega\) 是角频率。 阅读全文
posted @ 2020-12-20 21:19 模糊计算士 阅读(469) 评论(0) 推荐(0) 编辑
摘要: 题目描述: 代码: int dfs(int cur) { if (cnt++ == n) { for (int i = 0; i < cur; i++) { printf("%c", 'A' + S[i]); // 输出方案 } printf("\n"); return 0; } for (int 阅读全文
posted @ 2020-12-20 18:50 模糊计算士 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 题目链接:https://leetcode-cn.com/problems/remove-duplicate-letters 思路:这题应该考虑挑选,而不是删除。 代码: public String removeDuplicateLetters(String s) { int[] map = new 阅读全文
posted @ 2020-12-20 17:30 模糊计算士 阅读(86) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 32 下一页