多线程/华为机试(C/C++)

题目描述

问题描述:有4个线程和1个公共的字符数组。线程1的功能就是向数组输出A,线程2的功能就是向字符输出B,线程3的功能就是向数组输出C,线程4的功能就是向数组输出D。要求按顺序向数组赋值ABCDABCDABCD,ABCD的个数由线程函数1的参数指定。[注:C语言选手可使用WINDOWS SDK库函数]
接口说明:
void init();  //初始化函数
void Release(); //资源释放函数
unsignedint__stdcall ThreadFun1(PVOID pM)  ; //线程函数1,传入一个int类型的指针[取值范围:1 – 250,测试用例保证],用于初始化输出A次数,资源需要线程释放
unsignedint__stdcall ThreadFun2(PVOID pM)  ;//线程函数2,无参数传入
unsignedint__stdcall ThreadFun3(PVOID pM)  ;//线程函数3,无参数传入
Unsigned int __stdcall ThreadFunc4(PVOID pM);//线程函数4,无参数传入
char  g_write[1032]; //线程1,2,3,4按顺序向该数组赋值。不用考虑数组是否越界,测试用例保证

输入描述:

输入一个int整数

输出描述:

输出多个ABCD

示例1

输入

10

输出

ABCDABCDABCDABCDABCDABCDABCDABCDABCDABCD

代码:仅为测试过

//第四十七题  多线程
#include <iostream>
#include <string>
using namespace std;
int main()
{
    int N;
    while (cin >> N)      
     {
        string str = "ABCD";
        for (int i = 1; i <= N; ++i)
            cout << str;
        cout << endl;
         
    }
    return 0;
}

代码2:借的

#include<iostream>
#include<mutex>
#include<condition_variable>
#include<string>
#include<thread>
using namespace std;
string res("");
mutex mtx;
bool done = false;
condition_variable A, B, C, D;
void fun_A(int times) 
{
	while (times--)
	{
		unique_lock<mutex> locker(mtx);
		A.wait(locker);
		res += 'A';
		B.notify_one();
	}
	done = true;
}
void fun_B() 
{
	while (!done) 
	{
		unique_lock<mutex> locker(mtx);
		B.wait(locker);
		res += 'B';
		C.notify_one();
	}
}
void fun_C() 
{
	while (!done) 
	{
		unique_lock<mutex> locker(mtx);
		C.wait(locker);
		res += 'C';
		D.notify_one();
	}
}
void fun_D() 
{
	while (!done) 
	{
		unique_lock<mutex> locker(mtx);
		D.wait(locker);
		res += 'D';
		A.notify_one();
	}
}
int main() 
{
	int num;
	while (cin >> num) 
	{
		res = "";
		thread t1(fun_A, num);
		thread t2(fun_B);
		thread t3(fun_C);
		thread t4(fun_D);
		A.notify_one();
		t1.join();
		t2.join();
		t3.join();
		t4.join();
		cout << res << endl;
		done = false;
	}
	return 0;
}

 

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值