为什么当我想编译以下多线程合并排序C程序时,我收到此错误:
ap@sharifvm:~/forTHE04a$ gcc -g -Wall -o mer mer.c -lpthread
mer.c:4:20: fatal error: iostream: No such file or directory
#include <iostream>
^
compilation terminated.
ap@sharifvm:~/forTHE04a$ gcc -g -Wall -o mer mer.c -lpthread
mer.c:4:22: fatal error: iostream.h: No such file or directory
#include <iostream.h>
^
compilation terminated.
Run Code Online (Sandbox Code Playgroud)
我的节目:
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <iostream>
using namespace std;
#define N 2 /* # of thread */
int a[] = {10, 9, 8, 7, 6, 5, 4, 3, 2, 1}; /* target array */
/* structure for array index
* used to keep low/high end of sub arrays
*/
typedef struct Arr {
int low;
int high;
} ArrayIndex;
void merge(int low, int high)
{
int mid = (low+high)/2;
int left = low;
int right = mid+1;
int b[high-low+1];
int i, cur = 0;
while(left <= mid && right <= high) {
if (a[left] > a[right])
b[cur++] = a[right++];
else
b[cur++] = a[right++];
}
while(left <= mid) b[cur++] = a[left++];
while(right <= high) b[cur++] = a[left++];
for (i = 0; i < (high-low+1) ; i++) a[low+i] = b[i];
}
void * mergesort(void *a)
{
ArrayIndex *pa = (ArrayIndex *)a;
int mid = (pa->low + pa->high)/2;
ArrayIndex aIndex[N];
pthread_t thread[N];
aIndex[0].low = pa->low;
aIndex[0].high = mid;
aIndex[1].low = mid+1;
aIndex[1].high = pa->high;
if (pa->low >= pa->high) return 0;
int i;
for(i = 0; i < N; i++) pthread_create(&thread[i], NULL, mergesort, &aIndex[i]);
for(i = 0; i < N; i++) pthread_join(thread[i], NULL);
merge(pa->low, pa->high);
//pthread_exit(NULL);
return 0;
}
int main()
{
ArrayIndex ai;
ai.low = 0;
ai.high = sizeof(a)/sizeof(a[0])-1;
pthread_t thread;
pthread_create(&thread, NULL, mergesort, &ai);
pthread_join(thread, NULL);
int i;
for (i = 0; i < 10; i++) printf ("%d ", a[i]);
cout << endl;
return 0;
}
Run Code Online (Sandbox Code Playgroud)
aut*_*tic 30
既不是标准C头文件<iostream>也不<iostream.h>是.您的代码应该是C++,其中<iostream>有一个有效的标头.使用g++(和.cpp文件扩展名)C++代码.
或者,该程序主要使用C中可用的构造.使用C编译器将整个程序转换为编译很容易.只需删除#include <iostream>和using namespace std;,并更换cout << endl;有putchar('\n');...我建议使用C99编译(如gcc -std=c99)
似乎您在意识到您正在处理与size_t. 我很高兴你做到了。
无论如何,您有一个.c源文件,并且大部分代码看起来都符合 C 标准,除了#include <iostream>和using namespace std;
C++标准内置函数的C等价物#include<iostream>可以通过#include<stdio.h>
#include <iostream>为#include <stdio.h>,删除using namespace std;随着#include <iostream>带下,你会需要一个C标准的替代cout << endl;,它可以这样做printf("\n");或putchar('\n');
在对两个选项,printf("\n");工程,我观察到的更快。
当printf("\n");在上面的代码中代替cout<<endl;
$ time ./thread.exe
1 2 3 4 5 6 7 8 9 10
real 0m0.031s
user 0m0.030s
sys 0m0.030s
Run Code Online (Sandbox Code Playgroud)
当putchar('\n'); 在上面的代码中代替cout<<endl;
$ time ./thread.exe
1 2 3 4 5 6 7 8 9 10
real 0m0.047s
user 0m0.030s
sys 0m0.030s
Run Code Online (Sandbox Code Playgroud)用 Cygwingcc (GCC) 4.8.3版本编译。结果平均超过 10 个样本。(花了我 15 分钟)