自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 收藏
  • 关注

原创 2021-04-09

//给出N个整数,再给出M个整数,问这个M个数中的每个数分别是否是N个整数中出现过。//采用一般的遍历法时间复杂度为O(mn),而采用哈希表,用空间换取时间,只需要O(m+n)#include<stdio.h>#include<stdlib.h>const int maxn = 100010;bool hashtable[maxn] = { false };int main(){ int n, m, x; scanf("%d%d", &n, &m);

2021-04-09 11:38:50 108

原创 p进制的num转化为十进制的J

while (num != 0){//将p进制的num转化为十进制的j j += (num % 10)*product; num = num / 10; product = product*P; }码片

2021-04-07 15:39:09 92

原创 日期处理

在这里#include<stdio.h>#include<math.h>#include<stdlib.h>int month[13][2] = { (0, 0), (31, 31), (28, 29), (31, 31), (30, 30), (31, 31), (30, 30), (31, 31), (30, 30), (31, 31), (30, 30), (31, 31), (30, 30) };//平年和闰年每月的天数bool isleap(int

2021-04-07 14:16:41 66

原创 codeup1934找x

在#include<stdio.h>#include<math.h>#include<stdlib.h>const int maxn = 201;int main(){ int n; int x; int arry[maxn] = {0}; scanf_s("%d", &n); for (int i = 0; i < n; i++){ scanf_s("%d", &arry[i]); } scanf_s("%d", &amp

2021-04-07 11:35:37 87

原创 结构体函数实现实例

结构体构造函数实现实例。在这里插#include<stdio.h>#include<stdlib.h>#include<math.h>#include<string.h>struct point{ int x; int y; point(){} point(int _x, int _y) :x(_x), y(_y){}}pt[10];int main(){ int num=0; for (int i = 0; i < 3; i+

2021-04-07 08:38:25 200

原创 c语言中结构体中构造方法用来初始化

## 结构体的构造函数的用途和构造方法结构体中可以有构造函数,用于给结构体赋于初始值。#include<stdio.h>#include<stdlib.h>#include<math.h>#include<string.h>struct student{ int id; char gender; student(){} student(int _id,char _gender){ id = _id; gender = _id; }

2021-04-07 08:26:46 320

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除