江琛

2022年5月21日

牛客 抓球

摘要: 题目网址:B-抓球_哈尔滨理工大学第12届程序设计竞赛(同步赛) (nowcoder.com) #include <bits/stdc++.h>using namespace std;const long long N=1e9+7;long long fastpow(long long a,long 阅读全文

posted @ 2022-05-21 23:29 江琛 阅读(30) 评论(0) 推荐(0) 编辑

2022年4月30日

快速幂

摘要: #include <bits/stdc++.h>using namespace std;#define ll long longll ans = 1; ll Fastsub(ll base, ll pow) { while (pow != 0) { if (pow % 2 == 1) { //幂为奇 阅读全文

posted @ 2022-04-30 11:16 江琛 阅读(18) 评论(0) 推荐(0) 编辑

初学单链表

摘要: #include <iostream>using namespace std; typedef struct node { int data; struct node *next;} Node; //创建列表 有点类似于c++构造函数Node *creatList() { Node *head = 阅读全文

posted @ 2022-04-30 11:08 江琛 阅读(27) 评论(0) 推荐(0) 编辑

2022年4月29日

STL容器

摘要: 常用: 1 . vector 动态数组,支持正常数组sort格式。 遍历时注意借用迭代器 vector<int>iterator:: it; 2022.5.24补:遍历时不需要迭代器 2 . list 与vector类似,可以相互替代,但是各有优缺点 list采用链式思想,借用链表知识,便于插入删除 阅读全文

posted @ 2022-04-29 22:04 江琛 阅读(34) 评论(0) 推荐(0) 编辑

2022年3月6日

N个数相加(分子分母型)

摘要: #include<bits/stdc++.h>using namespace std;struct { int son; char ch; int mom;}a[105];int main() { int n,up=0,down=1; cin >> n; for (int i = 0; i < n; 阅读全文

posted @ 2022-03-06 11:40 江琛 阅读(63) 评论(0) 推荐(0) 编辑

导航