분류 전체보기129 MySQL 기본 출처 : www.boostcourse.org/web326/joinLectures/28762 루트 계정으로 접속 mysql -uroot -p enter password : ******** 계정 생성 create user 'connectuser'@'%' identified by 'connect123!@#'; 특정 계정에게 특정 데이터베이스에 대한 권한 부여 grant all privileges on connectdb.* to connectuser@'%'; flush privileges; 특정 계정으로 접속 mysql -h127.0.0.1 -uconnectuser -p connectdb enter password : connect123!@# 필드(field) = 행(row)과 열(column)의 교차점 sql.. 2020. 12. 27. 서버 통신 구조 회사에서 작업했던 서버 운영 구조이다. 다른 프로젝트를 할 때에도 도움이 되고 있다. 다른 프레임워크들도 구조가 비슷 비슷하기 때문이다. 2020. 12. 22. BFS 개념 참고 : coding-factory.tistory.com/612 인접 행렬은 노드들 간의 연결 관계가 많을 때 인접 리스트는 노드들 간의 연결 관계가 적을 때 사용한다. Node가 N개이면 Edge의 최대 개수는 1+2+ ... + (N-1) = N(N-1)/2 2020. 12. 21. 백준 1764번 : 듣보잡 문제 링크 : www.acmicpc.net/problem/1764 풀이에 참고한 링크 : zerobell.tistory.com/9 blockdmask.tistory.com/178 내 풀이 (2020.12.21.) : #include #include #include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); vector not_heard; vector not_seen; int N, M; cin >> N >> M; for (int i = 0; i > str; not_heard.push_back(str); } for (int i = 0; i < M; i+.. 2020. 12. 21. 이전 1 ··· 28 29 30 31 32 33 다음