未完待续……(只是给自己存个板子) 快速傅里叶变换 #include <bits/stdc++.h> using namespace std; const int maxn = 2e6 + 1e2; struct Cp { double x, y; inline Cp operator +(cons ...
                            
                            
                                分类:
其他好文   时间:
2021-02-17 14:03:19   
                                阅读次数:
0
                             
                         
                    
                        
                            
                            
                                ###一 什么是事件 1.事件是视图层到逻辑层的通讯方式。 2.事件可以将用户的行为反馈到逻辑层进行处理。 3.事件可以绑定在组件上,当达到触发事件,就会执行逻辑层中对应的事件处理函数。 4.事件对象可以携带额外信息,如 id, dataset, touches。 ###二 事件分类 事件分为冒泡事 ...
                            
                            
                                分类:
其他好文   时间:
2021-02-16 11:40:23   
                                阅读次数:
0
                             
                         
                    
                        
                            
                            
                                A. Required Remainder 题意: $t$组样例,判定一个正整数$n$是否存在一个大于$1$的奇数因子,\((1≤t≤10^4), (2≤n≤10^{14})\) 思路: 打表,发现只有满足$2^$的数字不存在奇数因子。 Code: int main(){ ios::sync_wit ...
                            
                            
                                分类:
其他好文   时间:
2021-02-15 12:39:39   
                                阅读次数:
0
                             
                         
                    
                        
                            
                            
                                
                    Appium入门案例之Android篇 Appium环境搭建篇参考这个“环境搭建” (一)、获取package和activity 安卓自动化测试之前首先需要了解package和activity,由于测试前需要这两个参数的值来启动,一般称前置代码; 获取手机当前运行的package和activity的 ...
                            
                            
                                分类:
移动开发   时间:
2021-02-15 12:27:20   
                                阅读次数:
0
                             
                         
                    
                        
                            
                            
                                
                    https://codeforces.com/contest/1473/problem/E vector存图: 1 #define bug(x) cout<<#x<<" is "<<x<<endl 2 #define IO std::ios::sync_with_stdio(0),cin.tie(0 ...
                            
                            
                                分类:
其他好文   时间:
2021-02-15 12:17:20   
                                阅读次数:
0
                             
                         
                    
                        
                            
                            
                                
                    https://www.acwing.com/problem/content/1139/ #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); cout.tie ...
                            
                            
                                分类:
其他好文   时间:
2021-02-15 11:53:52   
                                阅读次数:
0
                             
                         
                    
                        
                            
                            
                                
                    https://www.acwing.com/problem/content/1133/ #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); cout.tie ...
                            
                            
                                分类:
其他好文   时间:
2021-02-15 11:53:38   
                                阅读次数:
0
                             
                         
                    
                        
                            
                            
                                
                    https://www.acwing.com/problem/content/1136/ #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); cout.tie ...
                            
                            
                                分类:
其他好文   时间:
2021-02-15 11:53:26   
                                阅读次数:
0
                             
                         
                    
                        
                            
                            
                                
                    CentOS 7 引导顺序: UEFi或BIOS初始化,运行POST开机自检(可扩展固件接口负责加电自检(POST)、联系操作系统以及提供连接操作系统与硬件的接口。) 选择启动设备 引导装载程序, centos7是grub2 加载装载程序的配置文件:/etc/grub.d/、/etc/default ...
                            
                            
                                分类:
其他好文   时间:
2021-02-10 13:31:21   
                                阅读次数:
0
                             
                         
                    
                        
                            
                            
                                
                    Ps:假期想做一个3d球体的相册,在网上搜索源码,定位到一个抽象出来的3dTagCloudAndroid技术。下载到本地,想在手机端运行遇到个报错,记录下。 Ps:开源库地址:https://github.com/misakuo/3dTagCloudAndroid 首先:本地克隆代码,后会自动加载依 ...
                            
                            
                                分类:
移动开发   时间:
2021-02-09 12:16:21   
                                阅读次数:
0