Bootstrap
蓝桥杯c++b组练习题自用记录8
二分算法 整数二分算法模板 实数二分算法模板(二选一) 题目:M次方根(实数) #include<bits/stdc++.h> using namespace st
(自用)堆排序 大根堆 (C语言)
#include<stdio.h> void Swap(int *a,int *b) {     int t;     t=*a;     *a=*b;     *b=t;  }   vo
C++面试题总结-自用+分享-后续更新
#初版2024.3.12 ##面试内容: 1、C++11(支持智能指针)C++14、C++17 2、算法与数据结构 3、QT开发 4、python脚本编写 5、SVN或git 6、计算机图形学Open
(自用)希尔排序
#include<stdio.h> void Shellsort(int n[], int size) {     int i,gap,temp,end;     gap = size;
信息学奥赛一本通 C++ 1170:计算2的N次方 数组做法
1170:C++ 计算2的N次方 题目 思路: 每次方用一维数组储存每一位数乘以2 代码 #include<bits/stdc++.h> using namespace std;
C++笔记1/自用
#include <iostream> using namespace std; int main() { cout << "Hello, world!&#34
c++ memset
在代码中使用 memset(a, 1, sizeof(a)); 意图将数组 a 的所有元素初始化为 1,但是 memset 按字节进行赋值操作。对于 int 类型的数组,每个元素占 4 个字节(通常情
(自用)(C++)1172:求10000以内n的阶乘
#include<bits/stdc++.h> using namespace std; int main() {     int n,i,j,m=1;     cin>>n;
蓝桥杯c++b组练习题自用记录9
简单数论 1.模运算 模运算相关题目:刷题统计 #include<bits/stdc++.h> using namespace std; int main(){ lo
(自用)带头节点单链表
#include<stdio.h> #include<stdlib.h> struct Node{     int data;     struct Node *next; }
(自用)快速排序
#include<stdio.h> void swap(int* x, int* y) {     int t;     t = *x;     *x = *y;     *y = t;
(自用)位运算 位与 &
#include<stdio.h> #include<stdbool.h> bool pd(int n) {     return (n>0)&&(n&a
<sdut-ACM>1170 C语言实验-----最值
C语言实验——最值 Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^ 题目描述 有一个长度为n的整
(自用)(C++)1174:大整数乘法
#include&lt;iostream&gt; #include&lt;string&gt; using namespace std; string s1, s2; int arr1[1000],
杭电OJ_1170(C++版)
#include &lt;iostream&gt; #include &lt;iomanip&gt; using namespace std; int main() { int n,i(0),a,b;
;