我搜索得非常广泛但找不到任何解决方案
接受任何编程语言答案。特别是C,Java,C#
我更喜欢C#而不是
所以这是我的问题
示例1
假设我有以下矩阵
A1, A2, A3
所以它们可以乘以以下顺序
A1*A2*A3
A1*(A2*A3)
(A1*A2)*A3
另一个例子
A1, A2, A3, A4, A5
一些可能的乘法顺序如下
(A1*A2)*(A3*A4)*A5
A1*(A2*A3)*(A4*A5)
A1*(A2*A3*A4*A5)
.
.
.
那么任何想法如何设计算法来找到所有?
它可以是递归的,内存有动态吗?
答案 0 :(得分:1)
为了拥有所有组合,我使用了数组“group”以保留哪个矩阵在哪个括号中。 例如,一组1是“(M)”,一组2是“(M * M)”,一组3是“(M * M * M)”等等
所以,如果我们有5个matrice,那么
我在“group”中使用了这样的值: 如果是一个数字> 0,然后是该组中持有的matrice数。 如果它为0,则矩阵由第一个值“拥有”!= 0且指数较小。
例子:group = [2,0,3,0,0]
indice 1中的0表示indice 1中的基质由indice 0中的组“拥有”。 indice 4中的0表示indice 4中的矩阵由indice 2中的组“拥有”(而不是0)。
您现在可以使用“group”来了解如何计算您的实际矩阵(我的只是一个字符串)。
现在,算法的核心就在于how can I have the next "group"
。
为此,我使用以下规则(我从最后到开始迭代数组):
为什么选择第二组?因为在最终没有太多矩阵的情况下,你永远不能增加第一个。
如果group = [1,1,1,1,1],则有5个矩阵。 如果我增加第一组,那么[1,1,1,1,2]将有6个矩阵,这是不可能的。
将新增加的组中的所有以下矩阵设置为0。
然后,将以下所有矩阵设置为1
这是一个新代码,你能理解吗?
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#define NB_MAT 3
void MatriceGroupDisplay(int group[NB_MAT])
{
for (int i = 0; i < NB_MAT; ++i) {
if (group[i] > 1) {
printf("(");
}
printf("M%d", i + 1);
if (group[i] == 0 && (i + 1 >= NB_MAT || group[i + 1] != 0)) {
printf(")");
}
if (i != NB_MAT - 1) {
printf(" * ");
}
}
printf("\n");
}
bool FoundNextMatriceGroup(int group[NB_MAT])
{
int i;
int nbGroup = 0;
// There are one group, so no more combination is possible
if (group[0] == NB_MAT) {
return (false);
}
// We found the second group ...
for (i = NB_MAT - 1; nbGroup != 2; --i) {
if (group[i] != 0) {
++nbGroup;
}
}
++i;
// ... and increment it's size.
++group[i];
// All the following "matrix" are in the group ...
for (int j = 1; j < group[i]; ++j) {
group[i + j] = 0;
}
// ... and all the following group have a size of 1
for (int j = i + group[i]; j < NB_MAT; ++j) {
group[j] = 1;
}
return (true);
}
int main(void)
{
int group[NB_MAT];
for (size_t i = 0; i < NB_MAT; ++i) {
group[i] = 1;
}
MatriceGroupDisplay(group);
while (FoundNextMatriceGroup(group)) {
MatriceGroupDisplay(group);
}
return (EXIT_SUCCESS);
}
旧代码(递归无效,matrice数组无用,并且发现下一组算法更复杂)。
#include <stdio.h>
#define NB_MAT 5
void matDisplay(char *matrices[NB_MAT], int group[NB_MAT])
{
for (int i = 0; i < NB_MAT; ++i) {
if (group[i] > 1) {
printf("(");
}
printf("%s", matrices[i]);
if (group[i] == 0 && (i + 1 >= NB_MAT || group[i + 1] != 0)) {
printf(")");
}
if (i != NB_MAT - 1) {
printf(" * ");
}
}
printf("\n");
}
void rec(char *matrices[NB_MAT], int group[NB_MAT])
{
matDisplay(matrices, group);
int i = NB_MAT - 1;
// We found the first "group" that we can increase in size
while (i >= 0) {
if (group[i] != 0 && group[i] + 1 <= NB_MAT - i) {
++group[i];
break;
}
--i;
}
if (i < 0) {
return ;
}
// The following matrice are in the "group"
int nbInGroup = group[i];
for (int j = 1; j < nbInGroup; ++j) {
group[i + j] = 0;
}
// All the other group is 1
for (int j = i + nbInGroup; j < NB_MAT; ++j) {
group[j] = 1;
}
rec(matrices, group);
}
int main(void)
{
char *matrices[NB_MAT] = {"M1", "M2", "M3", "M4", "M5"};
int group[NB_MAT] = {1, 1, 1, 1, 1};
rec(matrices, group);
/*
11111 (a)*(b)*(c)*(d)*(e)
1112. (a)*(b)*(c)*(d*e)
112.1 (a)*(b)*(c*d)*(e)
113.. (a)*(b)*(c*d*e)
12.11 (a)*(b*c)*(d)*(e)
12.2. (a)*(b*c)*(d*e)
13..1 (a)*(b*c*d)*(e)
14... (a)*(b*c*d*e)
2.111 (a*b)*(c)*(d)*(e)
2.12. (a*b)*(c)*(d*e)
2.2.1 (a*b)*(c*d)*(e)
2.3.. (a*b)*(c*d*e)
3..11 (a*b*c)*(d)*(e)
3..2. (a*b*c)*(d*e)
4...1 (a*b*c*d)*(e)
5.... (a*b*c*d*e)
*/
}