文章列表

筛选

单函数调用创建树

摘要:#include<iostream>#include<algorithm>using namespace std;struct cjs{ char data; struct cjs*next; str……

什么希拉里,不行

摘要: #include int main(){ int a[100]; // 定义整数数组用于存储输入的数字 int n,i,j,temp,sum……

哥德巴赫猜想

摘要:注意所求内容: #include #include // 判断一个数是否为素数 int isprime(int n) { int i, k;……

缓存穿透及解决方案

摘要:基本概念缓存系统的主要作用是存储经常访问的数据,以减少对后端存储系统(如数据库)的访问压力。当有一个请求查询数据时,系统首先会在缓存中查找。如果缓存中存在该数据,就直接返回缓存中的数据;如果缓存中没有……