位运算(求n的第k位数字)(返回n的最后一位1) 摘要:求n的第k位数字#include<iostream> #include<string> using namespace std; int main(void) { int n; …… 文章列表 2023年07月26日 0 点赞 0 评论 51 浏览 评分:9.9
双指针 最长连续不重复子序列(入门) 摘要:暴力做法for(int i=0;i<n;i++) for(int j=0;j<n;j++) { if(check(i,j)) res=max(res,j-i+1) …… 文章列表 2023年07月26日 0 点赞 0 评论 59 浏览 评分:9.9
一维差分 insert初始化差分数组 insert(i,i,a[i]) 摘要:#include<iostream> using namespace std; const int N=10050; int a[N],s[N]; void insert (int l,int…… 文章列表 2023年07月26日 0 点赞 0 评论 62 浏览 评分:9.9
快速排序-简单实现 摘要:#include int a[100]; void quicksort(int left,int right) { int i, j, t, temp; // 排序终止…… 文章列表 2023年07月23日 0 点赞 0 评论 103 浏览 评分:9.0
冒泡排序-简单实现 摘要:```c #include struct Student { char name[21]; char score; }; int main() { struct…… 文章列表 2023年07月23日 0 点赞 0 评论 99 浏览 评分:9.9
万能函数开头 摘要:int add(int n){ int sum=0; for(int i=1;i<=n;i++) { sum+=i; return sum; }…… 文章列表 2023年07月22日 0 点赞 0 评论 115 浏览 评分:9.9
第七章:函数(定义) 摘要:自定义函数: 要素:一. 返回值类型 二. 函数名字 三. 参数(输入) 参数可以为空或无限多&n 文章列表 2023年07月22日 0 点赞 0 评论 83 浏览 评分:0.0
杨辉三角附加 摘要:众所周知,杨辉三角是我国著名数学家杨辉研究出来的,我们现在可用它证明一些公式11 11 2 1//(a+b)² = a²+b²+2ab1 3 3 1//(a+b)³ =a³+3a²b+3ab²+b³·…… 文章列表 2023年07月21日 0 点赞 0 评论 63 浏览 评分:9.9
全排列问题 原题:落谷P1706 dfs 摘要:```cpp #include using namespace std; const int maxn=10; int a[maxn],b[maxn]; //数组a为排列数组 b用于输出 i…… 文章列表 2023年07月21日 0 点赞 0 评论 112 浏览 评分:0.0
二维数组(第一次写知识类文章,希望大家喜欢) 摘要:数学中点动成线,线动成面,用编程的语言来说,变量就是一个点,一维列表就相当于线,而二维列表就是面,这里有一个定义①:输入#include <bits/stdc++.h>using namespace …… 文章列表 2023年07月20日 0 点赞 0 评论 95 浏览 评分:9.9