- 博客(2)
- 资源 (2)
- 收藏
- 关注
原创 google webp格式图片批量转码
google webp格式图片批量转码下载了大量图片,但是是webp格式。google提供的转码工具只能用dos命令一个个转码。所以写了个批量的。代码主要涉及:对文件夹文件遍历对文件夹所有子目录遍历#include<iostream>#include<direct.h>#include<io.h>#include<string>#include<process.h>using namespace std;int main(){
2020-11-13 16:11:13
536
原创 用递归实现快速排序
用递归实现快速排序#include<iostream>#include<ctime>#include<cstdlib>using namespace std;int main(){ srand(int (time(0))); int a[100]; for(int i=0;i<100;++i){ a[i]=rand()%99+1; } void use(int a[],int,int); use(a,0,99); for(int i=0;
2020-10-09 20:03:47
184
webp转码工具2.0.rar
2020-11-14
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人