Написал надёжный алгоритм поиска наименьшего круга

This commit is contained in:
AZEN-SGG 2024-12-10 07:01:19 +03:00
parent b36187b77d
commit b24722eefc
5 changed files with 90 additions and 6 deletions

View file

@ -0,0 +1,10 @@
#ifndef HOPE
#define HOPE
#include <stdbool.h>
#include "SCP.h"
circle hope(point * ps, int length);
bool isSuit(circle crcl, point * ps, int length);
#endif