我有2个三角和vert,第0页,第1页,第2页,第3页。 这两条三角地相互交织。 从这两个三角洲中,我想用4个vert子给4个 tetra子。 我所工作的图书馆要求,“应当给4个vert,这样,在从外部看望时,四舍五入的三重vert在反锁定中。” 假设两种三角体中的一种为0, p1, p2 I计算出正常(p1-p0)(乘)(p2-p0)。 请允许我告诉我,如何确保满足这一条件?
If I have an algorithm which is comprised of (let s say) three sub-algorithms, all with different O() characteristics, e.g.: algorithm A: O(n) algorithm B: O(log(n)) algorithm C: O(n log(n)) How do ...