码迷,mamicode.com
首页 >  
搜索关键字:maximum    ( 4142个结果
sendsms短信验证功能实现代码
<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="maximum-scale=1.0,minimum-scale=0,width=device-width,initial-scale ...
分类:其他好文   时间:2017-03-10 18:12:31    阅读次数:295
dataguard类型转换与模式转化
修改数据保护模式步骤前提:是否满足转换模式的配置要求最大保护(Maximum Protection):Standby Database 必须配置Standby Redo Log,Primary Database必须使用LGWR,SYNC,AFFIRM 方式归档到Standby Database.最高 ...
分类:其他好文   时间:2017-03-10 16:29:39    阅读次数:188
由<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>引发的一系列问题
最近在写一个移动端的页面,起初只知道使用百分比布局就可以适应多个终端,果然,是我太年轻。当设计师甩给我一张以iphone6像素为基准的750px设计图的时候,因为这段代码<meta name="viewport" content="width=device-width, initial-scale= ...
分类:Web程序   时间:2017-03-10 16:28:19    阅读次数:228
[LeetCode] Contiguous Array 邻近数组
Given a binary array, find the maximum length of a contiguous subarray with equal number of 0 and 1. Example 1: Example 2: Note: The length of the giv ...
分类:编程语言   时间:2017-03-10 12:57:49    阅读次数:179
软件工程代码1
爬楼梯 class Solution {public: /** * @param n: An integer * @return: An integer */ int climbStairs(int n) { // { if(n<=0) { return 0; } else if(n==1) { r ...
分类:其他好文   时间:2017-03-09 20:31:33    阅读次数:120
买卖股票的最佳时机
class Solution {public: /** * @param prices: Given an integer array * @return: Maximum profit */ int maxProfit(vector<int> &prices) { // write your co ...
分类:其他好文   时间:2017-03-09 15:30:06    阅读次数:122
买卖股票的最佳时机
class Solution {public: /** * @param prices: Given an integer array * @return: Maximum profit */ int maxProfit(vector<int> &prices) { // write your co ...
分类:其他好文   时间:2017-03-09 00:44:13    阅读次数:89
买卖股票的最佳时机
public class Solution { /** * @param prices: Given an integer array * @return: Maximum profit */ public int maxProfit(int[] prices) { // write your co ...
分类:其他好文   时间:2017-03-09 00:28:53    阅读次数:116
买卖股票的最佳时机 - C++
class Solution {public: /** * @param prices: Given an integer array * @return: Maximum profit */ int maxProfit(vector<int> &prices) { // write your co ...
分类:编程语言   时间:2017-03-08 23:10:34    阅读次数:183
买卖股票的最佳时机
class Solution { public: /** * @param prices: Given an integer array * @return: Maximum profit */ int maxProfit(vector &prices) { // write your code h... ...
分类:其他好文   时间:2017-03-08 23:02:18    阅读次数:142
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!