建中資訊讀書會
物理教過瞜
國小教過了我可以不用講👍
struct Point{
int x,y;
};
struct Point{
int r,theta;
};
直角坐標
極座標
:
A點 到 B點 x,y變化量
:
A點 到 B點 距離
x y 軸相互獨立
x y 軸相互獨立
夾角=
夾角=
平行四邊形面積
逆時針>0
順時針<0
struct point{
int x,y;
inline point operator+(point p){return {x+p.x,y+p.y};}
inline point operator-(point p){return {x-p.x,y-p.y};}
inline int operator^(point p){return x*p.y-y*p.x;} //cross
inline int operator*(point p){return x*p.x+y*p.y;} //dot
inline bool operator<(point p){return (x==p.x)?y<p.y:(x<p.x);}
friend ostream &operator<<(ostream &s,point &p){ //cin
s<<p.x<<" "<<p.y;
return s;
}
friend istream &operator>>(istream &s,point &p){ //cout
s>>p.x>>p.y;
return s;
}
};
# PRESENTING CODE
顯然室外機吧
仔細想看看
相交
兩線段
任一點在另一線段上
沒有點在另一線段上
兩點皆不同邊
有兩點皆同邊
且
且
#偷
#偷
#偷
也用偷的這麼好
#偷
#偷
面積
#偷
🍌
#偷
凸包
真好