所以我试图在AXP服务器上编译这个C ++代码,并且不想编译。我试图解决的问题是背包问题,我想使用文件来读取数据。 这是我目前的代码:
#include <iostream>
#include <fstream>
using namespace std;
// A utility function that returns maximum of two integers
int max(int a, int b)
{
return (a > b) ? a : b;
}
// Returns the maximum value that can be put in a knapsack of capacity W
int knapSack(int W, int wt[], int val[], int n)
{
int i, w;
int K[n + 1][W + 1];
// Build table K[][] in bottom up manner
for (i = 0; i <= n; i++)
{
for (w = 0; w <= W; w++)
{
if (i == 0 || w == 0)
K[i][w] = 0;
else if (wt[i - 1] <= w)
K[i][w]= max(val[i - 1] + K[i - 1][w - wt[i - 1]], K[i - 1][w]);
else
K[i][w] = K[i - 1][w];
}
}
return K[n][W];
}
int main()
{
ifstream myFile;
myFile.open("p1.txt");
//cout << "Enter the number of items in a Knapsack:";
int n, W;
myFile >> n;
int val[n], wt[n];
//cout << "Enter the capacity of knapsack";
myFile >> W;
for (int i = 0; i < n; i++)
{
//cout << "Enter weight and value for item " << i << ":";
myFile >> wt[i];
myFile >> val[i];
}
// int val[] = { 60, 100, 120 };
// int wt[] = { 10, 20, 30 };
// int W = 50;
cout << "The highest valid value is: " << knapSack(W, wt, val, n) << endl;
return 0;
}
以下是编译后提供给我的错误列表:
using namespace std;
................^
%CXX-E-MISNAMNAM, name must be a namespace name
at line number 3
int K[n + 1][W + 1];
..........^
%CXX-E-EXPRNOTCONST, expression must have a constant value
at line number 16
int K[n + 1][W + 1];
.................^
%CXX-E-EXPRNOTCONST, expression must have a constant value
at line number 16
int val[n], wt[n];
............^
%CXX-E-EXPRNOTCONST, expression must have a constant value
at line number 45
int val[n], wt[n];
...................^
%CXX-E-EXPRNOTCONST, expression must have a constant value
at line number 45
答案 0 :(得分:0)
%CXX-E-MISNAMNAM
由于历史原因,HP C ++默认使用pre-ANSI iostreams库
几个平台。此ANSI前iostreams库不涉及std
命名空间,所以当你编写using namespace std;
时,编译器会抱怨,因为它没有在你包含的标题中提到namespace std
。
有关详情,请参阅http://h71000.www7.hp.com/commercial/cplus/docs/ugv_stl.html中的第7.1.2节。
如果定义了__USE_STD_IOSTREAM
宏,HP C ++将使用ANSI
iostream库,它位于名称空间std
内。你可以定义它
使用/DEFINE=(__USE_STD_IOSTREAM)
调用编译器时的宏。
%CXX-E-EXPRNOTCONST
可变长度数组是C99标准的一部分,但不是C ++的一部分。一世 我不知道HP C ++已经实现了该标准的扩展。您 可能需要重写您的程序以避免使用它们(也许使用 {(1}}代替)用HP C ++实现编译。
http://h71000.www7.hp.com/commercial/cplus/docs/ugv_contents.html包含很多内容 有关HP C ++的有用信息。