graphs



graphs

graphs

A pictorial representation of a graph

In mathematics and computer science, graph theory is the study of graphs, mathematical structures used to model pairwise relations between objects from a certain collection. "Graphs" in this context are not to be confused with "graphs of functions" and other kinds of graphs.

Contents

  • 1 History
  • 2 Drawing graphs
  • 3 Graph-theoretic data structures
    • 3.1 List structures
    • 3.2 Matrix structures
  • 4 Problems in graph theory
    • 4.1 Problems about subgraphs
    • 4.2 Graph coloring
    • 4.3 Route problems
    • 4.4 Network flow
    • 4.5 Visibility graph problems
    • 4.6 Covering problems
  • 5 Applications
  • 6 References
  • 7 See also
    • 7.1 Related topics
    • 7.2 Algorithms
    • 7.3 Subareas
    • 7.4 Related areas of mathematics
    • 7.5 Prominent graph theorists
  • 8 External links

History

One of the first results in graph theory appeared in Leonhard Euler's paper on Seven Bridges of Königsberg, published in 1736. It is also regarded as one of the first topological results in geometry; that is, it does not depend on any measurements. This illustrates the deep connection between graph theory and topology.

In 1845 Gustav Kirchhoff published his Kirchhoff's circuit laws for calculating the voltage and current in electric circuits.

In 1852 Francis Guthrie posed the four color problem which asks if it is possible to color, using only four colors, any map of countries in such a way as to prevent two bordering countries from having the same color. This problem, which was only solved a century later in 1976 by Kenneth Appel and Wolfgang Haken, can be considered the birth of graph theory. While trying to solve it mathematicians invented many fundamental graph theoretic terms and concepts.


Drawing graphs

Main article: Graph drawing

Graphs are represented graphically by drawing a dot for every vertex, and drawing an arc between two vertices if they are connected by an edge. If the graph is directed, the direction is indicated by drawing an arrow.

A graph drawing should not be confused with the graph itself (the abstract, non-graphical structure) as there are several ways to structure the graph drawing. All that matters is which vertices are connected to which others by how many edges and not the exact layout. In practice it is often difficult to decide if two drawings represent the same graph. Depending on the problem domain some layouts may be better suited and easier to understand than others.

Graph-theoretic data structures

Main article: Graph (data structure)

There are different ways to store graphs in a computer system. The data structure used depends on both the graph structure and the algorithm used for manipulating the graph. Theoretically one can distinguish between list and matrix structures but in concrete applications the best structure is often a combination of both. List structures are often preferred for sparse graphs as they have smaller memory requirements. Matrix structures on the other hand provide faster access but can consume huge amounts of memory if the graph is very large.

List structures

  • Incidence list - The edges are represented by an array containing pairs (ordered if directed) of vertices (that the edge connects) and eventually weight and other data.
  • Adjacency list - Much like the incidence list, each vertex has a list of which vertices it is adjacent to. This causes redundancy in an undirected graph: for example, if vertices A and B are adjacent, A's adjacency list contains B, while B's list contains A. Adjacency queries are faster, at the cost of extra storage space.

Matrix structures

  • Incidence matrix - The graph is represented by a matrix of E (edges) by V (vertices), where [edge, vertex] contains the edge's data (simplest case: 1 - connected, 0 - not connected).
  • Adjacency matrix - there is an N by N matrix, where N is the number of vertices in the graph. If there is an edge from some vertex x to some vertex y, then the element Mx,y is 1, otherwise it is 0. This makes it easier to find subgraphs, and to reverse graphs if needed.
  • Laplacian matrix or Kirchhoff matrix or Admittance matrix - is defined as degree matrix minus adjacency matrix and thus contains adjacency information and degree information about the vertices
  • Distance matrix - A symmetric N by N matrix an element Mx,y of which is the length of shortest path between x and y; if there is no such path Mx,y = infinity. It can be derived from powers of the Adjacency matrix.

Problems in graph theory

Problems about subgraphs

A common problem, called subgraph isomorphism problem, is finding subgraphs in a given graph. Many graph properties are hereditary, which means that a graph has a property if and only if all subgraphs have it too. For example a graph is planar if it contains neither the complete bipartite graph K3,3 (See Three cottage problem) nor the complete graph K5. Unfortunately, finding maximal subgraphs of a certain kind is often an NP-complete problem.

  • Finding the largest complete graph is called the clique problem (NP-complete)
  • Finding the largest independent set is called the independent set problem (NP-complete)

