C++常用算法及数据结构(字符串匹配算法)[STL] 摘要:# 字符串匹配算法 字符串匹配算法是指在一个文本串(较长的字符串)中查找一个模式串(较短的字符串)的出现位置或匹配情况的算法。以下是几种常见的字符串匹配算法 #### 1.朴素字符串匹配算法(Br…… 文章列表 2023年07月02日 0 点赞 0 评论 442 浏览 评分:9.9
血压管理(简单代码) 摘要:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c,d,sum=0,sum1=0,aaa=0; cin>>a;…… 文章列表 2023年07月01日 0 点赞 0 评论 139 浏览 评分:9.9
C++常用算法和数据结构(STL) 摘要:## 主要是分享,其次是偷懒 2 查找算法 2.1二分查找 原理: 二分查找(Binary Search)是一种非常基础和常用的查找算法,它的主要使用场景是在有序数组中查找目标值。二分查找的基…… 文章列表 2023年06月24日 0 点赞 0 评论 120 浏览 评分:9.9
精品文章 C++常用算法和数据结构(STL) 摘要:## 主要是分享 其次是想偷懒(写了之后自己可以参考)原文中还有一些没有参透的点 写的不是很好 ### 1、排序 ##### 1.1、冒泡排序 ###### 原理: 是从待排序序列的左边开始…… 文章列表 2023年06月23日 0 点赞 0 评论 166 浏览 评分:9.9
题目 1123: C语言训练-列出最简真分数序列* 摘要:#include<stdio.h> int main(void){ int arr[20]={0}; int i,j=0,num=0,mark; for(i=2;i<40;…… 文章列表 2023年06月18日 0 点赞 0 评论 69 浏览 评分:0.0
炭烤cpu小妙招 摘要:#include<iostream>#include<windows.h>#include<stdio.h>#include<fstream>using namespace std;int main(…… 文章列表 2023年06月18日 0 点赞 0 评论 130 浏览 评分:8.0
[编程入门]Sn的公式求和——个人学习(C++) 摘要:#include#includeusing namespace std;int main(){ int a = 2; int Sn = 0; int n; cin >> n; …… 文章列表 2023年06月17日 0 点赞 0 评论 75 浏览 评分:9.9
2790 分段函数 摘要:#include <bits/stdc++.h>using namespace std;int main(){ double x; cin >>x; if (x>=0&&x<5) …… 文章列表 2023年06月17日 0 点赞 0 评论 60 浏览 评分:0.0
链表dsaddddddddddddddddddddd 摘要:#include<stdio.h>#include<malloc.h>struct no { int ct; struct no *next;};struct no * create(int n) {…… 文章列表 2023年06月13日 0 点赞 0 评论 86 浏览 评分:0.0
输出九九乘法表 摘要:#include<stdio.h>#include<math.h>#define N 9int main(){int i;int j;printf(" Nine-by-nine Multiplica…… 文章列表 2023年06月10日 0 点赞 0 评论 72 浏览 评分:9.9