题解 | #售价的中位数#

售价的中位数

https://www.nowcoder.com/practice/a1c7e3a0b2fa46da8a3430617b7d74ca

题目解答方法的文字分析:遍历数组,排序,寻找中位数

本题解析所用的编程语言:c++

class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param prices int整型vector 
     * @return double浮点型vector
     */
    vector<double> findMedianPrice(vector<int>& prices)
    {
        // write code here
        vector<double> v;
        auto it = prices.begin();
        int i = 0;
        while (it != prices.end())
        {
            ++i;
            sort(prices.begin(), prices.begin() + i);
            int t = (i - 1) / 2;
            if (i % 2 == 0)
                v.push_back((prices[t] + prices[t + 1]) / 2.0);
            else
                v.push_back(prices[t]);
            ++it;
        }
        return v;
    }
};

全部评论

相关推荐

牛客717484937号:双飞硕没实习挺要命的
点赞 评论 收藏
分享
菜菜咪:1. 可以使用简历网站的模版,美观度会更好一点 2. 邮箱可以重新申请一个,或者用qq邮箱的别名,部分hr可能会不喜欢数字邮箱 3. 项目经历最好分点描述,类似的项目很多,可以参考一下别人怎么写的 4. 自我评价可加可不加,技术岗更看重技术。最后,加油,优秀士兵
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务