Another class of problems has to do with the extent to which various species and generalizations of graphs are determined by their point-deleted subgraphs, for example:

  • Reconstruction conjecture

Graph coloring

Many problems have to do with various ways of coloring graphs, for example:

  • The four-color theorem
  • The strong perfect graph theorem
  • The Erdős-Faber-Lovász conjecture (unsolved)
  • The total coloring conjecture (unsolved)
  • The list coloring conjecture (unsolved)

Route problems

  • Hamiltonian path and cycle problems
  • Seven Bridges of Königsberg
  • Minimum spanning tree
  • Steiner tree
  • Shortest path problem
  • Route inspection problem (also called the "Chinese Postman Problem")
  • Traveling salesman problem (NP-Complete)

Network flow

There are numerous problems arising especially from applications that have to do with various notions of flows in networks, for example:

  • Max flow min cut theorem

Visibility graph problems

  • Museum guard problem

Covering problems

Covering problems are specific instances of subgraph-finding problems, and they tend to be closely related to the clique problem or the independent set problem.

  • Set cover problem
  • Vertex cover problem

Applications

Applications of graph theory are primarily, but not exclusively, concerned with labeled graphs and various specializations of these.

Structures that can be represented as graphs are ubiquitous, and many problems of practical interest can be represented by graphs. The link structure of a website could be represented by a directed graph: the vertices are the web pages available at the website and a directed edge from page A to page B exists if and only if A contains a link to B. A similar approach can be taken to problems in travel, biology, computer chip design, and many other fields. The development of algorithms to handle graphs is therefore of major interest in computer science.

A graph structure can be extended by assigning a weight to each edge of the graph. Graphs with weights, or weighted graphs, are used to represent structures in which pairwise connections have some numerical values. For example if a graph represents a road network, the weights could represent the length of each road). A digraph with weighted edges in the context of graph theory is called a network.

Networks have many uses in the practical side of graph theory, network analysis (for example, to model and analyze traffic networks). Within network analysis, the definition of the term "network" varies, and may often refer to a simple graph.

Many applications of graph theory exist in the form of network analysis. These split broadly into two categories. Firstly, analysis to determine structural properties of a network, such as the distribution of vertex degrees and the diameter of the graph. A vast number of graph measures exist, and the production of useful ones for various domains remains an active area of research. Secondly, analysis to find a measurable quantity within the network, for example, for a transportation network, the level of vehicular flow within any portion of it.

