Melyik egyenirányító(k) be és kimenete földelhető egyidejűleg?
What is the time complexity of the following?
f ( n ) = 2 f ( n / 2 ) + n, where f ( 1 ) = d.
What is the time complexity of the following?
f ( n ) = 4 f (n-1 ) for n≥1 f ( 0 ) = 5.
What is the time complexity of the following?
f ( n ) = 9 f ( n / 3 ) + n2
Тягар вагою Р утримується в рівновазі трьома невагомими стрижнями АС, ВС та DC. Визначіть реакції стрижнів.
What is the time complexity of the following?
f ( n ) = f ( n-1 ) + 2 n – 1, where f(0)=0.
What is the time complexity of the following?
void f(int n)
{
if (n>0)
{
for(int i=1;i<n;i=i*2)
cout<<n;
f(n-1);
}
}
Given the following data calculate the profit.
| Item selling price | $1,000 |
|---|---|
| Cost of raw materials | $50 |
| Cash Manufacturing cost | $200 |
| Equipment depreciation | $100 |