belfastqiu

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
  5 随笔 :: 0 文章 :: 0 评论 :: 23 阅读

2025年2月22日

摘要: 1.八次翻转 图1:八次翻转 #include <iostream> #include <string> #include <algorithm> using namespace std; int main() { char s[1001]; scanf("%s",s); for (int i = 阅读全文
posted @ 2025-02-22 10:32 Belfast_Qiu 阅读(1) 评论(0) 推荐(0) 编辑

2025年2月19日

摘要: 1.首字母大写题 图1:首字母大写 #include <stdio.h> int main(){ char s[1000][11]; int num=0; while(scanf("%s",s[num]) != EOF){ num++; } for(int i=0;i<num;i++){ s[i][ 阅读全文
posted @ 2025-02-19 17:34 Belfast_Qiu 阅读(0) 评论(0) 推荐(0) 编辑

2025年2月15日

摘要: 这是入门篇的第一题 图1:题目图像 #include <stdio.h> int Mod(int n){ int a,b=2; // a是用来递归的 if(n==0) return 1; a = Mod(n-1); return ((a%1007)*(2%1007)) % 1007; } int m 阅读全文
posted @ 2025-02-15 16:13 Belfast_Qiu 阅读(0) 评论(0) 推荐(0) 编辑

2025年2月14日

摘要: 这个项目是我大三做的,和我的very very nice的好哥们Pz做的。其中他负责了idea、Sample Montior的C++底层的部分和最后测试,我负责了流式传输部分 现在我们来看一看这份代码 import threading import ffmpeg from screeninfo im 阅读全文
posted @ 2025-02-14 17:50 Belfast_Qiu 阅读(10) 评论(0) 推荐(0) 编辑

2025年2月13日

摘要: 这次项目是大二老师给我的,具体什么时候做的,我已经忘记了,现在重温一下; 首先我们都知道Informer的图像如图1,但是我觉得太复杂了,我便将中间的两层做了删掉,并对他们自带的测试集做了些测试,发现他们在时间方面的差距并不大(甚至可以说微乎其微),至于效率方面,这个与测试集有关,笔者在自己的项目和 阅读全文
posted @ 2025-02-13 18:44 Belfast_Qiu 阅读(12) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示