码迷,mamicode.com
首页 > 其他好文 > 详细

[LintCode] Connecting Graph

时间:2017-11-12 11:18:15      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:weak   blog   contains   style   label   form   targe   get   return   

Given n nodes in a graph labeled from 1 to n. There is no edges in the graph at beginning.

You need to support the following method:

1. connect(a, b), add an edge to connect node a and node b. 2.query(a, b)`, check if two nodes are connected

Example

5 // n = 5
query(1, 2) return false
connect(1, 2)
query(1, 3) return false
connect(2, 4)
query(1, 4) return true



[LintCode] Connecting Graph

标签:weak   blog   contains   style   label   form   targe   get   return   

原文地址:http://www.cnblogs.com/lz87/p/7500092.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!