博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
674. Longest Continuous Increasing Subsequence
阅读量:5079 次
发布时间:2019-06-12

本文共 669 字,大约阅读时间需要 2 分钟。

1 static int wing=[]() 2 { 3     std::ios::sync_with_stdio(false); 4     cin.tie(NULL); 5     return 0; 6 }(); 7  8 class Solution  9 {10 public:11     int findLengthOfLCIS(vector
& nums) 12 { 13 int sz=nums.size();14 if(sz<2)15 return sz;16 int count=1;17 int res=INT_MIN;18 for(int i=1;i
nums[i-1])21 count++;22 else23 {24 res=max(res,count);25 count=1;26 }27 }28 return max(res,count);29 }30 };

扫描一遍,问题不大

转载于:https://www.cnblogs.com/zhuangbijingdeboke/p/9159392.html

你可能感兴趣的文章
clone方法详解
查看>>
C#深入.NET平台的软件系统分层开发
查看>>
Kibana功能一览
查看>>
设计模式之结构型模式
查看>>
如何写出高效的SQL语句
查看>>
Centos7 更换为网易YUM源
查看>>
以表名为参数的存储过程
查看>>
《高性能网站建设指南》笔记
查看>>
Thrift Expected protocol id ffffff82 but got 0
查看>>
Eclipse打包Android项目时用到proguard.cfg后,出现的Warning:can't find referenced class问题的解决方案...
查看>>
补番完了 来自深渊
查看>>
mysql 绿色版 安装失败 注意事项
查看>>
vuex mapState、mapGetters、mapActions、mapMutations的使用
查看>>
PHP递归菜单/权限目录(无限极数组)
查看>>
Centos7虚拟机下修改IP,进行Nat联网
查看>>
2、JSP脚本
查看>>
ExtJS4 给同一个formpanel不同的url
查看>>
Entity Framework 学习中级篇3—存储过程(中)(转)
查看>>
asp.net ImageButton鼠标事件更换图片
查看>>
windows DPAPI加密解密学习
查看>>