摘要: //program 3-1 #include #include #include using namespace std; const int M=10000; int x,n,i; int s[M]; int BinarySearch(int n,int s[],int x) { int low=0,high=n-1; //low指向有序数组的第一个元素,high指向有序数组的最后一... 阅读全文
posted @ 2019-07-05 22:11 xjyxp01 阅读(355) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std; const int M=1000005; struct three{ double w;//每个宝物的重量 double v;//每个宝物的价值 double p;;//性价比 }s[M]; bool cmp(three a, three b) { return a.p>b.p;... 阅读全文
posted @ 2019-07-05 21:16 xjyxp01 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 检索单个列 上述语句利用SELECT语句从Products表中检索一个名为pro_name的列。所需的列名需要写在SELECT关键词之后,FROM关键字指出从哪个表中检索数据。 检索多个列 检索所有列 检索不同的值 限制结果 阅读全文
posted @ 2019-07-05 17:07 xjyxp01 阅读(132) 评论(0) 推荐(0) 编辑
摘要: //program 2-1 #include #include const int N=1000005; using namespace std; double w[N]; //古董的重量数组 int main() { double c; int n; cin>>c>>n; for(int i=0; i>w[i]; //输入每个物品重量 } ... 阅读全文
posted @ 2019-07-05 16:14 xjyxp01 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 在一个二维数组中(每个一维数组的长度相同),每一行都按照从左到右递增的顺序排序,每一列都按照从上到下递增的顺序排序。请完成一个函数,输入这样的一个二维数组和一个整数,判断数组中是否含有该整数。 阅读全文
posted @ 2019-07-05 11:06 xjyxp01 阅读(152) 评论(0) 推荐(0) 编辑
摘要: Q:Evaluate the value of an arithmetic expression in Reverse Polish Notation. Valid operators are+,-,*,/. Each operand may be an integer or another exp 阅读全文
posted @ 2019-07-05 10:49 xjyxp01 阅读(205) 评论(0) 推荐(0) 编辑