// 面试题66:构建乘积数组
// 题目:给定一个数组A[0, 1, …, n-1],请构建一个数组B[0, 1, …, n-1],其
// 中B中的元素B[i] =A[0]×A[1]×… ×A[i-1]×A[i+1]×…×A[n-1]。不能使用除法。 #include <iostream>
#include <vector> using namespace std;
//把B[i]看成[=A[0],A[1],… ,A[i-1],1,A[i+1],…,A[n-1]]
//对于B,就成了二维数组,对于1左面是上三角矩阵,右面是下三角矩阵
//三角矩阵的每行乘积值计算可以从顶向下
void BuildProductionArray(const vector<double>& input, vector<double>& output)
{
int length1 = input.size();
int length2 = output.size(); if (length1 == length2 && length2 > )//还是要边界判断一下
{
output[] = ;
for (int i = ; i < length1; ++i)//计算左面上三角矩阵的每行乘积值
{
output[i] = output[i - ] * input[i - ];
} double temp = ;
for (int i = length1 - ; i >= ; --i)//注意两个循环的i初始化值
{
temp *= input[i + ];//计算下三角矩阵的每行乘积值
output[i] *= temp;//上下三角的同行乘机值再相乘,就是满足题意的B[i]值了
}
}
} //================= Test Code =================
static bool EqualArrays(const vector<double>& input, const vector<double>& output)
{
int length1 = input.size();
int length2 = output.size(); if (length1 != length2)
return false; for (int i = ; i < length1; ++i)
{
if (abs(input[i] - output[i]) > 0.0000001)
return false;
} return true;
} static void test(const char* testName, const vector<double>& input, vector<double>& output, const vector<double>& expected)
{
printf("%s Begins: ", testName); BuildProductionArray(input, output);
if (EqualArrays(output, expected))
printf("Passed.\n");
else
printf("FAILED.\n");
} static void test1()
{
// 输入数组中没有0
double input[] = { , , , , };
double output[] = { , , , , };
double expected[] = { , , , , };
vector<double> output1= vector<double>(output, output + sizeof(output) / sizeof(double)); test("Test1", vector<double>(input, input + sizeof(input) / sizeof(double)),
output1,
vector<double>(expected, expected + sizeof(expected) / sizeof(double)));
} static void test2()
{
// 输入数组中有一个0
double input[] = { , , , , };
double output[] = { , , , , };
double expected[] = { , , , , };
vector<double> output1 = vector<double>(output, output + sizeof(output) / sizeof(double)); test("Test2", vector<double>(input, input + sizeof(input) / sizeof(double)),
output1,
vector<double>(expected, expected + sizeof(expected) / sizeof(double)));
} static void test3()
{
// 输入数组中有两个0
double input[] = { , , , , };
double output[] = { , , , , };
double expected[] = { , , , , };
vector<double> output1 = vector<double>(output, output + sizeof(output) / sizeof(double)); test("Test3", vector<double>(input, input + sizeof(input) / sizeof(double)),
output1,
vector<double>(expected, expected + sizeof(expected) / sizeof(double)));
} static void test4()
{
// 输入数组中有正、负数
double input[] = { , -, , -, };
double output[] = { , , , , };
double expected[] = { , -, , -, };
vector<double> output1 = vector<double>(output, output + sizeof(output) / sizeof(double)); test("Test4", vector<double>(input, input + sizeof(input) / sizeof(double)),
output1,
vector<double>(expected, expected + sizeof(expected) / sizeof(double)));
} static void test5()
{
// 输入输入中只有两个数字
double input[] = { , - };
double output[] = { , };
double expected[] = { -, };
vector<double> output1 = vector<double>(output, output + sizeof(output) / sizeof(double)); test("Test5", vector<double>(input, input + sizeof(input) / sizeof(double)),
output1,
vector<double>(expected, expected + sizeof(expected) / sizeof(double)));
} int main(int argc, char* argv[])
{
test1();
test2();
test3();
test4();
test5();
system("pause");
return ;
}

