public class DoublePointer { public static int[] a = new int[]{1, 3, 4, 9}; public static int[] b = new int[]{0, 3, 4, 4}; public static void main(Str ...
分类:
编程语言 时间:
2021-06-15 18:46:19
阅读次数:
0
Delphi XE UniGUI 错误:Unable to locate file“uniGUIType.pas” 一开始,我以为是没有设置好路径,所以做了以下动作: 结果才知道,UniGUI 官方安装包里根本没有公布pas这个文件,只提供了dcu的文件。 创建时间:2021.06.15 更新时间: ...
在策略模式(Strategy Pattern)中,一个类的行为或其算法可以在运行时更改。这种类型的设计模式属于行为型模式。 public interface Strategy { public int operate(int num1, int num2); } public class AddOp ...
分类:
其他好文 时间:
2021-06-15 18:41:21
阅读次数:
0
用到的软件:Winhex软件 步骤: 1、编译出boot.hex、app.hex 2、复制一份boot.hex,并改名为boot_app.hex 3、把Boot的最后一行去掉,再把App的所有文件复制到Boot后即可 具体如下: :020000040800F2 //boot起始地址 :1000000 ...
分类:
移动开发 时间:
2021-06-15 18:34:20
阅读次数:
0
app.vue watch: { $route: { handler: function (val, oldVal) { this.$nextTick(function () { //页面加载完成后执行 var inputs = document.getElementsByTagName("inpu ...
分类:
其他好文 时间:
2021-06-15 18:24:49
阅读次数:
0
90.子集Ⅱ 题目 给你一个整数数组 nums ,其中可能包含重复元素,请你返回该数组所有可能的子集(幂集)。 解集 不能 包含重复的子集。返回的解集中,子集可以按 任意顺序 排列。 示例 1: 输入:nums = [1,2,2] 输出:[[],[1],[1,2],[1,2,2],[2],[2,2] ...
分类:
其他好文 时间:
2021-06-15 17:58:02
阅读次数:
0
原题链接 考察:思维 思路: 神仙题.想了半天还以为和一元二次方程的$b2-4ac$有关系,结果没多大关系(.),或者可能是本蒟蒻没想到 一般是将两个未知量划到左右两边个一边,枚举其中一个来确定方案数. \(y^2-x^2 = ax+b\) \(y^2 = x^2+ax+b\) \(4y^2 = 4 ...
分类:
其他好文 时间:
2021-06-13 10:57:38
阅读次数:
0
Python3 双指针 class Solution: def isPalindrome(self, s: str) -> bool: n = len(s) left, right = 0, n - 1 while left < right: while left < right and not s ...
分类:
编程语言 时间:
2021-06-13 10:55:47
阅读次数:
0
解析 这道题我觉得恶心的地方就是要求一整条边的边权的异或给搞出来, 注意运算符不要用错了。 Code #include <bits/stdc++.h> #define N 100005 using namespace std; struct node { int x, to, nxt; }hd[N ...
分类:
其他好文 时间:
2021-06-13 10:42:08
阅读次数:
0
Servlet3.0 提供了专门的文件上传 API。 HttpServletRequest 的 getPart()方法可以完成单个文件上传,而 getParts()方法可以完成多个文件上传。注意,这两个方法是从 Servlet3.0 开始定义的。 getPart方法:Part getPart(Str ...
分类:
Web程序 时间:
2021-06-13 10:23:38
阅读次数:
0