1500802034吕占英

导航

2017年3月8日 #

爬楼梯

摘要: #include "stdafx.h"#include "iostream"using namespace std; int fibonacci(int n){ if (n > 2) return fibonacci(n - 1) + fibonacci(n - 2); else return 1; 阅读全文

posted @ 2017-03-08 11:08 心....依旧 阅读(78) 评论(0) 推荐(0) 编辑

买卖股票的最佳时机

摘要: #include "stdafx.h"#include "iostream"using namespace std;class Solution { /** * @param prices: Given an integer array * @return: Maximum profit */pub 阅读全文

posted @ 2017-03-08 11:07 心....依旧 阅读(79) 评论(0) 推荐(0) 编辑

删除排序数组中的重复数字

摘要: #include "stdafx.h"#include <string.h>#include<iostream>using namespace std; const int max = 1024;int main(){ int a[] = { 1,1,2}; int tmp[max]; //定义模板 阅读全文

posted @ 2017-03-08 11:06 心....依旧 阅读(130) 评论(0) 推荐(0) 编辑