对不起前一个问题。 由于我是新手,我不知道如何在堆栈溢出上发布问题。 所以这里是我使用Pthread完成的多线程快速排序代码。 但它没有正常工作。
#include <iostream>
#include <pthread.h>
#define max 20
using namespace std;
class quick
{
int arr[max];
int n;
public:
int high;
int low;
quick(int n1)
{
n=n1;
}
quick(quick *obj)
{
this->n=obj->n;
int i;
for(i=0;i<this->n;i++)
{
this->arr[i]=obj->arr[i];
}
}
void accept();
void display();
void quicksort(int,int);
int partition(int,int);
static void* thread_function(void *ptr)
{
quick* q= static_cast<quick *>(ptr);
q->quicksort(q->low,q->high);
}
};
void quick :: accept()
{
int i;
for(i=0;i<n;i++)
{
cout<<"Enter data: "<<endl;
cin>>arr[i];
}
}
void quick :: display()
{
int i;
cout<<"The array is: "<<endl;
for(i=0;i<n;i++)
{
cout<<arr[i]<<" ";
}
cout<<endl;
}
void quick :: quicksort(int low,int high)
{
int piv_index;
pthread_t th1,th2;
quick *q1,*q2;
if(low<high)
{
piv_index=partition(low,high);
q1= new quick(this);
q2= new quick(this);
q1->low=low;
q1->high=piv_index-1;
q2->low=piv_index+1;
q2->high=high;
void *obj1=reinterpret_cast<void *>(q1);
void *obj2=reinterpret_cast<void *>(q2);
pthread_create(&th1,NULL,quick :: thread_function,(void *)obj1);
pthread_create(&th2,NULL,quick :: thread_function,(void *)obj2);
pthread_join(th1,NULL);
pthread_join(th2,NULL);
}
}
int quick :: partition(int low,int high)
{
int i,j,pivot,temp;
pivot=arr[low];
i=low+1;
j=high;
while(i<=j)
{
while(arr[i]<=pivot)
i++;
while(arr[j]>pivot)
j--;
if(i<j)
{
temp=arr[i];
arr[i]=arr[j];
arr[j]=temp;
}
}
arr[low]=arr[j];
arr[j]=pivot;
return j;
}
int main()
{
int no;
cout<<"Enter the size of array: "<<endl;
cin>>no;
quick *q;
q= new quick(no);
q->accept();
cout<<"Before Sorting: "<<endl;
q->display();
q->low=0;
q->high=no-1;
void *ptr=reinterpret_cast<void *>(q);
quick::thread_function(ptr);
cout<<"After Sorting: "<<endl;
q->display();
return 0;
}
output:
Enter the size of array:
5
Enter data:
5
Enter data:
4
Enter data:
3
Enter data:
2
Enter data:
1
Before Sorting:
The array is:
5 4 3 2 1
After Sorting:
The array is:
1 4 3 2 5
请帮我弄清楚究竟是什么错误...... 提前谢谢
答案 0 :(得分:1)
鉴于这些定义:
void *obj1=reinterpret_cast<void *>(q1);
void *obj2=reinterpret_cast<void *>(q2);
看起来你正在向下面的空白*施放虚空**。我不认为你的意思是这样做:
pthread_create(&th1,NULL,quick :: thread_function,(void *)&obj1);
pthread_create(&th2,NULL,quick :: thread_function,(void *)&obj2);
删除&符号,看看是否有帮助。
编辑:
此外,看起来quick
的构造函数正在从源对象复制数组,并且我看不到将其复制回原始对象的任何内容,因此这些结果会丢失。最好单独存储数组并将指针从一个quick
传递给下一个,以便它们都在相同的数据副本上运行。
EDIT(2):
快速而肮脏的方式:
将int arr[max];
从quick
移至main
内。将int *arr;
放入quick
。像这样更改构造函数:
quick(int n1, int *a)
{
n=n1;
arr = a;
}
quick(quick *obj)
{
this->n=obj->n;
this->arr = obj->arr;
}
最后,将q
中的main
作业更改为q= new quick(no, arr);