Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 566 Bytes

File metadata and controls

37 lines (31 loc) · 566 Bytes

그래프와 인접행렬

  1. 무방향 그래프
%%{ init: { 'flowchart': { 'curve': 'stepBefore' } } }%%
flowchart LR
    1 --- 2
    1 --- 3
    3 --- 4
    4 --- 2
    2 --- 5
Loading
  1. 방향 그래프
%%{ init: { 'flowchart': { 'curve': 'stepBefore' } } }%%
flowchart LR
    1 --> 2
    1 --> 3
    3 --> 4
    4 --> 2
    2 --> 5
Loading
  1. 가중치 방향그래프
%%{ init: { 'flowchart': { 'curve': 'stepBefore' } } }%%
flowchart LR
    1 -- 2 --> 2
    1 -- 4 --> 3
    3 -- 5 --> 4
    4 -- 2 --> 2
    2 -- 5 --> 5
Loading