http://www.cs.trinity.edu/About/The_Courses/cs357/gl.htmlhttp://www.opengl.org/wiki/FragmentOpenGL TutorialsNate Robin's OpenGL Tutor programs (intera...
分类:
其他好文 时间:
2014-07-07 22:46:51
阅读次数:
217
匈牙利算法模板题
有n门课程,每门课程可能有不同时间,不同时间的课程等价。
问不冲突的情况下最多能选多少门课。
建立二分图,一边顶点表示不同课程,另一边表示课程的时间(hash一下)。
#include
#include
#include
#include
#include
#include
#include
#include
#include
#defi...
分类:
其他好文 时间:
2014-07-02 08:05:03
阅读次数:
257
多对多关系(学生Student,课程Course)学生类的定义以及hbm文件的配置如下1 public class Student {2 private int id;3 private String name;4 private Set courses = new Hash...
分类:
系统相关 时间:
2014-07-01 00:41:37
阅读次数:
396
建议参考NG的手稿,不要看中文翻译的http://cs229.stanford.edu/notes/cs229-notes8.pdfhttp://cs229.stanford.edu/materials.htmlhttp://cs.stanford.edu/courses/schedules/201...
分类:
其他好文 时间:
2014-06-30 20:58:49
阅读次数:
439
DescriptionConsider a group of N students and P
courses. Each student visits zero, one or more than one courses. Your task is to
determine whether it ...
分类:
其他好文 时间:
2014-06-09 15:36:50
阅读次数:
239
Selecting CoursesTime Limit:1000MSMemory
Limit:65536KTotal Submissions:8316Accepted:3687DescriptionIt is well known that
it is not easy to select cour...
分类:
其他好文 时间:
2014-06-08 21:24:48
阅读次数:
260
COURSESTime Limit:1000MSMemory Limit:10000KTotal
Submissions:16877Accepted:6627DescriptionConsider a group of N students and P
courses. Each student v...
分类:
其他好文 时间:
2014-06-06 23:22:36
阅读次数:
191
在安卓环境下连接数据库下面是主要代码极其作用:1.编写 The
Class类把课程表courses.db当做一个实体类,hashcode和equals这两个类是为了判断输入的查询内容和Excel表中的内容是否一致。并在java里面区别两个对象是否一致
1 public class TheClas.....
分类:
移动开发 时间:
2014-06-03 11:31:15
阅读次数:
445
Student类有集合属性Courses,如何把Student连同集合属性Courses传递给控制器方法?
public class Student { public string StudentName { get; set; } public IList
Courses { get; set; ...
分类:
Web程序 时间:
2014-05-14 12:49:24
阅读次数:
351