摘要:
周五上午课堂测验(2022) 题量: 19 满分: 4 作答时间:09-02 09:30至09-02 11:30 智能分析 4分 一. 单选题(共19题,4分) (单选题, 0.2分)Which of the following scenarios is not suitable for Cloud 阅读全文
摘要:
周四上午课堂测验(2022) 题量: 20 满分: 4 作答时间:09-01 09:30至09-01 11:30 智能分析 4分 一. 单选题(共20题,4分) (单选题, 0.2分)Classes and objects can be completely decoupled from each 阅读全文
摘要:
周三上午课堂测验(2022) 题量: 20 满分: 4 作答时间:08-31 09:30至08-31 11:30 智能分析 4分 一. 单选题(共20题,4分) (单选题, 0.2分)According to Prof. Bruce Blum, which of the following is n 阅读全文
摘要:
chaos 结构化查询语言 中级SQL 实体关系模型 关系数据库设计 应用程序设计和开发 事务 并发控制 恢复系统 复习知识点 阅读全文
摘要:
chaos 名词解释 计算题 引论 进程与线程 内存管理 文件系统 阅读全文
摘要:
周二上午课堂测验(2022) 题量: 20 满分: 4 作答时间:08-30 09:30至08-30 11:30 智能分析 4分 一. 单选题(共20题,4分) (单选题, 0.2分)According to Len Bass et al., which of the following is co 阅读全文
摘要:
费劲整理的,所以不想就这样只用一次,但又懒得再排版,所以直接把图粘过来了,希望能帮上忙 阅读全文
摘要:
这个题只要正反各求一遍最长上升子序列(f[i][j]表示以i结尾的最长上升子序列长,d[i]记录最后一次出现f[j]等于i的位置,算个小小的优化吧),最后只要看以i为结尾的正反2个最长上升子序列长度和最大再用n减一下,再加一(因为自己重复算了2遍)就可以了 #include<iostream> #i 阅读全文
摘要:
我们知道如果x能被前i个数组成,且组成x 的数当中包含a[i]那么(x-a[i])也必然能被前i个数来组成,那么我们很容易想到定义f(x)表示x能否被组成,那么根据上面的想法显然有f(x)=f(x)|f(x−a[i]) #include<stdio.h> #include<algorithm> # 阅读全文