由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - where is the error?
相关主题
请教一道题一个算法和设计的题目
这道题DP怎么做阿fb + google 电面面经
问一道算法题largest subsequence sum <= max问个算法题,修改版
再问个算法题……Maximum Sum of Increasing Sequence
[问一道题] maximum contiguous subarray with sum >= target numberdp problem on mit
C++ 程序求助那个leetcode上头得distinct subsequence什么意思
神秘的礼物 (更新)leetcode一题没看明白
一道 facebook 电面题我发现我竟然学会了12种tree traversal的办法
相关话题的讨论汇总
话题: iter话题: int话题: vector话题: v1话题: error
进入JobHunting版参与讨论
1 (共1页)
a********y
发帖数: 31
1
find and print the first longest
ascending or descending contiguous subsequence for a vector of
integers.
我的程序:
int main(){
// create a vector
vector v1(10);
for (vector::iterator iter=v1.begin();iter!=v1.end();iter++)
cin>>*iter;
cout< //
int n_up=1;
int n_upmax=1;
int n_down=1;
int n_downmax=1;
int i_marker_up=0;
int i_marker_down=0;


for (int iter=0;iter { if (v1[iter]
1 (共1页)
进入JobHunting版参与讨论
相关主题
我发现我竟然学会了12种tree traversal的办法[问一道题] maximum contiguous subarray with sum >= target number
请问怎样写没有parent pointer的BST iterator?C++ 程序求助
面试题count # of increasing subsequences of String求解神秘的礼物 (更新)
求解这个动态规划题一道 facebook 电面题
请教一道题一个算法和设计的题目
这道题DP怎么做阿fb + google 电面面经
问一道算法题largest subsequence sum <= max问个算法题,修改版
再问个算法题……Maximum Sum of Increasing Sequence
相关话题的讨论汇总
话题: iter话题: int话题: vector话题: v1话题: error