音乐

常用的排序算法

2020-08-24565c/c++

01 常用的排序算法_sort 02 常用排序算法_random_shuffle 03 常用排序算法_merge 04 常用排序算法_reverse 01 常用的排序算法_sort #include<iostream> using namespace std; #inclu...

阅读全文 »

常用查找算法

2020-08-20534c/c++

01 常用查找算法_find 03 常用查找算法_adjacent_find 04 常用查找算法 binary_search 05 常用的查找算法_count 06 常用的查找算法_count_if 01 常用查找算法_find #include<iostream> us...

阅读全文 »

常用遍历算法

2020-08-19582c/c++

01 常用遍历算法for_each 02 常用的遍历算法transform 01 常用遍历算法for_each #include<iostream> using namespace std; #include<vector> #include<algorith...

阅读全文 »

windows命令行(DOS批处理)添加任务计划

2020-08-18604Windows

 创建pathon任务计划 python命令 import os import socket import win32api # method one name = socket.gethostname() print(name) # hanser user_name = win3...

阅读全文 »

电脑微信自动登录,手机自动确认

2020-08-17578python

 root开启adb,如果没连接会自动连接adb import os import win32api import uiautomator2 as u2 from mouseToClick import MouseToClick adb_path = 'C:\\Users\\yys...

阅读全文 »

🚀 Uiautomator2 安卓自动化与搞机终极指南

2020-08-151387python

摘要:本文是针对安卓自动化测试(特别是小米设备)的深度实战总结。涵盖环境配置ADB 连接Root 权限获取(Magisk)脚本编写技巧及各类“疑难杂症”的解决方案。 ⚠️ 第一章:小米手机“避坑”必读 (生死攸关) 在开始任何操...

阅读全文 »

函数对象

2020-08-15552c/c++

01 函数对象的基本使用 02 谓词_一元谓词 03 谓词_二元谓词 04 内建函数对象_算术仿函数 05 内建函数对象_关系仿函数 01 函数对象的基本使用 #include<iostream> using namespace std; //函数对象―(仿函数) /*...

阅读全文 »

各大会议整理

2020-08-14576学习/其他

  党 的 创 建 时 期 中共一大 1921年7月 国共产党产生,标志着中国革命有了新的领导核心,新的指导思想,新的革命前途,新的革命方法 ...

阅读全文 »

STL案例_员工分组

2020-08-14516c/c++

STL案例_员工分组  #include<iostream> using namespace std; #include<map> #include<vector> #include<ctime> #define CEHUA 0 #de...

阅读全文 »

map容器

2020-08-11502c/c++

01 map容器_构造和赋值 02 map容器_大小和交换 03 map容器_插入和删除 04 map容器_查找和统计 05 map容器_排序 01 map容器_构造和赋值 #include<iostream> using namespace std; #include&...

阅读全文 »
476 篇 · 第 40 / 48