Created
September 13, 2018 10:03
-
-
Save kyagrd/e8c0cb1a6d39c413c7310c832c62ccc0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| digraph G { | |
| node [shape=box]; | |
| subgraph cluster_1 { | |
| label = "1학년"; | |
| color=blue; | |
| 이산구조; 프로그래밍실습 -> 고급프로그래밍; 대학수학; | |
| 컴퓨터개론 -> 확률통계 [style=invis]; | |
| } | |
| subgraph cluster_2 { | |
| label = "2학년"; | |
| color=blue; | |
| 자료구조 -> 계산이론 [style=invis]; | |
| 시스템프로그래밍과보안 -> 컴퓨터구조; | |
| 객체지향 -> 정보보호 [style=invis]; | |
| } | |
| subgraph cluster_3 { | |
| label = "3학년"; | |
| color=blue; | |
| 빅데이터; | |
| 인터넷응용실습 -> 컴퓨터네트워크; | |
| 알고리듬 -> 데이타베이스; | |
| 운영체제 -> 임베디드시스템; | |
| 운영체제 -> 프로그래밍언어 [style=invis]; | |
| } | |
| subgraph cluster_4 { | |
| label = "4학년"; | |
| color=blue; | |
| 모바일프로그래밍; SW공학; | |
| 웹프로그래밍 -> 캡스턴디자인 [style=invis]; | |
| 웹프로그래밍 -> 컴파일러 [style=invis]; | |
| 네트워크보안프로그래밍 -> 모바일프로그래밍 [style=invis]; | |
| 인공지능 -> 컴퓨터신기술 [style=invis]; | |
| } | |
| 이산구조 -> 자료구조; | |
| 고급프로그래밍 -> 시스템프로그래밍과보안; | |
| 고급프로그래밍 -> 자료구조; | |
| 확률통계 -> 빅데이터; | |
| 객체지향 -> SW공학; | |
| 자료구조 -> 알고리듬; | |
| 컴퓨터구조 -> 운영체제; | |
| 컴퓨터네트워크 -> 웹프로그래밍; | |
| 이산구조 -> 계산이론 -> 프로그래밍언어 -> 컴파일러; | |
| 컴퓨터네트워크 -> 네트워크보안프로그래밍; | |
| 빅데이터 -> 인공지능; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment