会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
人间世
冢国
博客园
首页
新随笔
联系
订阅
管理
2021年12月4日
文章编辑程序
摘要: 1)设计目的: (1)从数据的逻辑结构、存储结构和运算三个方面识记并理解线性表、栈、队列、串、数组、树和图等常用的数据结构; (2)理解在各种常用的数据结构上实现的排序和查找运算; (3)对算法的时间和空间复杂性有一定的分析能力; (4)针对常见的应用问题,能选择合适的数据结构及设计有效的算法解决之
阅读全文
posted @ 2021-12-04 20:45 是逸仙呀
阅读(260)
评论(0)
推荐(0)
2021年8月19日
macOS:关于multipass启动实例launch failed: Remote "" is unknown or unreachable或Instance stopped while starting问题
摘要: 操作系统:MacOS运行程序:Multipass 我试图 multipass launch --name k3s --mem 4G --disk 50G 但出现 launch failed: Remote "" is unknown or unreachable 解决方案: 出现上述情况可能表明Mu
阅读全文
posted @ 2021-08-19 14:15 是逸仙呀
阅读(3482)
评论(0)
推荐(0)
2021年1月27日
异常方法测试实验
摘要: 测试异常方法: public class Main { public static void main(String[] args) { int a=2; try{ a=1/0; }catch (Exception e){ System.out.println(e.getMessage());//获
阅读全文
posted @ 2021-01-27 09:34 是逸仙呀
阅读(64)
评论(0)
推荐(0)
2021年1月25日
exception测试实验(研究finally的作用)
摘要: 1 public class Exception { 2 3 public static void main(String[] args) { 4 System.out.println(method()); 5 } 6 7 public static int method() { 8 try { 9
阅读全文
posted @ 2021-01-25 21:31 是逸仙呀
阅读(139)
评论(1)
推荐(0)
2021年1月16日
idea中文注释出现乱码,我靠自己解决了
摘要: 如果你像我一样⬇️,查遍google百度,半天下来还是找不到解决方案,说不定这篇博客能帮助你顺利解决呢 好了,那么开始说说我是怎么解决麻烦的。 首先,我想打开一份java文稿。光预览,它是没有任何问题的: 但是当idea打开时,所有中文注释都是乱码: 于是我查阅资料,直到把setting中所有有关编
阅读全文
posted @ 2021-01-16 16:19 是逸仙呀
阅读(5143)
评论(0)
推荐(1)
2021年1月8日
按装parallels tool的失败之路
摘要: 这是一篇对于其他人来说没什么意义的博客。单纯的可以被看作是日记。 首先,我想安装parallels tool。 但是照着网上很多教程(如www.cnblogs.com/artwalker/p/13235757.html等)做,都装失败了(尽管这些都是很好的教程) 总是在最后一布弹出: An erro
阅读全文
posted @ 2021-01-08 23:20 是逸仙呀
阅读(2940)
评论(3)
推荐(0)
2020年12月31日
实验七
摘要: 任务3: 运行程序,观察在屏幕上正确输出了按分数由高→低排序的信息。同时,在当前路径下,生成了文本文件file3.dat。 尝试用记事本程序打开文件file3.dat,打不开。最后创建了一个新的txt,并用google chrome打开file3.dat并将其中的内容转移到新txt中,才观察到里面的
阅读全文
posted @ 2020-12-31 13:22 是逸仙呀
阅读(101)
评论(2)
推荐(0)
2020年12月20日
实验六
摘要: test1 // P280例8.15 // 对教材上的程序作了微调整,把输出学生信息单独编写成一个函数模块 // 打印不及格学生信息和所有学生信息程分别调用 #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 //
阅读全文
posted @ 2020-12-20 08:32 是逸仙呀
阅读(197)
评论(1)
推荐(0)
2020年12月16日
实验五
摘要: 一切思考题见代码 ex1 #include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名及下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d:
阅读全文
posted @ 2020-12-16 17:01 是逸仙呀
阅读(124)
评论(1)
推荐(0)
2020年11月26日
实验四
摘要: ex1 1 // 2 // main.c 3 // ex1 4 // 5 // Created by 薛定饿了么 on 2020/11/26. 6 // 7 8 #include <stdio.h> 9 #include <math.h> 10 11 void solve(double a,doub
阅读全文
posted @ 2020-11-26 22:04 是逸仙呀
阅读(170)
评论(1)
推荐(0)
下一页
公告