摘要:
回想开学初对于软件工程这门课的期望,总结本课程对你带来的提升: 1、学习和使用的新软件、学习和使用的新工具: (1)学会了git建立仓库,以及利用git仓库进行代码上传。 (2)运用mockplus工具进行原型界面设计,以及后续的对界面用代码进行实现。 (3)学会xamapp进行后台虚拟网站的运行, 阅读全文
摘要:
1500802082 胡贤刚 博客链接:http://www.cnblogs.com/huxiangang/p/6836989.html 1500802073 王佳铭 博客链接:http://www.cnblogs.com/qhu jsj 152 wjm/p/6836699.html 代码地址htt 阅读全文
摘要:
四则运算coding地址:href="https://coding.net/u/hu199758/p/hu/git/blob/master/%E8%BD%AF%E4%BB%B6%E5%B7%A5%E7%A8%8B%E7%AC%AC%E4%B8%80%E6%AC%A1%E4%BD%9C%E4%B8%9 阅读全文
摘要:
四则运算coding地址:https://coding.net/u/hu199758/p/hu/git/blob/master/%E8%BD%AF%E4%BB%B6%E5%B7%A5%E7%A8%8B%E7%AC%AC%E4%B8%80%E6%AC%A1%E4%BD%9C%E4%B8%9A 关于构建 阅读全文
摘要:
int ret = 0; if(prices.size()<2) return ret; int lowest = prices[0]; for(int i=1;i<prices.size();i++) { int cur = prices[i]; ret = max(ret,cur-lowest) 阅读全文
摘要:
int a,b;a=b=1;int c;if(n==1||n==0)return 1;elsewhile(--n>0){ c=a+b; a=b; b=c;}return c;}}; 阅读全文
摘要:
if(nums.empty()) { return 0; }//if int n = nums.size(),k=0; for(int i=1;i<n;++i) { if(nums[i] != nums[k]) { nums[++k] = nums[i]; }//if }//for nums.res 阅读全文