摘要: 描述 一个机器人在m×n大小的地图的左上角(起点)。 机器人每次向下或向右移动。机器人要到达地图的右下角(终点)。 可以有多少种不同的路径从起点走到终点? 备注:m和n小于等于100,并保证计算结果在int范围内 #include <iostream> int TotalPath(int toX, 阅读全文
posted @ 2021-06-18 17:28 hitzzq 阅读(51) 评论(0) 推荐(0) 编辑
摘要: #pragma once #include<vector> #include<list> class Solution { public: Solution() :members(NULL) {}; std::vector<double> flowmedian(std::vector<std::ve 阅读全文
posted @ 2021-06-18 16:40 hitzzq 阅读(38) 评论(0) 推荐(0) 编辑