按序打印

题目:
https://leetcode-cn.com/problems/print-in-order/submissions/
最经典的多线程问题。这里提供两种解决方案。


1. 原子计数器加while循环

class Foo {
private:
    std::atomic<int> counter_;
public:
    Foo() {
        counter_ = 0;
    }

    void first(function<void()> printFirst) {
        // printFirst() outputs "first". Do not change or remove this line.
        printFirst();
        counter_++;
    }

    void second(function<void()> printSecond) {
        while(counter_ != 1) {
        }
       // printSecond() outputs "second". Do not change or remove this line.
        printSecond();
        counter_++;
    }

    void third(function<void()> printThird) {
        while(counter_ != 2) {
        }
        // printThird() outputs "third". Do not change or remove this line.
        printThird();
    }
};

执行用时 :980 ms, 在所有 C++ 提交中击败了16.94%的用户。

这样的方法虽然通过了,但是while循环一直占着cpu,是个十分消耗资源的方法,不推荐。

2.用两个mutex控制顺序

class Foo {
private:
    std::mutex mux1_;
    std::mutex mux2_;
public:
    Foo() {
        mux1_.lock();
        mux2_.lock();
    }

    void first(function<void()> printFirst) {
        // printFirst() outputs "first". Do not change or remove this line.
        printFirst();
        mux1_.unlock();
    }

    void second(function<void()> printSecond) {
        mux1_.lock();
       // printSecond() outputs "second". Do not change or remove this line.
        printSecond();
        mux2_.unlock();
    }

    void third(function<void()> printThird) {
        mux2_.lock();
        // printThird() outputs "third". Do not change or remove this line.
        printThird();
        mux2_.unlock();
    }
};

执行用时 :60 ms, 在所有 C++ 提交中击败了36.05%的用户

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值