关键词不能为空

当前您在: 主页 > 英语 >

文献翻译模板

作者:高考题库网
来源:https://www.bjmy2z.cn/gaokao
2021-02-01 21:51
tags:

-

2021年2月1日发(作者:白马王子英文)




西安科技大学


< /p>


毕业设计


(


论文


)


文献翻译























图论知识在计算机科学中的应用研究与实现



院、系


(



)












专业及班级




信息与计算科学


080
















导教

















2012



2
















































英文



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. A


and a collection of edges that connect pairs of vertices. A graph may be undirected,


meaning


that


there


is


no


distinction


between


the


two


vertices


associated


with


each


edge, or its edges may be directed from one vertex to another; see graph (mathematics)


for more detailed definitions and for other variations in the types of graphs that are


commonly


considered.


The


graphs


studied


in


graph


theory


should


not


be


confused


with graphs of functions or other kinds of graphs.


Graphs are one of the prime objects of study in Discrete Mathematics. Refer to


Glossary of graph theory for basic definitions in graph theory.


History


The K?


nigsberg Bridge problem


The paper written by


Leonhard Euler on the Seven Bridges of K?


nigsberg and


published in 1736 is regarded as the first paper in the history of graph theory.


[1]


This


paper, as well as the one written by Vandermonde on the knight problem, carried on


with


the


analysis


situs


initiated


by


Leibniz.


Euler's


formula


relating


the


number


of


edges,


vertices,


and


faces


of


a


convex


polyhedron


was


studied


and


generalized


by


Cauchy


[2]


and L'Huillier,


[3]


and is at the origin of topology.


More


than


one


century


after


Euler's


paper


on


the


bridges


of


K?


nigsberg


and


while


Listing


introduced


topology,


Cayley


was


led


by


the


study


of


particular


analytical forms arising from differential calculus to study a particular class of graphs,


the


trees.


This


study


had


many


implications


in


theoretical


chemistry.


The


involved


techniques mainly concerned the enumeration of graphs having particular properties.


Enumerative graph theory then rose from the results of Cayley and the fundamental


results published by Pó


lya between 1935 and 1937 and the generalization of these by


De Bruijn in 1959. Cayley linked his results on trees with the contemporary studies of


chemical composition.


[4]


The fusion of the ideas coming from mathematics with those


coming from chemistry is at the origin of a part of the standard terminology of graph


theory.




In particular, the term


in


1878


in


Nature,


where


he


draws


an


analogy


between



invariants


and



[5]




precisely identical with a Kekulé


an diagram or chemicograph. [...] I give a rule


for the geometrical multiplication of graphs, i.e. for constructing a graph to the


product of in- or co- variants whose separate graphs are given. [...]


in the original).



One


of


the


most


famous


and


productive


problems


of


graph


theory


is


the


four


color


problem:



it


true


that


any


map


drawn


in


the


plane


may


have


its


regions


colored with four colors, in such a way that any two regions having a common border


have different colors?


its first written record is in a letter of De Morgan addressed to Hamilton the same year.


Many incorrect proofs have been proposed, including those by Cayley,


Kempe, and


others. The study and the generalization of this problem by Tait, Heawood, Ramsey


and Hadwiger led to the study of the colorings of the graphs embedded on surfaces


with


arbitrary


genus.


Tait's


reformulation


generated


a


new


class


of


problems,


the


factorization


problems,


particularly


studied


by


Petersen


and


K


?


nig.


The


works


of


Ramsey on colorations and more specially the results obtained by Turá


n in 1941 was


at the origin of another branch of graph theory, extremal graph theory.


The


four


color


problem


remained


unsolved


for


more


than


a


century.


In


1969


Heinrich Heesch published a method


for solving the problem using computers.


[6]


A


computer-aided


proof


produced


in


1976


by


Kenneth


Appel


and


Wolfgang


Haken


makes fundamental use of the notion of


[7][8]


The


proof involved checking the properties of 1,936 configurations by computer, and was


not fully accepted at the time due to its complexity. A simpler proof considering only


633 configurations was given twenty years later by Robertson, Seymour, Sanders and


Thomas.


[9]



The autonomous development of topology from 1860 and 1930 fertilized graph


theory


back


through


the


works


of


Jordan,


Kuratowski


and


Whitney.


Another


important


factor


of


common


development


of


graph


theory


and


topology


came


from


the use of the techniques of modern algebra. The first example of such a use comes


from


the


work


of


the


physicist


Gustav


Kirchhoff,


who


published


in


1845


his


Kirchhoff's circuit laws for calculating the voltage and current in electric circuits.




The introduction of probabilistic methods in graph theory, especially in the study


of Erd


?


s and Ré


nyi of the asymptotic probability of graph connectivity, gave rise to


yet another branch, known as random graph theory, which has been a fruitful source


of graph-theoretic results.


Drawing graphs


Main article: Graph drawing


Graphs are represented graphically by drawing a dot or circle 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-visual 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.


[edit] 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


for


some


applications


but


can consume huge amounts of memory.


List structures


Incidence list



The edges are represented by an array containing pairs (tuples if directed)


of


vertices


(that


the


edge


connects)


and


possibly


weight


and


other


data.


Vertices connected by an edge are said to be adjacent.



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.



-


-


-


-


-


-


-


-



本文更新与2021-02-01 21:51,由作者提供,不代表本网站立场,转载请注明出处:https://www.bjmy2z.cn/gaokao/595344.html

文献翻译模板的相关文章

  • 爱心与尊严的高中作文题库

    1.关于爱心和尊严的作文八百字 我们不必怀疑富翁的捐助,毕竟普施爱心,善莫大焉,它是一 种美;我们也不必指责苛求受捐者的冷漠的拒绝,因为人总是有尊 严的,这也是一种美。

    小学作文
  • 爱心与尊严高中作文题库

    1.关于爱心和尊严的作文八百字 我们不必怀疑富翁的捐助,毕竟普施爱心,善莫大焉,它是一 种美;我们也不必指责苛求受捐者的冷漠的拒绝,因为人总是有尊 严的,这也是一种美。

    小学作文
  • 爱心与尊重的作文题库

    1.作文关爱与尊重议论文 如果说没有爱就没有教育的话,那么离开了尊重同样也谈不上教育。 因为每一位孩子都渴望得到他人的尊重,尤其是教师的尊重。可是在现实生活中,不时会有

    小学作文
  • 爱心责任100字作文题库

    1.有关爱心,坚持,责任的作文题库各三个 一则150字左右 (要事例) “胜不骄,败不馁”这句话我常听外婆说起。 这句名言的意思是说胜利了抄不骄傲,失败了不气馁。我真正体会到它

    小学作文
  • 爱心责任心的作文题库

    1.有关爱心,坚持,责任的作文题库各三个 一则150字左右 (要事例) “胜不骄,败不馁”这句话我常听外婆说起。 这句名言的意思是说胜利了抄不骄傲,失败了不气馁。我真正体会到它

    小学作文
  • 爱心责任作文题库

    1.有关爱心,坚持,责任的作文题库各三个 一则150字左右 (要事例) “胜不骄,败不馁”这句话我常听外婆说起。 这句名言的意思是说胜利了抄不骄傲,失败了不气馁。我真正体会到它

    小学作文