2017年7月25日

数字三角形

摘要: 代码: class Solution { public: /** * @param triangle: a list of lists of integers. * @return: An integer, minimum path sum. */ int minimumTotal(vector<v 阅读全文

posted @ 2017-07-25 18:05 这位黑洞同学 阅读(104) 评论(0) 推荐(0) 编辑

2017年6月25日

软件工程--个人总结

摘要: 回想开学初对于软件工程这门课的期望,总结本课程对你带来的提升: 1.学习和使用的新软件 (1) Microsoft Visual Studio 2010 (2)Microsoft SQL Server 2005 (3)Dreamweaver CS5 2.学习和使用的新工具 (1)HTML (2)Co 阅读全文

posted @ 2017-06-25 19:43 这位黑洞同学 阅读(184) 评论(2) 推荐(0) 编辑

2017年5月10日

软件工程第二次作业—结对编程

摘要: 1.两人组成一队,进行结对编程 组员:安梨雅 1500802039 http://www.cnblogs.com/aly15109725486/ 王莉娟 1500802028 http://www.cnblogs.com/w1500802028/ 2.代码地址: https://coding.net 阅读全文

posted @ 2017-05-10 20:45 这位黑洞同学 阅读(142) 评论(1) 推荐(0) 编辑

2017年4月23日

软件工程第一次作业补充

摘要: 在一周之内快速看完《构建之法》,列出你不懂的5-10个问题,发布在自己的博客。 (1)在书上的第一页就能看到说软件=程序+软件工程,这样来描述软件,那么软件工程是怎样在软件中扮演这个重要角色的,这里的程序具体指的是什么。 (2)书中第三章提到软件工程师的成长,我觉得非常亲切,提到发展和职业规划。那么 阅读全文

posted @ 2017-04-23 19:41 这位黑洞同学 阅读(110) 评论(0) 推荐(0) 编辑

2017年4月17日

软件工程第一次作业

摘要: 1.关注邹欣老师的博客。 2.花20分钟写一个能自动生成小学四则运算题目的“软件”,要求:除了整数以外,还要支持真分数的四则运算。将代码上传至coding.net,并将地址发布至自己的博客。 博客地址:https://coding.net/u/A1500802039/p/Demo/git/commi 阅读全文

posted @ 2017-04-17 09:19 这位黑洞同学 阅读(214) 评论(1) 推荐(0) 编辑

2017年3月8日

买卖股票的最佳时机

摘要: class Solution { public: /** * @param prices: Given an integer array * @return: Maximum profit */ int maxProfit(vector<int> &price) { int re = 0; if(p 阅读全文

posted @ 2017-03-08 22:00 这位黑洞同学 阅读(102) 评论(0) 推荐(0) 编辑

爬楼梯

摘要: class Solution {public:/*** @param n: An integer* @return: An integer*/ int climbStairs(int n) {// write your code hereint a = 1, b = 1, k = 0;if(n == 阅读全文

posted @ 2017-03-08 21:38 这位黑洞同学 阅读(120) 评论(0) 推荐(0) 编辑

删除数组中的重复元素

摘要: class Solution {public: /** * @param A: a list of integers * @return : return an integer */ int removeDuplicates(vector<int> &nums) { // write your co 阅读全文

posted @ 2017-03-08 21:37 这位黑洞同学 阅读(122) 评论(0) 推荐(0) 编辑

导航