上一页 1 ··· 10 11 12 13 14
摘要: package cn.ALAN_CF.studyf009; /** * @author 15328 */ public enum Color { /**S*/ RED,GREEN, BLUE, } package cn.ALAN_CF.studyf009; /** * @author 15328 * 阅读全文
posted @ 2021-09-05 15:01 在天边偷看小天使 阅读(4) 评论(0) 推荐(0)
摘要: package cn.ALAN_CF.studyf008; /** * @author 15328 */ public class Main { public static void main(String[] args) { HeaderMaster hm1 = HeaderMaster.getH 阅读全文
posted @ 2021-09-03 14:02 在天边偷看小天使 阅读(5) 评论(0) 推荐(0)
摘要: package cn.ALAN_CF.studyf007; /** * @author 15328 */ public class Main { public static void main(String[] args) { extendsFoo stu0 = new extendsFoo("Al 阅读全文
posted @ 2021-09-03 13:42 在天边偷看小天使 阅读(7) 评论(0) 推荐(0)
摘要: package cn.ALAN_CF.studyf002; /** * @author 15328 * protected修饰字段,保证这些字段能够被继承的子类访问 */ public class Person { protected String name; protected int age; 阅读全文
posted @ 2021-09-03 10:37 在天边偷看小天使 阅读(6) 评论(0) 推荐(0)
摘要: 输入两个链表,找出它们的第一个公共节点。 如下面的两个链表: 在节点 c1 开始相交。 示例 1: 输入:intersectVal = 8, listA = [4,1,8,4,5], listB = [5,0,1,8,4,5], skipA = 2, skipB = 3 输出:Reference o 阅读全文
posted @ 2021-09-01 17:47 在天边偷看小天使 阅读(10) 评论(0) 推荐(0)
摘要: PAT(Advanced Level) Practice__1001 1001 A+B Format (20分) //计算a+b //输出结果要求逗号分隔 //xxx,xxx,xxx #include<iostream> #include<cstdio> #include<cmath> #inclu 阅读全文
posted @ 2021-08-19 10:23 在天边偷看小天使 阅读(7) 评论(0) 推荐(0)
摘要: 贪心策略,多机调度 #include<bits/stdc++.h> using namespace std; int project[100]; int M[100]; vector<int> project_x; struct x{ vector<int> s; }S[100]; int part 阅读全文
posted @ 2021-05-23 11:56 在天边偷看小天使 阅读(5) 评论(0) 推荐(0)
摘要: TSP问题 算法实验二第一题,动态规划处理tsp问题,要求:从任意城市出发,走过所有城市再回到出发点,求最短路径, 2021.5.12. 0:31分 正在学习实现问题要求ing 代码已经解决从0点出发,回到0点的最短路径,明天接着写,困了睡觉嘻嘻 (这个还要交实验报告,老师应该不查重吧,版权还是自个 阅读全文
posted @ 2021-05-12 00:31 在天边偷看小天使 阅读(8) 评论(0) 推荐(0)
上一页 1 ··· 10 11 12 13 14