这段代码就是不断用较小数和余数来更新 a 和 b,直到余数变为 0,最后返回的 a 就是最大公约数。
#include <iostream>
using namespace std;//最大公约数
int gcd(int a, int b){//这个循环表示只要 b 不是 0,就继续进行。//因为当 b …
题目描述 雇佣 K 名工人的最低成本 思路 参考官方题解和这里。 代码1(正确)
class Solution {
public:double mincostToHireWorkers(vector<int>& quality, vector<int>& wage, int k) {int n wage.size();double res 0, totalq …
题目描述 在LR字符串中交换相邻字符 给定我们一个只由 ′ L ′ , ′ R ′ , ′ X ′ L,R,X ′L′,′R′,′X′ 组成的字符串。现在给你两个字符串 s t a r t start start 和 e n d end end,问你能否通过以下两个字符串变换,将字符串 s t a r t start…