- 博客(10)
- 收藏
- 关注
原创 Java知识点笔记(持续更新)
1.string类型的默认值是null;2.int类型的默认值是0;3.char类型的默认值是‘\u0000’;4.boolean类型的默认值为false;
2021-08-01 12:20:45 244
原创 JAVA常用快捷键(持续更新中)
1.syso+enter=system.out.println();2.main+enter=public static void main(){};
2021-07-31 12:18:53 112
原创 c++里迭代器的最常见使用方式
迭代器的声明方式:(类型)vector(数据类型)<int>iterator:: (名称)it;迭代器的加减:it++;表示it指向it之后的那个数据;迭代器的使用:*it可以当成一个普通变量使用。
2020-10-28 22:41:43 121
原创 c++中vector的使用及思考
vector,不定长数组,用于动态控制数组长度。 vector<int>vc; //声明 vc.push_back(1); //插入元素 vc.push_back(0); printf("%d\n",vc[0]); //使用 for(int i=0;i<vc.size();i++) { printf("%d\n"); } //遍历方式1 for(vector<int>::iterator it
2020-10-28 22:32:28 96
原创 线性筛素数的思考
今天再次复习了一下线性筛的写法,有了一些新的感悟先上板子#include<bits/stdc++.h>using namespace std;int read(){ int s=0,w=1; char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')w=-1;ch=getchar();} while(ch>='0'&&ch<='9') s=s*10+ch-'0',ch=getc
2020-10-27 00:03:39 78
原创 getchar函数使用注意
getchar()是快速读取字符的一个库函数,在算法竞赛中常见于快读int read(){ int s=0,w=1; char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')w=-1;ch=getchar();} while(ch>='0'&&ch<='9') s=s*10+ch-'0',ch=getchar(); return s*w;}问题今天水比赛的时候发现一个问题get
2020-10-20 16:31:38 538
原创 关于辗转相除法的思考
辗转相除法的递归写法为:#include <stdio.h>#include <stdlib.h>int gcd(int a,int b){ if(b==0) return a; else return gcd(b,a%b);}int main(){ int a,b; scanf("%d%d",&a,&b); printf("Greatest common divisor: %d",gcd(a,b)); retur
2020-10-18 15:29:48 191
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人