VIII.[SDOI2008]Sandy的卡片 ……有什么意义吗…… 差个分,然后就是IV.[POI2000]公共串的内容了,套个单调队列,$O(n)$解决,假如你用DC3的话。 代码: #include<bits/stdc++.h> using namespace std; int all,n,m ...
分类:
其他好文 时间:
2021-04-01 13:08:31
阅读次数:
0
/* 总结:stl里数据结构,如hash(unordered_set\map),queue,deque,priority_queue,stack 主要会用以上数据结构的成员函数,empty(),count(),insert(),push(),push_back(),front(),top(),bac ...
分类:
其他好文 时间:
2021-03-30 13:58:40
阅读次数:
0
背景: Pod状态是imagepullbackoff 原因可能有多种: 1、镜像名称无效,例如拼错镜像名称,或者镜像不存在 解:修改镜像名称和标记来解决该问题,或者将正确镜像上传到仓库中。 2、镜像仓库中丢失此镜像及Pod所在节点上丢失了镜像。 解:需要从新上传镜像到仓库中,或者同一Pod部署在了多 ...
分类:
其他好文 时间:
2021-03-30 13:46:35
阅读次数:
0
1 import os 2 3 # 获取手机系统信息 4 phone_sys = os.popen('adb shell "cat /system/build.prop | grep "product""').read() 5 print(phone_sys) 6 7 # 获取手机设备型号 8 de ...
分类:
编程语言 时间:
2021-03-30 13:42:38
阅读次数:
0
leetcode 173. 二叉搜索树迭代器:实现一个二叉搜索树迭代器类BSTIterator ,表示一个按中序遍历二叉搜索树(BST)的迭代器。 ...
分类:
其他好文 时间:
2021-03-30 13:04:24
阅读次数:
0
#include <stdio.h> #define NUMBER 100 int push(int* a, int top, int data) { a[++top] = data; return top; } int pop(int* a, int top) { if (top == -1) { ...
分类:
编程语言 时间:
2021-03-29 12:23:07
阅读次数:
0
1.Android app抓取日志(DDMS) 安装SDK环境 运行手机上的app查看日志即可 2.日志定位,抓取错误 遇到应用crash的错误,输入adb logcat -v time >保存的文件路径 根据关键字fatal exception 和报错时间定位错误 从E开始到E结束 遇到anr错误 ...
分类:
移动开发 时间:
2021-03-29 12:19:15
阅读次数:
0
1. git git checkout -b v1 // 创建并切换 git checkout name // 撤回修改文件 git branch -a // 查看所有分支 git branch --set-upstream-to=origin/feature-v1 // 默认拉取远程分支 git ...
分类:
系统相关 时间:
2021-03-29 11:44:12
阅读次数:
0
https://help.sap.com/saphelp_nwpi71/helpdata/en/c7/4efe402762ef6fe10000000a1550b0/content.htm?no_cache=true 1.QRFC DEMO: RSTRFCT0 RSTRFCT1 RSTRFCQ4 2. ...
分类:
其他好文 时间:
2021-03-29 11:43:47
阅读次数:
0
1.$route 与 $router 区别 router 为 VueRouter 的实例,相当于一个全局的路由器对象,里面含有汗多属性和子对象,例如 history 对象,经常用的跳转链接就可以用this.$router.push()和router-link跳转一样,它是一个路由对象,可以方便的使用 ...
分类:
其他好文 时间:
2021-03-29 11:36:38
阅读次数:
0