《剑指offer》第六十六题(构建乘积数组)的更多相关文章

  1. (剑指Offer)面试题52:构建乘积数组

    题目: 给定一个数组A[0,1,...,n-1],请构建一个数组B[0,1,...,n-1],其中B中的元素B[i]=A[0]*A[1]*...*A[i-1]*A[i+1]*...*A[n-1].不能 ...

  2. 【剑指offer】不使用除法,构建乘积数组,C++实现

    # 题目 # 思路 设C[i] = A[0] * A[1] * - * A[i-1],D[i] =  A[i+1] * - * A[n-1],则C[i]按照从上到下的顺序计算,即C[i] = C[i- ...

  3. 剑指Offer(二十六):二叉搜索树与双向链表

    剑指Offer(二十六):二叉搜索树与双向链表 搜索微信公众号:'AI-ming3526'或者'计算机视觉这件小事' 获取更多算法.机器学习干货 csdn:https://blog.csdn.net/ ...

  4. 剑指Offer(三十六):两个链表的第一个公共结点

    剑指Offer(三十六):两个链表的第一个公共结点 搜索微信公众号:'AI-ming3526'或者'计算机视觉这件小事' 获取更多算法.机器学习干货 csdn:https://blog.csdn.ne ...

  5. 剑指Offer(三十二):把数组排成最小的数

    剑指Offer(三十二):把数组排成最小的数 搜索微信公众号:'AI-ming3526'或者'计算机视觉这件小事' 获取更多算法.机器学习干货 csdn:https://blog.csdn.net/b ...

  6. 《剑指offer》第二十六题(树的子结构)

    // 面试题26:树的子结构 // 题目:输入两棵二叉树A和B,判断B是不是A的子结构. #include <iostream> struct BinaryTreeNode { doubl ...

  7. 《剑指offer》第十六题(数值的整数次方)

    // 面试题:数值的整数次方 // 题目:实现函数double Power(double base, int exponent),求base的exponent // 次方.不得使用库函数,同时不需要考 ...

  8. 《剑指offer》第十九题(正则表达式匹配)

    // 面试题19:正则表达式匹配 // 题目:请实现一个函数用来匹配包含'.'和'*'的正则表达式.模式中的字符'.' // 表示任意一个字符,而'*'表示它前面的字符可以出现任意次(含0次).在本题 ...

  9. 《剑指offer》第二十九题(顺时针打印矩阵)

    // 面试题29:顺时针打印矩阵 // 题目:输入一个矩阵,按照从外向里以顺时针的顺序依次打印出每一个数字. #include <iostream> void PrintMatrixInC ...

  10. 《剑指offer》第二十八题(对称的二叉树)

    // 面试题28:对称的二叉树 // 题目:请实现一个函数,用来判断一棵二叉树是不是对称的.如果一棵二叉树和 // 它的镜像一样,那么它是对称的. #include <iostream> ...

随机推荐

  1. oracle 11g enq: JI – contention等待事件

    最近使用物化视图同步的环境在大量刷新的时候频繁出现enq: JI – contention等待事件,经查: JI enqueue is acquired in exclusive mode on th ...

  2. oracle 11g禁用和强制direct path read

    一般在混合型环境中,大表在进行全表扫描或者走并行的时候一般会出现direct path read等待事件,如果在OLTP或者纯粹的DSS环境中,出现大量的direct path read直接路径读取, ...

  3. Tomcat 7服务器线程模型

    Tomcat 7服务器网络处理主要由NioEndpoint,其处理客户端连接的主要流程如图所示图中Acceptor及Worker分别是以线程池形式存在,Poller是一个单线程.注意,与BIO的实现一 ...

  4. opencv学习之路(6)、鼠标截图,滑动条播放视频

    一.鼠标截图 #include<opencv2/opencv.hpp> #include<iostream> using namespace cv; using namespa ...

  5. 一、虚拟环境.二、路由配置主页与404.三、2.x路由分发.四、伪静态.五、request对象.六、FBV与CBV.七、文件上传.

    一.虚拟环境 ''' 解决版本共存 1. 用pycharm选择File点击NewProject然后选择virtualenv创建一个纯净环境 2. 打开下载的目录将venv文件夹下的所有文件(纯净的环境 ...

  6. Java中单例设计模式,饿汉式和懒汉式

    Java中单例模式是一种常见的设计模式,单例模式的写法有好几种,这里主要介绍三种:懒汉式单例.饿汉式单例.登记式单例. 单例模式有以下特点: 1.单例类只能有一个实例. 2.单例类必须自己创建自己的唯 ...

  7. Spring <import>标签配置

    使用情景:在Maven项目中,我们在Spring 配置文件中需要用到<import resource="">标签来引入其他配置文件,这里我要记下一些注意事项 情景1 & ...

  8. Hyper

    https://github.com/zeit/hyper https://gist.github.com/coco-napky/404220405435b3d0373e37ec43e54a23 Ho ...

  9. (转) 机器学习很有趣Part6:怎样使用深度学习进行语音识别

    本文转自:http://www.jiqizhixin.com/article/2321 机器学习很有趣Part6:怎样使用深度学习进行语音识别 2017-02-19 13:20:47    机器学习  ...

  10. Bytom国密网说明和指南

    比原项目仓库: Github地址:https://github.com/Bytom/bytom Gitee地址:https://gitee.com/BytomBlockchain/bytom 国密算法 ...