class Buffer { public: Buffer() { num = 0; head = 0; tail = 0; mutex = CreateSemaphore(NULL, 1, 1, NULL); semaphore_white_cell = CreateSemaphore(NULL, buffer_size, buffer_size, NULL); semaphore_black_cell = CreateSemaphore(NULL, 0, buffer_size, NULL); } ~Buffer() { CloseHandle(mutex); } bool put(int x) { WaitForSingleObject(semaphore_white_cell, INFINITE); WaitForSingleObject(mutex, INFINITE); cout << "thread " << GetCurrentThreadId() << " put " << x << "\t"; if (num == buffer_size) { cout << "failed" << endl; ReleaseSemaphore(mutex, 1, NULL); return false; } cells[tail] = x; tail = (tail + 1) % buffer_size; cout << "ok" << endl; num++; ReleaseSemaphore(mutex, 1, NULL); ReleaseSemaphore(semaphore_black_cell, 1, NULL); return true; } bool get(int* p) { WaitForSingleObject(semaphore_black_cell, INFINITE); WaitForSingleObject(mutex, INFINITE); cout << "thread" << GetCurrentThreadId() << " get\t"; if (num == 0) { cout << "failed" << endl; ReleaseSemaphore(mutex, 1, NULL); return false; } *p = cells[head]; head = (head + 1) % buffer_size; num--; cout << "ok(" << *p << ")" << endl; ReleaseSemaphore(mutex, 1, NULL); ReleaseSemaphore(semaphore_white_cell, 1, NULL); return true; } void test() { Buffer b; int i; for (i = 0; i < 7; i++) { bool ok = b.put(i); if (!ok) cout << "err: " << i << endl; } cout << "=========================\n"; int y; b.get(&y); b.get(&y); cout << "=========================\n"; for (i = 0; i < 7; i++) { int x; bool ok = b.get(&x); if (!ok) cout << "err: " << i << endl; } }
时间: 2024-04-25 11:27:34 浏览: 108
这段代码是一个使用信号量实现的缓冲区类Buffer。它具有put和get两个方法,分别用于往缓冲区中放入数据和从缓冲区中获取数据。在构造函数中,创建了三个信号量和一个互斥量。在put方法中,首先使用WaitForSingleObject函数等待semaphore_white_cell信号量,确保缓冲区中有空的单元格可以放入数据。然后使用mutex互斥量保证缓冲区的读写操作不会冲突。如果缓冲区已满,则放入数据失败,返回false;否则将数据放入缓冲区,并更新缓冲区的状态。最后释放mutex互斥量和semaphore_black_cell信号量,返回true。在get方法中,首先使用WaitForSingleObject函数等待semaphore_black_cell信号量,确保缓冲区中有数据可供获取。然后使用mutex互斥量保证缓冲区的读写操作不会冲突。如果缓冲区为空,则获取数据失败,返回false;否则获取数据并更新缓冲区的状态。最后释放mutex互斥量和semaphore_white_cell信号量,返回true。在test方法中,首先创建一个Buffer对象,然后往其中放入数据,接着从其中获取数据。最后再次从其中获取数据。
相关问题
Buffer() { num = 0; head = 0; tail = 0; mutex = CreateSemaphore(NULL, 1, 1, NULL); semaphore_white_cell = CreateSemaphore(NULL, buffer_size, buffer_size, NULL); semaphore_black_cell = CreateSemaphore(NULL, 0, buffer_size, NULL); }
这段代码看起来像是一个缓冲区的实现,使用了信号量来控制缓冲区的读写操作。具体来说,这个缓冲区有固定大小(buffer_size),并且有两个信号量来控制缓冲区中空的(semaphore_white_cell)和满的(semaphore_black_cell)单元格数量。在构造函数中,还创建了一个互斥量(mutex),用于保护缓冲区的读写操作。这个缓冲区具体的功能和实现需要看更多的代码才能确定。
public ListNode addTwoNumbers(ListNode l1, ListNode l2) { ListNode head =null, tail =null; int carry =0; while(l1 != null && l2 != null){ //取出元素 //计算总和 //创建新节点 //把新节点链接在tail后 //更新tail //更新 l1 l2 int num1 = l1!=null?l1.val:0; int num2 = l2!=null?l2.val:0; int sum = num1+num2+carry; if(head == null){ head = tail =new ListNode(sum%10); }else{ tail.next =new ListNode(sum%10); } tail = tail.next; if(l1 != null) l1 = l1.next; if(l2 != null) l2 = l2.next; carry = sum/10; } return head; }请帮我看一下这段代码有问题吗
这段代码实现了两个链表的逐位相加,其实现方式是通过遍历两个链表,同时在每一位上进行加法运算,然后将结果存入新的链表中。在代码实现上,有几个问题需要注意:
1. 在创建新的节点时,应该判断head是否为空,如果为空,则需要同时更新head和tail的值。
2. 在计算sum的值时,需要加上上一次的进位carry。
3. 在遍历两个链表时,需要分别判断它们是否为空,如果不为空,则将它们的指针指向下一个节点。
4. 在最后返回结果时,应该返回head而不是tail。
下面是修改后的代码:
```
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
ListNode head = null, tail = null;
int carry = 0;
while (l1 != null || l2 != null) {
int num1 = l1 != null ? l1.val : 0;
int num2 = l2 != null ? l2.val : 0;
int sum = num1 + num2 + carry;
carry = sum / 10;
ListNode node = new ListNode(sum % 10);
if (head == null) {
head = tail = node;
} else {
tail.next = node;
tail = tail.next;
}
if (l1 != null) l1 = l1.next;
if (l2 != null) l2 = l2.next;
}
if (carry > 0) {
tail.next = new ListNode(carry);
}
return head;
}
```
阅读全文