Leetcode 1116. 打印零与奇偶数(未ac)

 控制台没问题,不知道为啥没ac

#include 
#include 
#include 
#include 
#include 
using namespace std;
class ZeroEvenOdd {
private:
	int n;
	std::mutex mutex_t;
	std::condition_variable cond;
	bool is0 = true;
	bool is1 = true;
public:
	ZeroEvenOdd(int n) {
		this->n = n;
	}

	// printNumber(x) outputs "x", where x is an integer.
	void zero(function printNumber) {
		for (int i = 0; i < n; i++)
		{
			std::unique_lock lk(mutex_t);
			cond.wait(lk, [this]() {return is0; });
			printNumber(0);
			is0 = false;
			cond.notify_all();
		}
	}

	void even(function printNumber) {
		if (n == 0)return;
		for (int i = 1; i <= n; i++)
		{
			std::unique_lock lk(mutex_t);
			cond.wait(lk, [this]() {return !is0&&is1; });
			if (i % 2) 
			{
				printNumber(i);
				is0 = true;
				is1 = false;
			}
			
			cond.notify_all();
		}
	}

	void odd(function printNumber) {
		if (n == 0)return;
		for (int i = 1; i <= n; i++)
		{
			std::unique_lock lk(mutex_t);
			cond.wait(lk, [this]() {return !is0 && !is1; });
			if (i % 2 == 0)
			{
				printNumber(i);
				is0 = true;
				is1 = true;
			}
			
			cond.notify_all();
		}

	}
};
int main() 
{
	std::function f1= [](int x) {printf("%d", x); };
	ZeroEvenOdd obj(5);
	thread t1(std::bind(&ZeroEvenOdd::zero,&obj,f1));
	thread t2(std::bind(&ZeroEvenOdd::even, &obj,f1));
	thread t3(std::bind(&ZeroEvenOdd::odd, &obj,f1));
	t1.join();
	t2.join();
	t3.join();
	return 0;
}

假设有这么一个类:

class ZeroEvenOdd {
  public ZeroEvenOdd(int n) { ... }      // 构造函数
  public void zero(printNumber) { ... }  // 仅打印出 0
  public void even(printNumber) { ... }  // 仅打印出 偶数
  public void odd(printNumber) { ... }   // 仅打印出 奇数
}
相同的一个 ZeroEvenOdd 类实例将会传递给三个不同的线程:

线程 A 将调用 zero(),它只输出 0 。
线程 B 将调用 even(),它只输出偶数。
线程 C 将调用 odd(),它只输出奇数。
每个线程都有一个 printNumber 方法来输出一个整数。请修改给出的代码以输出整数序列 010203040506... ,其中序列的长度必须为 2n。

 

示例 1:

输入:n = 2
输出:"0102"
说明:三条线程异步执行,其中一个调用 zero(),另一个线程调用 even(),最后一个线程调用odd()。正确的输出为 "0102"。
示例 2:

输入:n = 5
输出:"0102030405"

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/print-zero-even-odd
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

你可能感兴趣的:(算法,leetcode,多线程)