moumoumouwang
码龄6年
关注
提问 私信
  • 博客:29,856
    29,856
    总访问量
  • 130
    原创
  • 1,987,281
    排名
  • 9
    粉丝
  • 0
    铁粉
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:河北省
  • 加入CSDN时间: 2019-03-30
博客简介:

XXX

博客描述:
一步三停 不停向前走着
查看详细资料
个人成就
  • 获得23次点赞
  • 内容获得18次评论
  • 获得73次收藏
  • 代码片获得702次分享
创作历程
  • 1篇
    2023年
  • 6篇
    2022年
  • 49篇
    2021年
  • 74篇
    2020年
成就勋章
TA的专栏
  • 知识图谱
    1篇
  • 深度学习
    1篇
  • 问题解决
    1篇
  • 目标检测
    1篇
  • L2
    12篇
  • L3
  • L1
    1篇
创作活动更多

如何做好一份技术文档?

无论你是技术大神还是初涉此领域的新手,都欢迎分享你的宝贵经验、独到见解与创新方法,为技术传播之路点亮明灯!

342人参与 去创作
  • 最近
  • 文章
  • 代码仓
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

MAC下Neo4j、jdk11的安装

neo4j\jdk安装
原创
发布博客 2023.01.05 ·
286 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Macos下 成功解决ValueError: not enough values to unpack (expected 7, got 1)问题

解决macos处理数据时遇到的问题
原创
发布博客 2022.09.02 ·
632 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

操作系统课程设计实验报告

操作系统课程设计一、需求分析二、整体设计1.中央处理器额模拟2.主要寄存器的模拟3.中断的模拟进程管理内存管理4.界面设计一、需求分析本系统采用Eclipse Java开发工具在Windows环境下设计一个模拟操作系统。无论是在批处理系统还是分时系统中,用户进程数一般都多于处理机数、这将导致它们互相争夺处理机。另外,系统进程也同样需要使用处理机。这就要求进程调度程序按一定的策略,动态地把处理机分配给处于就绪队列中的某一个进程,以使之执行。实验主要实现内存演示,进程管理的功能。进程调入包含两种方式:一是
原创
发布博客 2022.05.16 ·
1803 阅读 ·
2 点赞 ·
0 评论 ·
20 收藏

操作系统课程设计大作业

发布资源 2022.05.16 ·
zip

CommandNotFoundError: Your shell has not been properly configured to use ‘conda activate‘.

完整报错:CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.If your shell is Bash or a Bourne variant, enable conda for the current user with $ echo ". /Users/wangminghan/anaconda3/etc/profile.d/conda.sh" >>
原创
发布博客 2022.05.15 ·
440 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Mac下python3.7配置

我的电脑里python版本挺多的 我主要是想下载3.7并且优先使用3.7进行编译1、使用homebrew安装python官网打开巨慢直接brewbrew install python@3.7安装过程中出现了curl: (22) The requested URL returned error: 404这个报错 更新一下brewbrew update就ok2、优先使用python3.7安装完以后运行一下下面这个命令echo 'export PATH="/usr/local/opt/python
原创
发布博客 2022.05.15 ·
977 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

记录yolov5训练报错问题

AttributeError: ‘Upsample‘ object has no attribute ‘recompute_scale_factor‘解决办法:解决方法Pytorch中报错RuntimeError: The size of tensor a (60) must match the size of tensor b (56)解决办法:解决警告UserWarning: torch.meshgrid: in an upcoming release, it will be require.
原创
发布博客 2022.04.21 ·
1918 阅读 ·
6 点赞 ·
3 评论 ·
12 收藏

Macos conda激活问题

报错如下:CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.If your shell is Bash or a Bourne variant, enable conda for the current user with $ echo ". /Users/wangminghan/anaconda3/etc/profile.d/conda.sh" >>
原创
发布博客 2022.04.18 ·
392 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

csp 俄罗斯方块

/把数组g copy给smemcpy(s,g, sizeof(s));#include <iostream>#include <cstdio>using namespace std;const int maxn = 100010;int a[20][20], b[10][10];void print(){ for(int i = 1; i <= 15; i++) { for(int j = 1; j <= 10; j++) { co
原创
发布博客 2021.04.04 ·
109 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