Graph theory is also used to study molecules in chemistry and physics. In condensed matter physics, the three dimensional structure of complicated simulated atomic structures can be studied quantitatively by gathering statistics on graph-theoretic properties related to the topology of the atoms. For example, Franzblau's shortest-path (SP) rings.

    References

    • Harary, Frank, Graph Theory, Addison-Wesley, Reading, MA, 1969.

    See also

    • Gallery of named graphs
    • Glossary of graph theory
    • List of graph theory topics
    • Publications in graph theory

    Related topics

    • Conceptual graph
    • Data structure
    • Disjoint-set data structure
    • Entitative graph
    • Existential graph
    • Graph data structure
    • Graph coloring
    • Graph drawing
    • Logical graph
    • Loop
    • Null graph
    • Tree data structure

    Algorithms

    • Bellman-Ford algorithm
    • Dijkstra's algorithm
    • Ford-Fulkerson algorithm
    • Kruskal's algorithm
    • Nearest neighbour algorithm
    • Prim's algorithm

    Subareas

    • Algebraic graph theory
    • Geometric graph theory
    • Extremal graph theory
    • Metric graph theory
    • Probabilistic graph theory
    • Topological graph theory

    Related areas of mathematics

    • Combinatorics
    • Group theory
    • Knot theory
    • Ramsey theory

    Prominent graph theorists

    • Berge, Claude
    • Bollobás, Béla
    • Dirac, Gabriel Andrew
    • Erdős, Paul
    • Faudree, Ralph
    • Graham, Ronald
    • Harary, Frank
    • König, Denes
    • Lovász, László
    • Nešetřil, Jaroslav
    • Rényi, Alfréd
    • Robertson, Neil
    • Seymour, Paul
    • Thomas, Robin
    • Thomassen, Carsten
    • Turán, Pál
    • Tutte, W.T.

    External links

    • More people and publications at: Graph Theory White Pages
    Online textbooks
    • Graph Theory (1997/2005) by Reinhard Diestel
    • Graph Theory with Applications (1976) by Bondy and Murty
    • Phase Transitions in Combinatorial Optimization Problems, Section 3: Introduction to Graphs (2006) by Hartmann and Weigt
    Other resources
    • Graph theory tutorial
    • The compendium of algorithm visualisation sites
    • Challenging Benchmarks for Maximum Clique, Maximum Independent Set, Minimum Vertex Cover and Vertex Coloring
    • Image gallery no.1: Some real-life networks
    • Image gallery no.2: More real-life graphs
    • Graph links collection
    • Useful tools and Explanation
    • Grafos Spanish copyleft software
    • Source code for computing neighbor shells in particle systems under periodic boundary conditions
    • Graph Theory Resources
    • Weisstein, Eric W., Graph Theory at MathWorld., hosted by the makers of Mathematica[1]

    Search Term: "Graph_theory"
    graphs news and graphs articles

    Here's our top rated graphs links for the day:

    Kent Conrad 

    Washington Post - Nov 16 5:13 AM
    A fierce opponent of budget deficits, Conrad, 58, has been a persistent critic of the Bush administration's fiscal policies. His Senate Web site features a chart library, containing scores of graphs and tables, some titled "The Wrong Priorities," that Conrad uses to illustrate his dim view of the...
    Save

    Grab It! XP 
    Jumbo.com - Nov 16 9:17 AM
    Digitize graphs and charts quickly with this Excel-based spreadsheet software.
    Save

    Japanese technology enables instant tsunami alerts 
    Reuters via Yahoo! News - Nov 17 12:09 AM
    Hardly any Japanese felt the earthquake in the distant north Pacific this week, but anyone watching television saw a tsunami warning almost instantly and thousands evacuated to higher ground within minutes.
    Save

    Japanese tech enables instant tsunami alerts 
    ZDNet - 1 hour, 15 minutes ago
    Seismic activity in monitoring system's geographic range detected and evaluated within minutes.
    Save

    Get the facts you need to make the choice between Windows and Linux. Just click on the whitepaper of your choice to  
    Linux Today - Nov 16 11:50 PM
    "There are many visually informative monitoring programs for assessing the health of your computer environment.
    Save

    Thank you for viewing the graphs page graph paper. 

    graph
    grapha

     

    Ever wondered what others are searching for in relation to graphs? Now you can see.  Below is a listing of  what everyone else is searching for in regard to graphs.

    1. graph paper
    2. graphs
    3. graph
    4. line graph
    5. bar graph
    6. bar graphs
    7. printable graph paper
    8. create a graph
    9. misleading graphs
    10. circle graph
    11. free graph paper
    12. line graphs
    13. pie graph
    14. free printable graph paper
    15. pie graphs
    16. example of a bar graph
    17. types of graphs
    18. graph paper template
    19. circle graphs
    20. line graph example
    21. interpreting graphs
    22. charts and graphs
    23. knitting graph paper
    24. species graph
    25. stock market graphs
    26. blank graph paper
    27. card consolidation credit debt graph
    28. printable sheet of graph paper
    29. different types of graphs
    30. multiple line graphs
    31. pictograph graph
    32. free graph paper download
    33. stock graphs
    34. bar graph to print
    35. graph paper software
    36. interpret double bar graphs
    37. medical malpractice insurance graphs
    38. print graph paper
    39. polar graph paper
    40. articles with graphs
    41. climate graph
    42. graph software
    43. make a graph
    44. pictographs graphs
    45. card credit debt graph student
    46. misleading graph
    47. mutual fund graphs
    48. access graph chart vba
    49. coordinate graph
    50. graph art
    51. graph theory
    52. charts graphs
    53. climate graph of spain
    54. excel graphs
    55. graph of the american system of government
    56. graphs on alternative medicine
    57. how to read histogram graphs
    58. examples misleading graphs
    59. math graphs
    60. 5 types of graphs
    61. air pollution graphs
    62. divorce graphs
    63. double line graph
    64. create a bar graph
    65. double bar graphs
    66. forex graphs
    67. government spending graph
    68. graph crochet
    69. graphs on nuclear energy
    70. light spectrum, graphs
    71. make a bar graph
    72. make a line graph
    73. solar power graph
    74. spider graphs
    75. making graphs
    76. normal distribution graph
    77. picture graphs
    78. stock market crash of 1929 graphs
    79. comparative horizontal bar graphs in the current news
    80. print a piece of graph paper
    81. world time graph
    82. child obesity graphs
    83. examples of graphs
    84. graphs on food
    85. graphs on stem cell research
    86. michaelis-menton graph
    87. mitosis graph
    88. population graph
    89. suicide graphs
    90. world religion graph
    91. amortization calculator compare graph mortgage refinance
    92. charts2c graphs maps florida
    93. child obesity graph
    94. coordinate graph examples with variables
    95. deceptive graph
    96. depression graphs
    97. derivative payoff graphs
    98. kinds of graphs
    99. peyote graph paper
    100. position time graphs
    101. reading graphs
    102. skin graphs
    103. bad graph
    104. ecg graph paper
    105. graphs of job outlook for the medical field
    106. graphs on dogs
    107. line positioning graphs geography
    108. pictograph and picture graph
    109. population graphs
    110. reading data from circle graphs
    111. sheffield weather graphs
    112. welfare graphs
    113. asthma graphs
    114. create charts graphs
    115. cyprus graphs
    116. dollar demand and dollar price chart or graph
    117. mortgage loan graph va credit
    118. online graph paper
    119. science graphs
    120. world population graph
    121. bead graph paper
    122. charts2c graphs and maps about florida
    123. graph of religions in america
    124. graph paper roll
    125. graphs of traffic
    126. graphs on norway
    127. millimeter graph paper
    128. type of graph
    129. 30 year fixed mortgage rate graph
    130. aids graph
    131. climate graph of wales
    132. create a line graph
    133. data misrepresented in a graph
    134. deceptive graphs
    135. distance-time graph
    136. download free graph paper
    137. football graphs
    138. graph meiosis
    139. graph paper online
    140. graph paper printer
    141. graphs about the causes of anxiety disorders
    142. graphs of depression statistics
    143. how to make a bar graph
    144. m&m activities with circle graphs
    145. park city staging perfomance graphs
    146. picture graph
    147. promotion world seo tool google adsense graphs
    148. real life application of linear graph
    149. rise in oil prices graph
    150. teaching math pie graphs
    151. velocity-time graph
    152. weather graphs
    153. weight loss graph
    154. 3-d bar graphs with excel
    155. acceleration time graphs
    156. application of linear graphs
    157. centimeter graph paper
    158. crochet graphs
    159. graph laundering money
    160. graph of the savanna climate
    161. graphs crime rate of street light
    162. graphs on trees
    163. iraqi death rate + graph
    164. line graph examples
    165. linear graphs
    166. microsoft graph
    167. parabola graph
    168. personality testing graphs
    169. pictogram graph
    170. pollution charts and graphs in china
    171. recycling graphs
    172. signal flow graphs
    173. statistical graphs
    174. suicide rate graph
    175. white tigers endangered graph
    176. wine industry charts and graphs
    177. application of graph theory
    178. bank graphs
    179. best fit line graph
    180. dow jones historical graphs
    181. economic graphs
    182. foreign investment graphs
    183. gdp graph china
    184. graphs of recycling
    185. graphs of trigonometric functions
    186. how to make a graph
    187. mortgage rates graph
    188. skin cancer graphs
    189. smoking graphs
    190. teaching line graphs
    191. 3d pie graphs
    192. bar graphs histogram
    193. child graph obesity
    194. child obesity increas graph
    195. climate graphs
    196. czech republic graphs
    197. earnings graph
    198. elementary graphs pictograph bar graph
    199. graph nobel
    200. graph of pavlov classical conditioning
    201. graph patterns
    202. graph work schedule
    203. graphs + biology
    204. graphs for child obesity
    205. graphs ftse 100 index
    206. graphs of lines
    207. kids graphs
    208. lessons on graph elementary
    209. line graphs in science
    210. matching graph coloring
    211. mitosis v meiosis graph
    212. multiple bar graph
    213. nature vs nurture graphs
    214. obesity graphs
    215. pollution graphs
    216. print graphs of the weather
    217. step graph
    218. yellow graph paper
    219. a graph on anxiety disorders
    220. bmi graph
    221. circle graphs on new york city
    222. climatic graphs
    223. cpi graph
    224. create graph
    225. creating bar graphs
    226. el nino graphs
    227. example line graph
    228. examples of bar graphs
    229. free online graph paper
    230. graph coloring
    231. graph inventory homes
    232. graph lessons
    233. graph of multiple sclerosis
    234. graph on deaths on liver cancer
    235. graph on us illegal immigration
    236. graph oxygen solubility versus temperature
    237. graph patterns for cross stitch
    238. graphs and charts on personality tests results
    239. graphs of visibility+robot+labview
    240. graphs on child obesity
    241. graphs on eating disorders
    242. graphs raw foods diet
    243. graphs using single subject research
    244. greenland climate graph
    245. how to graph an equation
    246. isometric graph paper
    247. knittng graph paper free
    248. logarithmic graph
    249. matching application graph coloring
    250. middle school/teaching double bar graphs
    251. ordered pairs or coordinate graphs
    252. rocket motor burn plots graphs
    253. rocket thrust plot graph
    254. social anxiety disorder graphs
    255. supply demand graph
    256. time distance graphs
    257. wind direction graphs for hyderabad
    258. advanced excel graphs
    259. auckland savings bank loan calculator graph
    260. bad graphs
    261. bar graph on recycling
    262. blank graphs
    263. bone graph
    264. charles law graph
    265. double bar graph
    266. free filet crochet graphs
    267. free graph index market stock
    268. glaucoma graph
    269. global positioning system graph
    270. global warming graph
    271. graph measurements on three axis
    272. graph on us immigration
    273. graph with four odd vertices
    274. graphs and charts on human papilloma virus
    275. graphs on government spending
    276. graphs or charts in latin american media
    277. graphs or charts on borderline personality
    278. housing market graphs
    279. hurricane andrew wind line graph
    280. india climate graph
    281. interpreting graphs test questions
    282. job matching graph coloring
    283. m&m activity with circle graphs
    284. mortgage loan graph va money
    285. mortgage rate graph
    286. normal distribution graphs
    287. office safety graphs
    288. pictures of graphs
    289. population graph of champagne ardenne
    290. radar graphs
    291. roxio graph notify
    292. survey results in graphs
    293. teaching circle graphs
    294. temperature graph
    295. tunisian crochet graphs
    296. weather graph
    297. weight loss graph online
    298. what is a line graph
    299. 3 dimensional graph
    300. a graph
    301. apple products graph
    302. articles with bad graphs
    303. broken line graph
    304. card credit student debt graph
    305. create a computer generated bar graph
    306. directed graph c++
    307. display graph in sharepoint
    308. distance time graph
    309. divorce graph
    310. downloadable graph calculators
    311. european union graph
    312. free graphs
    313. game graph
    314. glass ceiling graphs
    315. global warming graphs
    316. graph and paper
    317. graph of global deforestation
    318. graph on sds protesting
    319. graph tech
    320. graphs about rainforests
    321. graphs and charts
    322. graphs and charts of anxiety disorders
    323. graphs from yhe dallas morning news
    324. graphs more/less 2nd grade
    325. graphs of eating disorders
    326. graphs of organic farming
    327. graphs sierra leone
    328. humid subtropical graphs
    329. hyperbola graph
    330. knitting graphs free
    331. line graph of gas prices
    332. linear line graphs
    333. make a graph online
    334. making circle graphs
    335. marketing graphs
    336. misleading bar graphs
    337. national debt graphs
    338. obesity fast food graphs
    339. ogive + graph
    340. power vs resistance graph
    341. recycling waste graph
    342. religious graphs
    343. slope of mass/volume graph
    344. spine, graph
    345. the graph of y=ax?+k
    346. thermometer goal graph
    347. vans graph
    348. velocity vs time graph
    349. what is a exponential graph
    350. world religions graph
    351. 1. as evident from the graph
    352. aids graph hiv
    353. bar graphs of cwd in deer
    354. black history month graphs and stats
    355. blank graph
    356. blank sudoku graphs
    357. carrying capacity graph
    358. champagne ardenne population graph
    359. chart diagrams or graphs on world hunger
    360. charts & graphs
    361. charts graphs on air pollution
    362. child obesity charts and graphs and visuals
    363. computer programmer earning represented on a graph
    364. credit card debt graph
    365. download excel line graph
    366. downloading templates for a work schedule bar graph
    367. ecconomic graph
    368. federal data homes sold per year graphs and charts
    369. forex graph
    370. free program to make graphs
    371. free semi log graph paper
    372. frequency distribution graphs
    373. fry graph
    374. function and graph
    375. generalized anxiety disorder graph
    376. genetics graph
    377. geothermal energy graphs
    378. graph hair loss treatment
    379. graph of atlantic hurricanes in the past fifty years
    380. graph of births
    381. graph of penny coin decrease
    382. graph on bronchitis
    383. graph on gamecube, xbox and playstation 2
    384. graph on statistics on anxiety disorders
    385. graph paper art
    386. graph paper download
    387. graph paper templates
    388. graph paper to print
    389. graph ruler
    390. graphs and charts on heart disease
    391. graphs enzyme inhibition
    392. graphs on childhood obesity
    393. graphs on prices of cars
    394. graphs on stds
    395. graphs on the increase of tanning in tanning beds
    396. graphs traumatic brain injury
    397. graphs with x intercepts
    398. grassland climate graphs
    399. help sketching graphs of functions
    400. how to graph equations
    401. hunger bar graph
    402. hydrogen fuel cell efficiency graph
    403. mid-term election oil price graph
    404. misleading circle graphs
    405. nonlinear graphs
    406. photo graph
    407. pictures graphs anxiety disorders
    408. predator/prey graph
    409. printable graphs
    410. soccer graphs
    411. statistics of castration graphs
    412. stem and leaf graph related to drug abuse
    413. steroid graphs
    414. stock market graph
    415. straight line graphs
    416. temperature vs solubility graph
    417. triangular graph paper
    418. us economy graphs
    419. whale graphs
    420. what is a climatic graphs
    421. windows task managaer cpu use graph green red
    422. 'email' graphs statistics charts data
    423. a graph coloring algorithm for machine scheduling problems
    424. a graph on tourism in dubai
    425. acetylene flammability graphs
    426. adhd graphs
    427. adsl2+ transmission distance graph
    428. air graph indoor pollution
    429. bead crochet graphs
    430. beer lambert law graphs
    431. bipolar disorder graph
    432. box and whiskers graph
    433. broadband data or statistics or graphs
    434. bubble graphs
    435. chart weight loss graphs
    436. chocolate graph
    437. circulatory system graph
    438. climate graphs for the amazon rainforest
    439. colla graph
    440. customer value chain graph example
    441. data or statistics or graphs music downloads
    442. data or statistics or graphs p2p
    443. different kinds of graph
    444. distance vs time graph
    445. drunk driving accidents and graphs
    446. earth temperature graph
    447. enron graphs
    448. entomologist salary graph
    449. financial report graph
    450. free cross stitch graphs
    451. graph about the causes of anxiety disorders
    452. graph below, maintaining market share is
    453. graph drawing
    454. graph insomnia
    455. graph it
    456. graph of great depression
    457. graph of statistics from the great depression
    458. graph of us crime rates
    459. graph on genetic testing
    460. graph seed extract
    461. graph skills
    462. graphing data on log log graphs
    463. graphs comparing employment to illegal legal imm
    464. graphs for students
    465. graphs in articles
    466. graphs in the news
    467. graphs in the newspaper
    468. graphs of manatees
    469. graphs of religious wars
    470. graphs of the immigrant
    471. graphs on aids
    472. hawaii pie graph on imports and exports
    473. health care cost graph
    474. health care cost graphs
    475. healthcare costs in us graph
    476. how to read graphs and charts
    477. human population graphs
    478. internet usage graph
    479. japan graph
    480. make charts and graphs
    481. make own graphs
    482. make your own coordinate graph
    483. mathematics parrallel, perpendicular lines graph
    484. misleading charts graphs
    485. music piracy graph
    486. otec graph
    487. personal debt graph
    488. plot graph rising action crisis
    489. polar graph types
    490. population graphs russia
    491. probability graph paper
    492. rainforest graphs charts
    493. rosette beading graph paper
    494. scatter graphs
    495. science pie graph
    496. single subject research graphs
    497. sites about graphs in new york city
    498. skin graph
    499. skin graph surgery
    500. snow leopard population graphs