摘要: 1 #include <iostream> 2 using namespace std; 3 4 //最大公约数 5 int gcd(int a,int b){ 6 return b?gcd(b,a%b):a; 7 } 8 9 //最小公倍数 10 int lcm(int a,int b){ 11 阅读全文
posted @ 2020-02-23 16:47 xuecl 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 1 #include <iostream> 2 using namespace std; 3 4 void swap(int* a,int* b){ 5 int temp = 0; 6 temp = *a;*a=*b;*b=temp; 7 } 8 9 void qsort(int arr[],int 阅读全文
posted @ 2020-02-23 15:41 xuecl 阅读(484) 评论(0) 推荐(0) 编辑
摘要: 1 #include <iostream> 2 using namespace std; 3 const int maxn = 100; 4 5 int merge(int A[],int L1,int R1,int L2,int R2){//L1、R1为第一段区间的左下标与右下标,同理L2、R2 阅读全文
posted @ 2020-02-23 14:50 xuecl 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 1 #include <iostream> 2 #include <vector> 3 4 using namespace std; 5 6 vector<int> selectSort(vector<int> arr){ 7 8 for(vector<int>::iterator i = arr. 阅读全文
posted @ 2020-02-22 16:22 xuecl 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 1 #include <bits/stdc++.h> 2 using namespace std; 3 4 void bubbleSort(int a[],int n){ 5 for(int i=0;i<n;i++){ 6 for(int j=0;j<n;j++){ 7 if(a[j]>a[j+1] 阅读全文
posted @ 2020-02-22 16:18 xuecl 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 一、文件与目录的基本操作 1.ls 列出文件或者目录的信息 ls [ aladffhinrRSt] file|dir a:列出全部文件及目录 l:列出文件及列表的详细信息 2.cd 更换当前目录 cd 相对路径或绝对路径 3.mkdir 新建目录 mkdir 目录名称 4.rm 删除目录或文件 rm 阅读全文
posted @ 2020-02-19 15:32 xuecl 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 解决措施 settings Danger Zone Make public 1. settings 2. Danger Zone Make public 公共仓库转为私有仓库的操作相同 阅读全文
posted @ 2020-02-14 23:28 xuecl 阅读(2141) 评论(0) 推荐(0) 编辑
摘要: apt终端命令apt是Advanced Packaging Tool, 是Ubuntu下的安装包理工具,大部分的软件安装/更新/卸载都是利用apt命令来 实现的, 直接在终端中输入apt 即可以查阅命令的帮助信息 ●常用命令如下: 1.安装软件$ sudo apt install 软件名 2.卸载软 阅读全文
posted @ 2020-02-11 11:30 xuecl 阅读(2494) 评论(0) 推荐(0) 编辑
摘要: 转:https://www.cnblogs.com/dongxixi/p/11047087.html 阅读全文
posted @ 2020-02-07 17:33 xuecl 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 转:https://blog.csdn.net/weixin_36296538/article/details/83153070 前言: 最近在琢磨django框架的使用,在上传个人网站服务器上时,再次遇到了找不到静态文件,css、img等样式全无的问题。于是沉下心来,好好研究了django的静态文 阅读全文
posted @ 2020-02-07 17:25 xuecl 阅读(854) 评论(0) 推荐(0) 编辑