• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






哥不帅丨但很坏

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

2019年9月25日

软件工程19.09.25
摘要: 1、制作个人简历: 1)制作代码链接: "Coding网站代码链接" 2)网页截图: 2、查找阅读文档说明下列问题: 1)解释一个软件生命周期的概念并提供一个例子,解释他的各个阶段,包括生产交付; + 软件生命周期(Software Life Cycle,SLC)是软件的产生直到报废或停止使用的生命 阅读全文
posted @ 2019-09-25 17:47 热爱电竞的程序员 阅读(218) 评论(0) 推荐(0)
 

2017年5月6日

四则运算
摘要: // fourArithmeticOperation.cpp : 定义控制台应用程序的入口点。 // include "stdafx.h" include using namespace std; int TureQuestion = 0; int main() { cout num; for (i 阅读全文
posted @ 2017-05-06 12:36 热爱电竞的程序员 阅读(163) 评论(0) 推荐(0)
 

2017年3月11日

最长回文子串
摘要: class Solution { public: /** * @param s input string * @return the longest palindromic substring */ string longestPalindrome(string &s) { // Write your code here ... 阅读全文
posted @ 2017-03-11 22:55 热爱电竞的程序员 阅读(139) 评论(0) 推荐(0)
 

2017年3月7日

爬楼梯
摘要: class Solution { public: int climbStairs(int n) { using namespace std; int a=1,b=1,number=0; if(n==0||n==1) { return 1; } while(n>1) ... 阅读全文
posted @ 2017-03-07 23:08 热爱电竞的程序员 阅读(119) 评论(0) 推荐(1)
 
买卖股票的最佳时机
摘要: class Solution { public: int maxProfit(vector &prices) { using namespace std; int profit=0; if(prices.size()<2) { return profit; } e... 阅读全文
posted @ 2017-03-07 23:07 热爱电竞的程序员 阅读(128) 评论(0) 推荐(0)
 
删除排序数组中的重复数字
摘要: public class Solution { public int removeDuplicates(int[] nums) { int size=nums.length; for(int i=0;i<size-1;i++) { if(nums[i]==nums[i+1]) { for(in... 阅读全文
posted @ 2017-03-07 23:06 热爱电竞的程序员 阅读(104) 评论(0) 推荐(0)