摘要:
A题 Average F题 Score H题 Legal Identifier c++ //1.判断是不是那32个 2.首字母是不是数字 3.有没有出现不是数字下划线字符的解 include using namespace std; char str[35][10]={"auto","break", 阅读全文
摘要:
A题 F题 K题 c++ //这题可以看出是道DFS的模板题,但是记录路径是个难点。可以在更新时如果大于就从数组下标为0开始更新,否则就从下标i n开始更新。 include using namespace std; int g[10][10], ans, T, path[111], p[10], 阅读全文
摘要:
数据库第一次作业 3.1 使用大学模式,用SQL写出如下查询。 a.找出Comp.Sci系开设的具有三个学分的课程名称。 b. 找出名叫Einstein的教师所教的所有学生的标识,保证结果中没有重复。 c. 找出教师的最高工资 d. 找出工资最高的所有教师 e.找出2009年秋季开设的每个课程段的选 阅读全文
摘要:
首先来发模板 poj 1287 C++ include include include include using namespace std; const int maxn=1010; const int INF=0x3f3f3f3f; struct Node{ double x,y,h; }po 阅读全文