摘要: #include #include #include typedef struct student { long num; float score; struct student *next; }student; student *creatlink(void) { student *head = NULL; student *last , *... 阅读全文
posted @ 2018-05-07 20:39 青衫客36 阅读(422) 评论(0) 推荐(0) 编辑
摘要: Problem C: 动态规划基础题目之数字三角形 Description 7 3 8 8 1 0 2 7 4 4 4 5 2 6 5 (Figure 1) Figure 1 shows a number triangle. Write a program that calculates the h 阅读全文
posted @ 2018-05-07 13:36 青衫客36 阅读(224) 评论(0) 推荐(0) 编辑