题解 | #买卖股票的最好时机(一)# | Rust

买卖股票的最好时机(一)

https://www.nowcoder.com/practice/351b87e53d0d44928f4de9b6217d36bb

use std::io::{self, *};

struct Solution {
    prices : std::vec::Vec<i32>
}

impl Solution {
    fn new(p : std::vec::Vec<i32>) -> Self{
        Solution {prices : p}
    }

    fn getMaxProfit(&self) -> i32 {
        let mut max_profit : i32 = 0;
        let mut min_p : i32 = self.prices[0];
        for num in &self.prices {
            max_profit = std::cmp::max(max_profit, *num - min_p);
            min_p = std::cmp::min(*num, min_p);
        }
        return max_profit;
    }
}

fn main() {
    let mut n:i32 = 0;
    let mut input = String::new();
    io::stdin().read_line(&mut input);
    n = input.trim().parse().unwrap();
    io::stdin().read_line(&mut input);
    let numbers: std::vec::Vec<i32> = input.split_whitespace()
        .map(|s| s.parse().expect("parse error"))
        .collect();
    print!("{}", Solution::new(numbers).getMaxProfit());
}

全部评论

相关推荐

10-05 11:11
海南大学 Java
投票
理想江南137:感觉挺真诚的 感觉可以试一试
点赞 评论 收藏
分享
头像 会员标识
10-14 23:01
已编辑
中国地质大学(武汉) Java
CUG芝士圈:虽然是网上的项目,但最好还是包装一下,然后现在大部分公司都在忙校招,十月底、十一月初会好找一些。最后,boss才沟通100家,别焦虑,我去年暑假找第一段实习的时候沟通了500➕才有面试,校友加油
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务