江琛

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 江琛 阅读(29) 评论(0) 推荐(0) 编辑

导航