多学习。

摘要: 分析 实现 1.后端controller package com.czy.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.Requ 阅读全文
posted @ 2022-05-09 21:11 czyaaa 阅读(42) 评论(0) 推荐(0)
摘要: AcWing2816.判断子序列 题解 即在另一个序列中,找到所有本序列的值,且具有相同的排列 #include <iostream> #include <cstdio> using namespace std; const int N = 1e5+10; int a[N], b[N]; int m 阅读全文
posted @ 2022-05-09 15:43 czyaaa 阅读(39) 评论(0) 推荐(0)
摘要: AcWing 800. 数组元素的目标和 题解 #include <iostream> #include <cstdio> using namespace std; const int N = 1e5+10; int a[N], b[N]; int main() { int n, m, x, i, 阅读全文
posted @ 2022-05-09 15:40 czyaaa 阅读(41) 评论(0) 推荐(0)