会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
TechNeko Workshop
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
48
49
50
51
52
53
54
55
56
···
61
下一页
2023年9月18日
如何使用谷歌搜索的时候,不是从当前页面而是从新页面打开链接?
摘要: 参考链接:https://support.google.com/chrome/thread/3520860/how-do-i-set-chrome-to-open-links-in-a-new-tab-on-the-same-browser-window?hl=en 1.使用ctrl+左键点击链接
阅读全文
posted @ 2023-09-18 12:44 DawnTraveler
阅读(1240)
评论(0)
推荐(0)
2023年9月17日
结构体中ElementType的使用
摘要: 1.问题 在定义结构体时,对于元素值,为什么喜欢使用ElementType而不是直接使用int或者char等等? 2.结论 对于int get_result(int x); 和 int get_result(ElementType x);这一类函数具有相关参数时 我们可能在某个时刻需要使用的int类
阅读全文
posted @ 2023-09-17 20:35 DawnTraveler
阅读(530)
评论(0)
推荐(0)
关于梯形面积和等差数列
摘要: 1.问题 今天在学习压缩存储三角矩阵的时候,由于要计算上三角前(i-1)的个数,上方呈一梯形形状,就有想法梯形面积公式和等差数列求和公式及其相似,之间有什么联系呢? 2.解决 引用一篇文章 有关链接:https://zhuanlan.zhihu.com/p/555204644?utm_id=0
阅读全文
posted @ 2023-09-17 18:34 DawnTraveler
阅读(80)
评论(0)
推荐(0)
2023年9月16日
idea侧边栏commit消失
摘要: 1.问题 在使用Clion中想要查看提交的相关信息,发现侧边栏commit消失 2.解决方法 打开设置,选择会用非模式提交界面即可
阅读全文
posted @ 2023-09-16 11:11 DawnTraveler
阅读(865)
评论(0)
推荐(0)
2023年9月13日
队列应用一模拟患者医院看病过程
摘要: 1.题目 2.算法思路 3.代码 // // Created by trmbh on 2023-09-13. // // #include <stdio.h> #include <stdlib.h> #include <conio.h> #define TRUE 1 #define FALSE 0
阅读全文
posted @ 2023-09-13 15:07 DawnTraveler
阅读(118)
评论(0)
推荐(0)
如何设置输出控制台中的终端为外部终端?
摘要: 1.问题 在编写C程序时,使用到了_getch()这个函数,但是内嵌输出终端出现了一些问题,不能正常显示 2.解决方法 1.点击菜单栏中的运行 2.选择编辑配置,并在其中勾选在外部控制台中运行 3.完成
阅读全文
posted @ 2023-09-13 14:59 DawnTraveler
阅读(81)
评论(0)
推荐(0)
非标准库--conio.h库
摘要: 1.getch函数 主要内容 int getch(void): 所在头文件:conio.h 函数用途:从控制台读取一个字符,但不显示在屏幕上,即一个不需要通过ENTER确定的getchar. 函数原型:int getch(void) 返回值:读取的字符 例如: char ch;或int ch; ge
阅读全文
posted @ 2023-09-13 11:32 DawnTraveler
阅读(147)
评论(0)
推荐(0)
辗转相除法--求最大公约数
摘要: 1.题目 使用迭代,并通过辗转相除法求最大公约数 2.代码 // // Created by trmbh on 2023-09-13. /* 辗转相除法 */ // #include "stdio.h" int fun(int m, int n) { int r; if (n > m) return
阅读全文
posted @ 2023-09-13 11:17 DawnTraveler
阅读(59)
评论(0)
推荐(0)
杨辉三角形
摘要: 1.题目 例3.6打印杨辉三角形。 利用队列打印杨辉三角形。杨辉三角形的图案如图3.18所示。 2.算法思路 3.代码 // // Created by trmbh on 2023-09-12. // #include <stdio.h> #include <stdlib.h> #define TR
阅读全文
posted @ 2023-09-13 10:24 DawnTraveler
阅读(42)
评论(0)
推荐(0)
2023年9月12日
表达式求值
摘要: 1.题目简述 2.算法思路 3.代码 // // Created by trmbh on 2023-09-11. // #include<stdio.h> #include<stdlib.h> #include<string.h> #include<math.h> #define FALSE 0 #
阅读全文
posted @ 2023-09-12 20:16 DawnTraveler
阅读(28)
评论(0)
推荐(0)
上一页
1
···
48
49
50
51
52
53
54
55
56
···
61
下一页
公告