mysql忘记密码后重置密码(适用于5.7与8.0) 摘要:1、停止mysql方法一:可使用win+R打开运行窗口,输入cmd打开黑窗口输入命令:net stop mysql 即可停止mysql(注意,命令中的mysql为你自己的数据库名称)方法二:在桌面找…… 文章列表 2024年09月19日 0 点赞 0 评论 180 浏览 评分:0.0
git推送冲突问题解决 摘要:在最近项目中遇到了git推送冲突的问题,产生这个问题一般有以下几种情况:1、其他人在我准备推送更改的同时,已经向远程仓库推送了与我本地修改相关的内容。2、我在本地修改的文件,与远程仓库中的文件在同一位…… 文章列表 2024年10月04日 0 点赞 0 评论 177 浏览 评分:0.0
蓝桥杯2024年第十五届省赛真题-好数 摘要:#include <bits/stdc++.h> using namespace std; int judge1(int num) { int n[9]; int f = 1…… 文章列表 2024年10月04日 0 点赞 0 评论 200 浏览 评分:0.0
蓝桥杯2023年第十四届省赛真题-更小的数 摘要:#include <bits/stdc++.h> using namespace std; string str; int main() { ios::sync_with_std…… 文章列表 2024年10月05日 0 点赞 0 评论 245 浏览 评分:0.0
i++与++i,do-while循环与while循环 摘要:(1)do-while i++:#include<stdio.h>int main(){ int i=0; do { printf("count %d\n",i); …… 文章列表 2024年10月06日 0 点赞 0 评论 196 浏览 评分:0.0
Road(暂存代码) 摘要:```cpp #include using namespace std; typedef long long ll ; const int N = 1e5+10 ; ll a[N],v[N…… 文章列表 2024年10月17日 0 点赞 0 评论 202 浏览 评分:0.0
AcWing 1073. 树的中心 树形dp 摘要: #include using namespace std; const int N=10010,M=2*N,INF = 0x3f3f3f3f; int h[N],…… 文章列表 2024年11月04日 0 点赞 0 评论 265 浏览 评分:0.0
2872字符环(注意思路,注意嵌套的动态模拟) 摘要:````python a,b = map(str,input().strip().split()) aa = a+a bb = b+b ma = max(len(aa),len(bb)) m…… 文章列表 2024年11月08日 0 点赞 0 评论 234 浏览 评分:0.0
蓝桥杯2024年第十五届省赛真题-传送阵 摘要:#include <bits/stdc++.h> using namespace std; int n, a[1000010], vis[1000010] = { 0 }, cnt[100…… 文章列表 2024年11月08日 0 点赞 0 评论 277 浏览 评分:0.0
阿里云OSS使用 摘要:阿里云对象存储服务(OSS)提供了丰富的功能,包括文件上传、下载、管理和访问控制等。对于新用户来说,推送文件到OSS主要涉及以下几个步骤:1、注册阿里云(实名认证)首先,需要访问阿里云官方网站(htt…… 文章列表 2024年11月19日 0 点赞 0 评论 271 浏览 评分:0.0