1019 数字黑洞 (20 分)

测试点5 注意输入为6174的情况 测试点测试点2 注意输入是1/2/3位数字#include <iostream>#include <cstdio>#include <string>#include <set>#include <algorithm>using namespace std;const int maxn = 100010;int main() { set<int> s; int a,min =
原创
发布博客 2021.03.22 ·
97 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

数的范围 二分

二分 数的范围 #include<iostream>#include <algorithm>#include <vector>using namespace std;const int maxn=100010;const int INF=2*int(1e9)+10;#define LL long longint n, m;int q[maxn];int main(){ cin >> n >> m; for(int i = 0
原创
发布博客 2021.03.15 ·
99 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

游戏

#include <iostream>#include <cstdio>#include <vector>using namespace std;const int maxn = 100010;int visit[1100];int main() { int n, k, num = 0; cin >> n >> k; int ans, cont; while(1) { cont = 0; for(int i = 1
原创
发布博客 2021.03.14 ·
120 阅读 ·
1 点赞 ·
0 评论 ·
0 收藏

公共钥匙盒

为操作建立结构体#include <iostream>#include <cstdio>#include <algorithm>using namespace std;const int maxn = 1010;struct node{ int id, flag, t; bool operator < (const node &k) const { if(t != k.t) return t < k.t; if(flag
原创
发布博客 2021.03.14 ·
66 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

2020-12-2 期末预测之最佳阈值

#include <iostream>#include <cstdio>#include <algorithm>#include <vector>#include <map>using namespace std;const int maxn = 100010;struct node{ int x, y;}Node[100010];int cont_0[100010], cont_1[100010];struct nnod
原创
发布博客 2021.03.10 ·
172 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

201912-2 回收站选址

#include <iostream>#include <cstdio>#include <map>using namespace std;const int maxn = 100010;struct node{ int x,y;}Node[3010];map<pair<int,int>, int> m;bool select(int x, int y){ if(m[make_pair(x,y+1)] &&
原创
发布博客 2021.03.08 ·
73 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

201604-2 俄罗斯方块

枚举 确定新板块的起点位置再根据新板块内的相对位置确定新板块在整个画布中的绝对位置在新画布中记录方块位置被访问的次数 如果是2说明发生了碰撞 输出上一时刻的画布#include <iostream>#include <cstdio>#include <cstring>#include <memory>using namespace std;int a[20][20], a1[20][20];int b[5][5];bool draw.
原创
发布博客 2021.03.07 ·
107 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

L2-012 关于堆的判断 (25 分)

#include <iostream>#include <cstdio>#include <vector>#include <algorithm>using namespace std;const int maxn = 1010;vector<int> v;int n, m;void upAdjust(int i){ if(i == 1) return; while(i != 1) { if(v[i] < v[i
原创
发布博客 2021.03.06 ·
78 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

201512-2 消除类游戏

#include <iostream>#include <cstdio>#include <algorithm>using namespace std;int a[31][31], b[31][31];int main(){ int n, m; cin >> n >> m; for(int i = 0; i < n; i++) { for(int j = 0; j < m; j++) { cin &g
原创
发布博客 2021.03.06 ·
157 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

201809-2 买菜

注意:if(b < h[i].l || a > h[i].r) continue; b与a关系并不确定#include <iostream>#include <cstdio>#include <algorithm>using namespace std;const int maxn = 2000;struct node{ int l; int r;}h[maxn];int n;int get(int a, int b){ int
原创
发布博客 2021.03.06 ·
86 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

L2-025 分而治之 (25 分)

我看这道题的时候想到的是天梯红色警报这道题,都考察了连通性问题,但这么写了一个超内存了hhh 改了半天也没改成功 应该是复原方法有问题就不该用二维数组存 后来查了优秀代码用的是度、邻接表 开个一维数组来存储每个节点的度 这样空间就是一维 不会超内存了AC代码:#include <iostream>#include <cstring>#include <vector>#include <stack>#include <algorithm>
原创
发布博客 2021.03.05 ·
150 阅读 ·
0 点赞 ·
1 评论 ·
0 收藏
加载更多