Complex networks: an algorithmic perspective
"Network science is an emerging field of study that encompasses mathematics, computer science, physics, and engineering. An important issue in the study of complex networks is to understand the collective behavior of the elements of these networks. Although the results from graph theory have pr...
Gespeichert in:
1. Verfasser: | |
---|---|
Format: | Buch |
Sprache: | English |
Veröffentlicht: |
Boca Raton
CRC Press
2017
|
Ausgabe: | First issued in paperback |
Schlagworte: | |
Online-Zugang: | Inhaltsverzeichnis |
Zusammenfassung: | "Network science is an emerging field of study that encompasses mathematics, computer science, physics, and engineering. An important issue in the study of complex networks is to understand the collective behavior of the elements of these networks. Although the results from graph theory have proven to be powerful in investigating the structures of complex networks, there are few books on the algorithmic aspects of complex network analysis. Filling this need, this book supplies the basic theoretical algorithmic and graph theoretic knowledge needed by every researcher of complex networks".. |
Beschreibung: | xxv, 294 Seiten Illustrationen 24 cm |
ISBN: | 9781138033894 |
Internformat
MARC
LEADER | 00000nam a2200000 c 4500 | ||
---|---|---|---|
001 | BV045107283 | ||
003 | DE-604 | ||
005 | 20180830 | ||
007 | t | ||
008 | 180730s2017 xxua||| |||| 00||| eng d | ||
020 | |a 9781138033894 |c hbk |9 978-1-138-03389-4 | ||
035 | |a (OCoLC)1050945303 | ||
035 | |a (DE-599)BVBBV045107283 | ||
040 | |a DE-604 |b ger |e rda | ||
041 | 0 | |a eng | |
044 | |a xxu |c XD-US | ||
049 | |a DE-739 | ||
050 | 0 | |a T57 | |
082 | 0 | |a 003/.72 |2 23 | |
084 | |a SK 890 |0 (DE-625)143267: |2 rvk | ||
084 | |a ST 134 |0 (DE-625)143590: |2 rvk | ||
100 | 1 | |a Erciyes, Kayhan |e Verfasser |0 (DE-588)109591362X |4 aut | |
245 | 1 | 0 | |a Complex networks |b an algorithmic perspective |c Kayhan Erciyes |
250 | |a First issued in paperback | ||
264 | 1 | |a Boca Raton |b CRC Press |c 2017 | |
300 | |a xxv, 294 Seiten |b Illustrationen |c 24 cm | ||
336 | |b txt |2 rdacontent | ||
337 | |b n |2 rdamedia | ||
338 | |b nc |2 rdacarrier | ||
520 | |a "Network science is an emerging field of study that encompasses mathematics, computer science, physics, and engineering. An important issue in the study of complex networks is to understand the collective behavior of the elements of these networks. Although the results from graph theory have proven to be powerful in investigating the structures of complex networks, there are few books on the algorithmic aspects of complex network analysis. Filling this need, this book supplies the basic theoretical algorithmic and graph theoretic knowledge needed by every researcher of complex networks".. | ||
650 | 7 | |a COMPUTERS / Networking / General |2 bisacsh | |
650 | 7 | |a COMPUTERS / Operating Systems / General |2 bisacsh | |
650 | 7 | |a MATHEMATICS / Arithmetic |2 bisacsh | |
650 | 4 | |a Mathematik | |
650 | 4 | |a System analysis |x Mathematics | |
650 | 4 | |a Computational complexity | |
650 | 4 | |a Algorithms | |
650 | 4 | |a COMPUTERS / Networking / General | |
650 | 4 | |a COMPUTERS / Operating Systems / General | |
650 | 4 | |a MATHEMATICS / Arithmetic | |
650 | 0 | 7 | |a Netzwerk |g Graphentheorie |0 (DE-588)4705155-3 |2 gnd |9 rswk-swf |
650 | 0 | 7 | |a Algorithmus |0 (DE-588)4001183-5 |2 gnd |9 rswk-swf |
689 | 0 | 0 | |a Netzwerk |g Graphentheorie |0 (DE-588)4705155-3 |D s |
689 | 0 | 1 | |a Algorithmus |0 (DE-588)4001183-5 |D s |
689 | 0 | |5 DE-604 | |
856 | 4 | 2 | |m Digitalisierung UB Passau - ADAM Catalogue Enrichment |q application/pdf |u http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=030497717&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |3 Inhaltsverzeichnis |
999 | |a oai:aleph.bib-bvb.de:BVB01-030497717 |
Datensatz im Suchindex
_version_ | 1804178745727123456 |
---|---|
adam_text | Contents
List of Figures....................................................... xv
List of Tables....................................................... xxi
Preface.............................................................xxiii
1 Introduction........................................................ 1
1.1 Overview....................................................... 1
1.2 Real-world Complex Networks ................................... 2
L2.1 Technological Networks.................................. 2
L2.2 Information Networks.................................... 3
L2.3 Social Networks......................................... 3
L2.4 Biological Networks .................................... 4
1.3 Topological Properties of Complex Networks..................... 5
1.4 Algorithmic Challenges ........................................ 6
1.5 Outline of the Book ........................................... 7
References ........................................................ 7
SECTION I: BACKGROUND 9
2 Graph Theory....................................................... 11
2.1 Basics........................................................ 11
2.2 Subgraphs .................................................... 12
2.3 Graph Isomorphism ......................................... . 13
2.4 Types of Graphs .............................................. 14
2.5 Paths and Cycles.............................................. 15
2.6 Connectivity ................................................. 16
2.7 Trees ........................................................ 18
2.8 Graph Representations......................................... 19
vii
viii ■ Contents
2.9 Spectral Properties of Graphs ................................... 19
2.9.1 Eigenvalues and Eigenvectors............................. 20
2.9.2 The Laplacian Matrix..................................... 21
2.10 Chapter Notes .................................................. 22
References ........................................................... 24
3 Algorithms and Complexity............................................ 27
3.1 Introduction..................................................... 27
3.2 Time Complexity.................................................. 29
3.3 Recurrences...................................................... 31
3.4 Divide and Conquer Algorithms.................................... 32
3.5 Graph Algorithms ................................................ 33
3.5.1 Breadth-first Search .................................... 34
3.5.2 Depth-first Search....................................... 36
3.6 Dynamic Programming.............................................. 37
3.7 Greedy Algorithms................................................ 39
3.8 NP-complete Problems............................................. 41
3.8.1 NP Completeness.......................................... 41
3.8.2 Reductions............................................... 43
3.8.2.1 Satisfiability Problems......................... 44
3.8.2.2 3-SAT to Independent Set........................ 45
3.8.2.3 Independent Set to Vertex Cover................. 45
3.8.2.4 Independent Set to Clique....................... 46
3.9 Coping with NP Completeness...................................... 48
3.9.1 Backtracking............................................. 48
3.9.2 Branch and Bound......................................... 49
3.10 Approximation Algorithms........................................ 50
3.11 Parallel Algorithms............................................. 53
3.11.1 Architectural Constraints................................ 54
3.11.2 Example Algorithms....................................... 54
3.12 Distributed Systems and Algorithms.............................. 57
3.13 Chapter Notes .................................................. 59
References ........................................................... 61
4 Analysis of Complex Networks.......................................... 63
4.1 Introduction..................................................... 63
4.2 Vertex Degrees................................................... 64
4.2.1 Degree Sequence.......................................... 65
4.2.2 Degree Distribution...................................... 66
4.3 Communities...................................................... 67
4.3.1 Clustering Coefficient................................... 68
4.4 The Matching Index .............................................. 70
4.5 Centrality....................................................... 70
4.6 Network Motifs................................................... 71
4.7 Models ......................................................... 72
Contents ■ ix
4.7.1 Classical Random Networks............................... 72
4.7.2 Small World Networks.................................... 72
4.7.3 Scale-Free Networks..................................... 73
4.8 Chapter Notes ................................................. 75
References ......................................................... 77
SECTION II: ALGORITHMS 79
5 Distance and Centrality.............................................. 81
5.1 Introduction.................................................. 81
5.2 Finding Distances ............................................. 81
5.2.1 Average Distance........................................ 83
5.2.2 Dijkstra’s Single Source Shortest Paths Algorithm....... 83
5.2.3 Floyd-Warshall All Pairs Shortest Paths Algorithm....... 84
5.3 Centrality..................................................... 87
5.3.1 Degree Centrality....................................... 87
5.3.1.1 A Distributed Algorithm for -hop Degree Cen-
trality ................................................ 89
5.3.2 Closeness Centrality.................................... 91
5.3.3 Stress Centrality....................................... 92
5.3.4 Betweenness Centrality.................................. 93
5.3.4.1 Newman’s Algorithm............................. 94
5.3.4.2 Brandes’ Algorithm............................. 95
5.3.5 Eigenvalue Centrality................................... 96
5.4 Chapter Notes ................................................. 97
References ......................................................... 99
6 Special Subgraphs................................................... 101
6.1 Introduction.................................................. 101
6.2 Maximal Independent Sets...................................... 102
6.3 Dominating Sets .............................................. 103
6.3.1 A Greedy MDS Algorithm................................. 105
6.3.2 Guha-Khuller First MCDS Algorithm...................... 106
6.3.3 Guha-Khuller Second MCDS Algorithm..................... 106
6.4 Matching...................................................... 108
6.4.1 A Maximal Unweighted Matching Algorithm................ 109
6.4.2 A Maximal Weighted Matching Algorithm.................. 109
6.5 Vertex Cover.................................................. 110
6.5.1 A Minimal Connected Vertex Cover Algorithm............. 112
6.5.2 A Minimal Weighted Vertex Cover Algorithm.............. 113
6.6 A Distributed Algorithm for MWVC Construction ................ 114
6.7 Chapter Notes ................................................ 116
References ........................................................ 118
121
121
122
123
127
132
132
134
137
138
141
143
143
144
145
147
151
152
154
155
156
157
158
159
160
160
161
162
164
167
169
169
170
172
173
174
174
174
175
176
178
179
180
■ Contents
Data Clustering............................
7.1 Introduction.........................
7.2 Types of Data Clustering.............
7.3 Agglomerative Hierarchical Clustering
7.4 ¿-means Algorithm....................
7.5 Nearest Neighbor Algorithm...........
7.6 Fuzzy Clustering.....................
7.7 Density-based Clustering.............
7.8 Parallel Data Clustering ............
7.9 Chapter Notes ...................
References ................................
Graph-based Clustering.....................
8.1 Introduction.........................
8.2 Graph Partitioning ..................
8.2.1 BFS-based Partitioning........
8.2.2 Kemighan-Lin Algorithm . . .
8.2.3 Spectral Bisection............
8.2.4 Multi-level Partitioning......
8.2.5 Parallel Partitioning.........
8.3 Graph Clustering.....................
8.3.1 MST-based Clustering..........
8.3.2 Clustering with Clusterheads . .
8.4 Discovery of Dense Subgraphs.........
8.4.1 Definitions...................
8.4.2 Clique Algorithms.............
8.4.2.1 The First Algorithm .
8.4.2.2 The Second Algorithm
8.4.3 ¿-core Algorithm..............
8.5 Chapter Notes .......................
References ................................
Network Motif Discovery....................
9.1 Introduction.........................
9.2 Network Motifs.......................
9.2.1 Measures of Motif Significance
9.2.2 Generating Null Models ....
9.2.3 Hardness of Motif Discovery . .
9.3 Subgraph Isomorphism.................
9.3.1 Vertex Invariants.............
9.3.2 Algorithms....................
9.3.2.1 Ullman’s Algorithm .
9.3.2.2 Nauty Algorithm . .
9.3.2.3 VF2 Algorithm . . .
9.3.2.4 BM1 Algorithm . . .
Contents ■ xi
9.4 Motif Discovery Algorithms................................... 181
9.4.1 Exact Census Algorithms............................... 182
9.4.1.1 Mfinder Algorithm............................ 182
9.4.1.2 Enumerate Subgraphs (ESU) Algorithm.......... 183
9.4.1.3 Grochow and Kellis Algorithm................. 184
9.4.1.4 Kavosh Algorithm............................. 186
9.4.1.5 MODA......................................... 188
9.4.2 Approximate Algorithms with Sampling.................. 190
9.4.2.1 Mfinder with Sampling........................ 191
9.4.2.2 Randomized ESU Algorithm..................... 192
9.4.2.3 MODA with Sampling........................... 194
9.5 Chapter Notes ............................................... 194
References ....................................................... 197
SECTION III:APPLICATIONS 201
10 Protein Interaction Networks........................................203
10.1 Introduction..................................................203
10.2 Topological Properties of PPI Networks........................204
10.3 Detection of Protein Complexes................................206
10.3.1 Highly Connected Subgraphs Algorithm...................206
10.3.2 Restricted Neighborhood Search Algorithm...............207
10.3.3 Molecular Complex Detection Algorithm..................208
10.3.4 Markov Clustering Algorithm............................209
10.4 Network Motifs in PPI Networks ...............................211
10.5 Network Alignment ............................................214
10.5.1 Quality of the Alignment . . ..........................216
10.5.1.1 Topological Similarity........................216
10.5.1.2 Node Similarity...............................216
10.5.2 Algorithms.............................................217
10.5.2.1 PathBLAST.....................................217
10.5.2.2 MaWIsh........................................217
10.5.2.3 IsoRank.......................................218
10.5.2.4 GRAAL.........................................219
10.5.2.5 Recent Algorithms.............................220
10.6 Chapter Notes ................................................220
References .................................................... 223 11
11 Social Networks.....................................................227
11.1 Introduction..................................................227
11.2 Relationships.................................................228
11.2.1 Homophily...............................................228
11.2.2 Positive and Negative Relations.........................229
11.2.3 Structural Balance......................................230
11.3 Equivalence...................................................232
xii ■ Contents
11.4 Community Detection Algorithms...................................233
11.4.1 Edge Betweenness-based Algorithm..........................233
11.4.2 Resistor Networks.........................................237
11.4.3 Random Walk Centrality....................................238
11.4.4 Modularity-based Algorithm ...............................239
11.5 Chapter Notes ...................................................241
References ...........................................................244
12 The Internet and the Web..............................................245
12.1 Introduction.....................................................245
12.2 The Internet.....................................................245
12.2.1 Services..................................................246
12.2.1.1 Services of Connection..........................246
12.2.1.2 Circuit and Packet Switching....................247
12.2.1.3 Internet Protocol Suite.........................247
12.2.2 Analysis .................................................248
12.3 The Web ........................................................ 249
12.3.1 The Web Graph.............................................250
12.3.1.1 Properties......................................251
12.3.1.2 Evolving Model..................................253
12.3.1.3 Copying Model...................................253
12.3.1.4 Growthrdeletion Model...........................254
12.3.1.5 Multi-layer Model........................... 254
12.3.1.6 Cyber Community Detection.......................255
12.3.2 Link Analysis.............................................256
12.3.2.1 Hubs and Authorities............................256
12.3.2.2 Page Rank Algorithm.............................259
12.4 Chapter Notes ................................................. 263
References ...........................................................265
13 Ad hoc Wireless Networks .............................................269
13.1 Introduction.....................................................269
13.2 Clustering Algorithms .......................................... 271
13.2.1 Lowest-ID Algorithm.......................................271
13.2.2 Dominating Set-based Clustering...........................273
13.2.3 Spanning Tree-based Clustering............................275
13.3 Mobile Social Networks ..........................................277
13.3.1 Architecture............................................ 278
13.3.2 Community Detection.......................................278
13.3.3 Middleware................................................281
13.3.3.1 MobiSoC.........................................282
13.3.3.2 MobiClique......................................282
13.3.3.3 SAMOA...........................................283
13.3.3.4 Yarta...........................................284
13.4 Chapter Notes .................................................. 285
Contents ■ xiii
References
287
Index
291
|
any_adam_object | 1 |
author | Erciyes, Kayhan |
author_GND | (DE-588)109591362X |
author_facet | Erciyes, Kayhan |
author_role | aut |
author_sort | Erciyes, Kayhan |
author_variant | k e ke |
building | Verbundindex |
bvnumber | BV045107283 |
callnumber-first | T - Technology |
callnumber-label | T57 |
callnumber-raw | T57 |
callnumber-search | T57 |
callnumber-sort | T 257 |
callnumber-subject | T - General Technology |
classification_rvk | SK 890 ST 134 |
ctrlnum | (OCoLC)1050945303 (DE-599)BVBBV045107283 |
dewey-full | 003/.72 |
dewey-hundreds | 000 - Computer science, information, general works |
dewey-ones | 003 - Systems |
dewey-raw | 003/.72 |
dewey-search | 003/.72 |
dewey-sort | 13 272 |
dewey-tens | 000 - Computer science, information, general works |
discipline | Informatik Mathematik |
edition | First issued in paperback |
format | Book |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>02587nam a2200529 c 4500</leader><controlfield tag="001">BV045107283</controlfield><controlfield tag="003">DE-604</controlfield><controlfield tag="005">20180830 </controlfield><controlfield tag="007">t</controlfield><controlfield tag="008">180730s2017 xxua||| |||| 00||| eng d</controlfield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9781138033894</subfield><subfield code="c">hbk</subfield><subfield code="9">978-1-138-03389-4</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)1050945303</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(DE-599)BVBBV045107283</subfield></datafield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">DE-604</subfield><subfield code="b">ger</subfield><subfield code="e">rda</subfield></datafield><datafield tag="041" ind1="0" ind2=" "><subfield code="a">eng</subfield></datafield><datafield tag="044" ind1=" " ind2=" "><subfield code="a">xxu</subfield><subfield code="c">XD-US</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-739</subfield></datafield><datafield tag="050" ind1=" " ind2="0"><subfield code="a">T57</subfield></datafield><datafield tag="082" ind1="0" ind2=" "><subfield code="a">003/.72</subfield><subfield code="2">23</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">SK 890</subfield><subfield code="0">(DE-625)143267:</subfield><subfield code="2">rvk</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">ST 134</subfield><subfield code="0">(DE-625)143590:</subfield><subfield code="2">rvk</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Erciyes, Kayhan</subfield><subfield code="e">Verfasser</subfield><subfield code="0">(DE-588)109591362X</subfield><subfield code="4">aut</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">Complex networks</subfield><subfield code="b">an algorithmic perspective</subfield><subfield code="c">Kayhan Erciyes</subfield></datafield><datafield tag="250" ind1=" " ind2=" "><subfield code="a">First issued in paperback</subfield></datafield><datafield tag="264" ind1=" " ind2="1"><subfield code="a">Boca Raton</subfield><subfield code="b">CRC Press</subfield><subfield code="c">2017</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">xxv, 294 Seiten</subfield><subfield code="b">Illustrationen</subfield><subfield code="c">24 cm</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="b">txt</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="b">n</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="b">nc</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="520" ind1=" " ind2=" "><subfield code="a">"Network science is an emerging field of study that encompasses mathematics, computer science, physics, and engineering. An important issue in the study of complex networks is to understand the collective behavior of the elements of these networks. Although the results from graph theory have proven to be powerful in investigating the structures of complex networks, there are few books on the algorithmic aspects of complex network analysis. Filling this need, this book supplies the basic theoretical algorithmic and graph theoretic knowledge needed by every researcher of complex networks"..</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">COMPUTERS / Networking / General</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">COMPUTERS / Operating Systems / General</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">MATHEMATICS / Arithmetic</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="650" ind1=" " ind2="4"><subfield code="a">Mathematik</subfield></datafield><datafield tag="650" ind1=" " ind2="4"><subfield code="a">System analysis</subfield><subfield code="x">Mathematics</subfield></datafield><datafield tag="650" ind1=" " ind2="4"><subfield code="a">Computational complexity</subfield></datafield><datafield tag="650" ind1=" " ind2="4"><subfield code="a">Algorithms</subfield></datafield><datafield tag="650" ind1=" " ind2="4"><subfield code="a">COMPUTERS / Networking / General</subfield></datafield><datafield tag="650" ind1=" " ind2="4"><subfield code="a">COMPUTERS / Operating Systems / General</subfield></datafield><datafield tag="650" ind1=" " ind2="4"><subfield code="a">MATHEMATICS / Arithmetic</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">Netzwerk</subfield><subfield code="g">Graphentheorie</subfield><subfield code="0">(DE-588)4705155-3</subfield><subfield code="2">gnd</subfield><subfield code="9">rswk-swf</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">Algorithmus</subfield><subfield code="0">(DE-588)4001183-5</subfield><subfield code="2">gnd</subfield><subfield code="9">rswk-swf</subfield></datafield><datafield tag="689" ind1="0" ind2="0"><subfield code="a">Netzwerk</subfield><subfield code="g">Graphentheorie</subfield><subfield code="0">(DE-588)4705155-3</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="0" ind2="1"><subfield code="a">Algorithmus</subfield><subfield code="0">(DE-588)4001183-5</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="0" ind2=" "><subfield code="5">DE-604</subfield></datafield><datafield tag="856" ind1="4" ind2="2"><subfield code="m">Digitalisierung UB Passau - ADAM Catalogue Enrichment</subfield><subfield code="q">application/pdf</subfield><subfield code="u">http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=030497717&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA</subfield><subfield code="3">Inhaltsverzeichnis</subfield></datafield><datafield tag="999" ind1=" " ind2=" "><subfield code="a">oai:aleph.bib-bvb.de:BVB01-030497717</subfield></datafield></record></collection> |
id | DE-604.BV045107283 |
illustrated | Illustrated |
indexdate | 2024-07-10T08:08:51Z |
institution | BVB |
isbn | 9781138033894 |
language | English |
oai_aleph_id | oai:aleph.bib-bvb.de:BVB01-030497717 |
oclc_num | 1050945303 |
open_access_boolean | |
owner | DE-739 |
owner_facet | DE-739 |
physical | xxv, 294 Seiten Illustrationen 24 cm |
publishDate | 2017 |
publishDateSearch | 2017 |
publishDateSort | 2017 |
publisher | CRC Press |
record_format | marc |
spelling | Erciyes, Kayhan Verfasser (DE-588)109591362X aut Complex networks an algorithmic perspective Kayhan Erciyes First issued in paperback Boca Raton CRC Press 2017 xxv, 294 Seiten Illustrationen 24 cm txt rdacontent n rdamedia nc rdacarrier "Network science is an emerging field of study that encompasses mathematics, computer science, physics, and engineering. An important issue in the study of complex networks is to understand the collective behavior of the elements of these networks. Although the results from graph theory have proven to be powerful in investigating the structures of complex networks, there are few books on the algorithmic aspects of complex network analysis. Filling this need, this book supplies the basic theoretical algorithmic and graph theoretic knowledge needed by every researcher of complex networks".. COMPUTERS / Networking / General bisacsh COMPUTERS / Operating Systems / General bisacsh MATHEMATICS / Arithmetic bisacsh Mathematik System analysis Mathematics Computational complexity Algorithms COMPUTERS / Networking / General COMPUTERS / Operating Systems / General MATHEMATICS / Arithmetic Netzwerk Graphentheorie (DE-588)4705155-3 gnd rswk-swf Algorithmus (DE-588)4001183-5 gnd rswk-swf Netzwerk Graphentheorie (DE-588)4705155-3 s Algorithmus (DE-588)4001183-5 s DE-604 Digitalisierung UB Passau - ADAM Catalogue Enrichment application/pdf http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=030497717&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA Inhaltsverzeichnis |
spellingShingle | Erciyes, Kayhan Complex networks an algorithmic perspective COMPUTERS / Networking / General bisacsh COMPUTERS / Operating Systems / General bisacsh MATHEMATICS / Arithmetic bisacsh Mathematik System analysis Mathematics Computational complexity Algorithms COMPUTERS / Networking / General COMPUTERS / Operating Systems / General MATHEMATICS / Arithmetic Netzwerk Graphentheorie (DE-588)4705155-3 gnd Algorithmus (DE-588)4001183-5 gnd |
subject_GND | (DE-588)4705155-3 (DE-588)4001183-5 |
title | Complex networks an algorithmic perspective |
title_auth | Complex networks an algorithmic perspective |
title_exact_search | Complex networks an algorithmic perspective |
title_full | Complex networks an algorithmic perspective Kayhan Erciyes |
title_fullStr | Complex networks an algorithmic perspective Kayhan Erciyes |
title_full_unstemmed | Complex networks an algorithmic perspective Kayhan Erciyes |
title_short | Complex networks |
title_sort | complex networks an algorithmic perspective |
title_sub | an algorithmic perspective |
topic | COMPUTERS / Networking / General bisacsh COMPUTERS / Operating Systems / General bisacsh MATHEMATICS / Arithmetic bisacsh Mathematik System analysis Mathematics Computational complexity Algorithms COMPUTERS / Networking / General COMPUTERS / Operating Systems / General MATHEMATICS / Arithmetic Netzwerk Graphentheorie (DE-588)4705155-3 gnd Algorithmus (DE-588)4001183-5 gnd |
topic_facet | COMPUTERS / Networking / General COMPUTERS / Operating Systems / General MATHEMATICS / Arithmetic Mathematik System analysis Mathematics Computational complexity Algorithms Netzwerk Graphentheorie Algorithmus |
url | http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=030497717&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |
work_keys_str_mv | AT erciyeskayhan complexnetworksanalgorithmicperspective |