Представники якого літературного напряму вважали, що античність запропонувала зразки прекрасного, а завдання митців наступних часів полягає в тому, щоб наблизитися до них?
Персонажі літератури якого напряму здебільшого були схематичні, образи були побудовані навколо якоїсь провідної риси характеру (честь, обов'язок, хоробрість, лицемірство, жадібність тощо)?
You are given the array [10, 15, 9, 7, 12], and you will sort this array in increasing order.
If QuickSort is applied using the first element as the pivot and the algorithm follows the partitioning scheme as discussed in the lectures, what will the array look like after the first partitioning step?
Мольєр НЕ є автором комедії
Оптичною довжиною шляху називають шлях світла у речовині.
What is the space complexity of the dynamic programming solution (done in the classroom) for the TSP with n cities?
Given the array [88, 56, 100, 2, 25], and the selection sort algorithm to sort this array in increasing order, what will the array look like after the first two elements are placed in their correct sorted order?
How does interpolation search algorithm estimate the position of the key in a sorted array?
Скільки дорівнюватиме теоретична сума ному ході, якщо у ході виміряно 6 правих за ходом них кутів, а дирекційні кути початкового і кінцевого напрямків відповідно дорівнюють α = 125˚35' α
Дано визначення класів і об’єктів:
class A {
public:
int a;
};
class B: public A {
public:
int b;
};
class C: public A, public B {
public:
int c;
};
class D: public B, public C {
public:
int d;
};
A oA;
B oB;
C oC;
D oD;
Якими будуть розміри об’єктів оA, oB, oC, oD ? (дані типу int займають 4 байти)
Записати всі поля об’єктів оA, oB, oC, oD