Курсовая работа: Алгоритмы поиска кратчайших покрытий булевых матриц
} } }
int x, y, res, *str, *stb, str_max, stb_min;
res=1;
q=1;
pokr=new int*[res];
pokr[0]=new int[b];
str=new int[b];
stb=new int[a];
for(int i=0;i<b;i++)
{
pokr[0][i]=0;
str[i]=arrb[i];
}
for(int i=0; i<a; i++)
{
stb[i]=arra[i];
}
for(;;)
{
for(int i=0; i<a; i++)
{
if(stb[i]>0)
{
stb_min=stb[i];
break;
} }
for(int i=0; i<a; i++)
if(stb[i]<stb_min && stb[i]!=0)
stb_min=stb[i];