算数运算符的中后缀转换 摘要:#include<iostream>#include<algorithm>#include<cstring>#define max 11using namespace std;struct zzhs{…… 文章列表 2024年12月16日 0 点赞 0 评论 1157 浏览 评分:0.0
贪吃蛇源码,想玩或者研究的拿去慢慢看吧 摘要:#include<stdio.h>#include<stdlib.h>#include<windows.h> #include<time.h>#include<conio.h> int X=60;//…… 文章列表 2024年12月16日 1 点赞 0 评论 1206 浏览 评分:0.0
简单的A+B(C++和Python和Java) 摘要:C++: ```cpp #include using namespace std; int main() { int a,b; while(cin>>a>>b)cout…… 文章列表 2024年12月16日 1 点赞 0 评论 692 浏览 评分:10.0
什么希拉里,不行 摘要: #include int main(){ int a[100]; // 定义整数数组用于存储输入的数字 int n,i,j,temp,sum…… 文章列表 2024年12月15日 1 点赞 0 评论 599 浏览 评分:10.0
哥德巴赫猜想 摘要:注意所求内容: #include #include // 判断一个数是否为素数 int isprime(int n) { int i, k;…… 文章列表 2024年12月15日 2 点赞 0 评论 797 浏览 评分:10.0
用指针函数来写Hello World!(进阶版Hello World) 摘要:#include<bits/stdc++.h>using namespace std;const char* Return() { const char* g = "Hello,World!"…… 文章列表 2024年12月11日 0 点赞 0 评论 566 浏览 评分:0.0
缓存穿透及解决方案 摘要:基本概念缓存系统的主要作用是存储经常访问的数据,以减少对后端存储系统(如数据库)的访问压力。当有一个请求查询数据时,系统首先会在缓存中查找。如果缓存中存在该数据,就直接返回缓存中的数据;如果缓存中没有…… 文章列表 2024年12月11日 0 点赞 0 评论 378 浏览 评分:0.0
缓存穿透及解决方案 摘要:什么是缓存穿透: 缓存系统的主要作用是存储经常访问的数据,以减少对后端存储系统(如数据库)的访问压力。 当有一个请求查询数据时,系统首先会在缓存中查找。如果缓存中存在该数据…… 文章列表 2024年12月11日 0 点赞 0 评论 286 浏览 评分:0.0
01背包暴力dfs与记忆化 摘要:#include<iostream>#include<cstring>#include<algorithm>using namespace std;int n,m;//n表示有几个物品,m表示背包能装…… 文章列表 2024年12月11日 0 点赞 0 评论 351 浏览 评分:0.0
动态规划之数字三角形暴力递归解法和记忆化搜索与最后的递推 摘要:原题链接:数字三角形解题思路:我们所要解决的问题不过是进行一层层的最大值判断,然后将其相加 &nb 文章列表 2024年12月11日 0 点赞 0 评论 361 浏览 评分:0.0