Scalable Betweenness Centrality Maximization Via Sampling

Total Page:16

File Type:pdf, Size:1020Kb

Scalable Betweenness Centrality Maximization Via Sampling Scalable Betweenness Centrality Maximization via Sampling Ahmad Mahmoody Charalampos E. Tsourakakis Eli Upfal Brown University Harvard University Brown University Providence, RI 02912 Cambridge, MA 02138 Providence, RI 02912 [email protected] [email protected] [email protected] ABSTRACT Categories and Subject Descriptors Betweenness centrality (BWC) is a fundamental centrality mea- H.2.8 [Database Management]: Database Applications—Data sure in social network analysis. Given a large-scale network, mining; G.2.2 [Discrete Mathematics]: Graph Theory—Graph how can we find the most central nodes? This question is algorithms of great importance to many key applications that rely on BWC, including community detection and understanding Keywords graph vulnerability. Despite the large amount of work on scalable approximation algorithm design for BWC, estimat- Social Network, Centrality, Sampling, Optimization ing BWC on large-scale networks remains a computational challenge. 1. INTRODUCTION In this paper, we study the Centrality Maximization prob- Betweenness centrality (BWC) is a fundamental measure lem (CMP): given a graph G = (V, E) and a positive integer in network analysis, measuring the effectiveness of a ver- ∗ k, find a set S ⊆ V that maximizes BWC subject to the car- tex in connecting pairs of vertices via shortest paths [16]. ∗ dinality constraint jS j ≤ k. We present an efficient random- Numerous graph mining applications rely on betweenness ized algorithm that provides a (1 − 1/e − e)-approximation centrality, such as detecting communities in social and bio- with high probability, where e > 0. Our results improve the logical networks [20] and understanding the capabilities of current state-of-the-art result [40]. Furthermore, we provide an adversary with respect to attacking a network’s connec- the first theoretical evidence for the validity of a crucial as- tivity [23]. The betweenness centrality of a node u is defined sumption in betweenness centrality estimation, namely that as in real-world networks O(jVj2) shortest paths pass through ss,t(u) the top-k central nodes, where k is a constant. This also B(u) = , ∑ s explains why our algorithm runs in near linear time on real- s,t s,t world networks. We also show that our algorithm and anal- where ss,t is the number of s-t shortest paths, and ss,t(u) is ysis can be applied to a wider range of centrality measures, the number of s-t shortest paths that have u as their inter- by providing a general analytical framework. nal node. However, in many applications, e.g. [20, 23], we On the experimental side, we perform an extensive ex- are interested in centrality of sets of nodes. For this reason, perimental analysis of our method on real-world networks, the notion of BWC has been extended to sets of nodes [22, demonstrate its accuracy and scalability, and study differ- 40]. For a set of nodes S ⊆ V, we define the betweenness ent properties of central nodes. Then, we compare the sam- centrality of S as pling method used by the state-of-the-art algorithm with our method. Furthermore, we perform a study of BWC in time s (S) evolving networks, and see how the centrality of the central B(S) = ∑ s,t , nodes in the graphs changes over time. Finally, we compare s,t2V ss,t the performance of the stochastic Kronecker model [28] to where s (S) is the number of s-t shortest paths that have an real data, and observe that it generates a similar growth pat- s,t internal node in S. Note that we cannot obtain B(S) from the tern. values fB(v), v 2 Sg. In this work, we study the Centrality Maximization problem (CMP) defined formally as follows: Definition 1 (CMP). Given a network G = (V, E) and a Permission to make digital or hard copies of all or part of this work for personal or positive integer k, find a subset S∗ ⊆ V such that classroom use is granted without fee provided that copies are not made or distributed ∗ for profit or commercial advantage and that copies bear this notice and the full citation S 2 arg max B(S). on the first page. Copyrights for components of this work owned by others than the S⊆V:jSj≤k author(s) must be honored. Abstracting with credit is permitted. To copy otherwise, or republish, to post on servers or to redistribute to lists, requires prior specific permission We also denote the maximum centrality of a set of k nodes by OPTk, and/or a fee. Request permissions from [email protected]. i.e., OPTk = max B(S). KDD ’16, August 13 - 17, 2016, San Francisco, CA, USA S⊆V:jSj≤k c 2016 Copyright held by the owner/author(s). Publication rights licensed to ACM. ISBN 978-1-4503-4232-2/16/08. $15.00 It is known that CMP is APX-complete [15]. The best de- DOI: http://dx.doi.org/10.1145/2939672.2939869 terministic algorithms for CMP rely on the fact that BWC is monotone-submodular and provide a (1 − 1/e)-approximation nodes that can be used as seeds for influence maxi- [15, 12]. However, the running time of these algorithms is mization. We find that betweenness centrality is per- at least quadratic in the input size, and do not scale well to forming relatively well compared to a state-of-the-art large-scale networks. influence maximization algorithm. Finding the most central nodes in a network is a compu- (3) We study four strategies for attacking a network us- tationally challenging problem that we are able to handle ing four centrality measures: betweenness, coverage, accurately and efficiently. In this paper we focus on scal- k-path, and triangle centrality. Interestingly, we find ability of CMP, and graph mining applications. Our main that the k-path and triangle centralities can be more contributions are summarized as follows. effective at destroying the connectivity of a graph. Efficient algorithm. We provide a randomized approxima- 2. RELATED WORK tion algorithm, HEDGE, based on sampling shortest paths, for accurately estimating the BWC and solving CMP. Our algo- Centrality measures. There exists a wide variety of cen- rithm is simple, scales gracefully as the size of the graph trality measures: degree centrality, Pagerank [33], HITS [26], grows, and improves the previous result [40], by (i) pro- Salsa [27], closeness centrality [6], harmonic centrality [7], viding a (1 − 1/e − e)-approximation, and (ii) smaller sized betweenness centrality [16], random walk betweenness cen- samples. Specifically, in Yoshida’s algorithm [40], a sample trality [32], coverage centrality [40], k-path centrality [2], contains all the nodes on “any” shortest path between a pair, Katz centrality [24], rumor centrality [37] are some of the whereas in our algorithm, each sample is just a set of nodes important centrality measures. Boldi and Vigna proposed from a single shortest path between the pair. an axiomatic study of centrality measures [7]. In general, 2 choosing a good centrality measure is application depen- The OPTk = Q(n ) assumption. Prior work on BWC esti- 2 dent [19]. In the following we discuss in further detail the mation strongly relies on the assumption that OPTk = Q(n ) for a constant integer k [40]. As we show in Appendix, this centrality measure of our focus, the betweenness centrality. assumption is not true in general. Only empirical evidence Betweenness centrality (BWC) is a fundamental measure so far supports this strong assumption. in network analysis. The betweenness centrality index is We show that two broad families of networks satisfy this attributed to Freeman [16]. BWC has been used in a wide assumption: bounded treewidth networks and a popular variety of graph mining applications. For instance, Girvan family of stochastic networks that provably generate scale- and Newman use BWC to find communities in social and free, small-world graphs with high probability. Note that biological networks [20]. In a similar spirit, Iyer et al. use the classical Barabási-Albert scale-free random tree model BWC to attack the connectivity of networks by iteratively [5, 30] belongs to the former category. Our results imply removing the most central vertices [23]. 2 BWC that the OPTk = Q(n ) assumption holds even for k = 1, The fastest known exact algorithm for computing for these families of networks. To our knowledge, this is exactly requires O(mn) time in unweighted, and O(nm + the first theoretical evidence for the validity of this crucial n2 log m) for weighted graphs [10, 14, 36]. There exist ran- assumption on real-world networks. domized algorithms [4, 9, 34] which provide either additive General analytical framework. To analyze our algorithm, error or multiplicative error guarantees with high probabil- HEDGE, we provide a general analytical framework based on ity. CMP Chernoff bound and submodular optimization, and show For , the state-of-the-art algorithm [40] (and the only that it can be applied to any other centrality measure if it (i) scalable proposed algorithm based on sampling) provides a is monotone-submodular, and (ii) admits a hyper-edge sam- mixed error guarantee, combining additive and multiplica- pler (defined in Sect. 3). Two examples of such centralities tive error. Specifically, this algorithm provides a solution 1 2 are the coverage [40] and the k-path centralities [2]. whose centrality is at least (1 − e )OPTk − en , by sampling 2 Experimental evaluation. We provide an experimental eval- O(log n/e ) hyper-edges, where each hyper-edge is a set of uation of our algorithm that shows that it scales gracefully all nodes on any shortest path between two random nodes as the graph size increases and that it provides accurate es- with some assigned weights.
Recommended publications
  • The Number of Spanning Trees in Apollonian Networks
    The Number of Spanning Trees in Apollonian Networks Zhongzhi Zhang, Bin Wu School of Computer Science and Shanghai Key Lab of Intelligent Information Processing, Fudan University, Shanghai 200433, China ([email protected]). Francesc Comellas Dep. Matem`atica Aplicada IV, EETAC, Universitat Polit`ecnica de Catalunya, c/ Esteve Terradas 5, Castelldefels (Barcelona), Catalonia, Spain ([email protected]). Abstract In this paper we find an exact analytical expression for the number of span- ning trees in Apollonian networks. This parameter can be related to signif- icant topological and dynamic properties of the networks, including perco- lation, epidemic spreading, synchronization, and random walks. As Apol- lonian networks constitute an interesting family of maximal planar graphs which are simultaneously small-world, scale-free, Euclidean and space fill- ing, modular and highly clustered, the study of their spanning trees is of particular relevance. Our results allow also the calculation of the spanning tree entropy of Apollonian networks, which we compare with those of other graphs with the same average degree. Key words: Apollonian networks, spanning trees, small-world graphs, complex networks, self-similar, maximally planar, scale-free 1. Apollonian networks In the process known as Apollonian packing [9], which dates back to Apollonius of Perga (c262{c190 BC), we start with three mutually tangent circles, and draw their inner Soddy circle (tangent to the three circles). Next we draw the inner Soddy circles of this circle with each pair of the original three, and the process is iterated, see Fig. 1. An Apollonian packing can be used to design a graph, when each circle is associated to a vertex of the graph and vertices are connected if their corresponding circles are tangent.
    [Show full text]
  • Dynamic Phenomena on Complex Networks Luca Dall’Asta
    Dynamic Phenomena on Complex Networks Luca Dall’Asta To cite this version: Luca Dall’Asta. Dynamic Phenomena on Complex Networks. Data Analysis, Statistics and Probabil- ity [physics.data-an]. Université Paris Sud - Paris XI, 2006. English. tel-00093102 HAL Id: tel-00093102 https://tel.archives-ouvertes.fr/tel-00093102 Submitted on 12 Sep 2006 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. UNIVERSITE` DE PARIS 11 - U.F.R. DES SCIENCES D’ORSAY Laboratoire de Physique Theorique´ d’Orsay THESE` DE DOCTORAT DE L’UNIVERSITE´ PARIS 11 Sp´ecialit´e: PHYSIQUE THEORIQUE´ pr´esent´epar Luca DALL’ASTA pour obtenir le grade de DOCTEUR DE L’UNIVERSITE´ PARIS 11 Sujet: Ph´enom`enes dynamiques sur des r´eseaux complexes Jury compos´ede: M. Alain Barrat (Directeur de th`ese) M. Olivier Martin M. R´emi Monasson M. Romualdo Pastor-Satorras (Rapporteur) M. Cl´ement Sire (Rapporteur) M. Alessandro Vespignani Juin, 2006 Contents List of Publications iv 1 Introduction 1 1.1 A networked description of Nature and Society . ............. 1 1.2 RelationbetweenTopologyandDynamics . ........... 3 1.3 Summaryofthethesis .............................. ...... 4 2 Structure of complex networks: an Overview 7 2.1 Introduction...................................
    [Show full text]
  • Stefan Felsnery Institut FUrmathematik Technische UniversitAtberlin
    4-Connected Triangulations on Few Lines£ Stefan Felsnery Institut furMathematik Technische UniversitatBerlin Abstract. We show that every 4-connected plane triangulation with n vertices can be drawn suchp that edges are represented by straight segments and the vertices lie on a set of at most 2n lines each of them horizontal or vertical. The same holds for plane graphs on n vertices without separating triangle. The proof is based on a corresponding result for diagrams of planar lattices which makes use of orthogonal chain and antichain families. 1 Introduction Given a planar graph G we denote by π(G) the minimum number ` such that G has a plane straight-line drawing in which the vertices can be covered by a collection of ` lines. Clearly π(G) = 1 if and only if G is a forest of paths. The set of graphs with π(G) = 2, however, is already surprisingly rich, it contains trees, outerplanar graphs and subgraphs of grids [1, 9]. The parameter π(G) has received some attention in recent years, here is a list of known results: It is NP-complete to decide whether π(G) = 2 (Biedl et al. [2]). For a stacked triangulation G, a.k.a. planar 3-tree or Apollonian network, let dG be the stacking depth (e.g. K4 has stacking depth 1). On this class lower and upper bounds on π(G) are dG + 1 and dG + 2 respectively, see Biedl et al. [2] and for the lower bound also Eppstein [8, Thm. 16.13]. 3 Eppstein [9] constructed a planar, cubic, 3-connected, bipartite graph G` on O(` ) ver- tices with π(G`) `.
    [Show full text]
  • Building a Larger Class of Graphs for Efficient Reconfiguration
    Building a larger class of graphs for efficient reconfiguration of vertex colouring by Owen Merkel A thesis presented to the University of Waterloo in fulfillment of the thesis requirement for the degree of Master of Mathematics in Computer Science Waterloo, Ontario, Canada, 2020 c Owen Merkel 2020 This thesis consists of material all of which I authored or co-authored: see Statement of Contributions included in the thesis. This is a true copy of the thesis, including any required final revisions, as accepted by my examiners. I understand that my thesis may be made electronically available to the public. ii Statement of Contributions Owen Merkel is the sole author of Chapters 1, 2, 3, and 6 which were written under the supervision of Prof. Therese Biedl and Prof. Anna Lubiw and were not written for publication. Exceptions to sole authorship are Chapters 4 and 5, which is joint work with Prof. Therese Biedl and Prof. Anna Lubiw and consists in part of a manuscript written for publication. iii Abstract A k-colouring of a graph G is an assignment of at most k colours to the vertices of G so that adjacent vertices are assigned different colours. The reconfiguration graph of the k-colourings, Rk(G), is the graph whose vertices are the k-colourings of G and two colourings are joined by an edge in Rk(G) if they differ in colour on exactly one vertex. For a k-colourable graph G, we investigate the connectivity and diameter of Rk+1(G). It is known that not all weakly chordal graphs have the property that Rk+1(G) is connected.
    [Show full text]
  • Some Properties of Random Apollonian Networks
    Some Properties of Random Apollonian Networks Alan Frieze, Charalampos E. Tsourakakis Department of Mathematical Sciences, Carnegie Mellon University, USA [email protected], [email protected] Abstract. In this work we analyze fundamental properties of Random Apollonian Networks [37,38], a popular random graph model which generates planar graphs with power law properties. Specifically, we analyze (a) the degree distribution, (b) the k largest degrees, (c) the k largest eigenvalues and (d) the diameter, where k is a constant. 1 Introduction Due to the surge of interest in social networks, the Web graph, the Internet, biological networks and many other types of networks, a large amount of research has focused on modeling real-world networks in recent years. Existing well-known models include the preferential attachment model [7], Kronecker graphs [31], the Cooper-Frieze model [17], the Aiello-Chung-Lu model [1], protean graphs [34] and the Fabrikant- Koutsoupias-Papadimitriou model [23]. Despite the fact that the family of planar graphs is a particularly important family of graphs [29] and models important real-world graphs such as road networks, there exists few generators of real-world planar graphs. In this work we focus on Random Apollonian Networks (RANs), a popular random graph model for generating planar graphs with power law properties [38]. Before we state our main results we briefly describe the model. Model: An example of a RAN is shown in Figure 1. At time t = 1 the RAN is shown in Figure 1a. At each step t ≥ 2 a face F is chosen uniformly at random among the faces of Gt.
    [Show full text]
  • Networks and Fractals Bsc Thesis
    Budapest University of Technology and Economics Institute of Mathematics Department of Stochastics Networks and fractals BSc Thesis Roland Molontay Supervisors: Dr. J´uliaKomj´athy Postdoctoral Research Fellow, Eindhoven University of Technol- ogy Prof. K´arolySimon Professor of Mathematics, Head of Department of Stochastics, Budapest University of Technology and Economics 2013 Contents Preface 2 Acknowledgements 3 1 Introduction 4 1.1 Historical overview . .4 1.2 Real networks and their fascinating features . .5 1.3 Structure of the thesis . .9 2 Mathematical modeling of complex networks 12 2.1 Notation . 12 2.2 Properties of real networks . 15 2.3 Preferential Attachment Model . 16 2.4 Apollonian networks . 18 2.4.1 Deterministic Apollonian Network . 18 2.4.2 Random Apollonian Network . 20 2.4.3 Evolutionary Apollonian Network . 21 2.5 Hierarchical graph sequence model . 23 2.5.1 Properties of the graph sequence . 24 3 Self-similarity and fractality of complex networks 27 3.1 Box-counting and renormalization . 27 3.2 Other definitions for network dimension . 29 4 Modified box dimension of the hierarchical graph sequence model 31 4.1 Proof of the lower bound . 32 4.2 Proof of the upper bound . 36 5 Summary 39 Bibliography 42 1 Preface My thesis was written based on the following thesis topic: Frakt´alok´esh´al´ozatok Az elm´ult´evekben egyre nagyobb figyelem ir´anyul a h´alzatokelm´elet´ere. A t´emadr. Simon K´aroly, dr. Komj´athy J´ulia´esV´ag´oLajos jelenleg is zajl´o kutat´asaihozkapcsol´odik. A hallgat´omegismerkedik a h´al´ozatelm´eletleg- fontosabb fogalmaival, ´attekint´estad n´eh´any fontos h´al´ozatmodellr´ol.K¨or¨ul- j´arjaa frakt´alokelm´elet´et,illetve h´al´ozatokkal val´okapcsolat´at.
    [Show full text]
  • 1. Relevant Standard Graph Theory
    Color identical pairs in 4-chromatic graphs Asbjørn Brændeland I argue that, given a 4-chromatic graph G and a pair of vertices {u, v} in G, if the color of u equals the color of v in every 4-coloring of G then there is no planar supergraph of G where u and v are adjacent. This is equivalent to the graph theoretical version of the Four Color Theorem, which says that every planar graph is 4-colorable. My argument focuses on the coloring constraint mechanisms that produce color identical pairs (e.g., {u, v}), and how these mechanisms affect the adjaceability of such pairs. Section 1 gives the relevant graph theoretical definitions, section 2 addresses adjaceability of vertices in planar graphs, section 3 explains color identical pairs, section 4 addresses coloring constraints, and section 5 gives the conclusive argument. 1. Relevant standard graph theory A graph G is an ordered pair (V(G), E(G)) where V(G) is a set of vertices and E(G) is a set of edges. If u and v are vertices in V(G) and uv is and edge in E(G), we say that u and v are adjacent, and that u and v are the end vertices of uv. Given two graphs G and H, if V(H) V(G) and E(H) E(G) then H is a subgraph of G and G is a supergraph of H. A path is a graph with an ordered set of vertices (v , …, v ) where for k < n, v and v are adjacent.
    [Show full text]
  • General Model for Apollonian Networks After T Gen- D New (D + 1)-Cliques with I As One Vertex of Them
    General model for Apollonian networks Zhongzhi Zhang∗ and Lili Rong† Institute of Systems Engineering, Dalian University of Technology, 2 Ling Gong Rd., Dalian 116023, Liaoning, China (Dated: November 23, 2018) We introduce a general deterministic model for Apollonian Networks in an iterative fashion. The networks have small-world effect and scale-free topology. We calculate the exact results for the degree exponent, the clustering coefficient and the diameter. The major points of our results indicate that (a) the degree exponent can be adjusted in a wide range, (b) the clustering coefficient of each individual vertex is inversely proportional to its degree and the average clustering coefficient of all vertices approaches to a nonzero value in the infinite network order, and (c) the diameter grows logarithmically with the number of network vertices. PACS numbers: 02.10.Ox, 89.75.Hc, 89.75.Da, 89.20.Hh I. INTRODUCTION nian networks. In an iterative way we propose a general model for Apollonian networks by including a parame- In the past few years we have witnessed an upsurge in ter. Apollonian networks [18, 19, 20] are special cases of the research of a wide range of complex systems which the present model. The deterministic construction of our can be described in terms of networks——vertices con- model enables one to obtain the analytic solution for the nected together by edges [1, 2, 3, 4]. Various empirical degree distribution, clustering coefficient and the diame- studies have shown that most real-life systems exhibit the ter. Moreover, by tuning the parameter, we can obtain following three properties: power-law degree distribution scale-free networks with a variety of degree exponents [5], high clustering coefficient [6] and small average path and clustering coefficient.
    [Show full text]
  • Short Version Published in Electronic Notes in Discrete Mathematics
    Available online at www.sciencedirect.com Electronic Notes in Discrete Mathematics 43 (2013) 355–365 www.elsevier.com/locate/endm On the Longest Paths and the Diameter in Random Apollonian Networks 1 Ehsan Ebrahimzadeh a,2, Linda Farczadi b,3,PuGaoc,4, Abbas Mehrabian b,5, Cristiane M. Sato b,6, Nick Wormald b,d,7,8 and Jonathan Zung e,9 a Department of Electrical and Computer Engineering, University of Waterloo, Waterloo ON, Canada b Department of Combinatorics and Optimization, University of Waterloo, Waterloo ON, Canada c Department of Computer Science, University of Toronto, Toronto ON, Canada d School of Mathematical Sciences, Monash University, Clayton VIC, Australia e Department of Mathematics, University of Toronto, Toronto ON, Canada Abstract We consider the following iterative construction of a random planar triangulation. Start with a triangle embedded in the plane. In each step, choose a bounded face uniformly at random, add a vertex inside that face and join it to the vertices of the face. After n − 3 steps, we obtain a random triangulated plane graph with n vertices, which is called a Random Apollonian Network (RAN). We show that asymptotically almost surely (a.a.s.) every path in a RAN has length o(n), refuting a conjecture of Frieze and Tsourakakis. We also show that a RAN always has a log 2/ log 3 path of length (2n − 5) , and that the expected length of its longest path is Ω n0.88 . Finally, we prove that a.a.s. the diameter of a RAN is asymptotic to c log n,wherec ≈ 1.668 is the solution of an explicit equation.
    [Show full text]
  • R, 44, 177 Abu-Khzam, Faisal N., 51 Agarwal, Pankaj K., 61, 190
    Cambridge University Press 978-1-108-42391-5 — Forbidden Configurations in Discrete Geometry David Eppstein Index More Information Index ∃R, 44, 177 Balko, Martin, 10 Balogh, Jozsef, 93 Abu-Khzam, Faisal N., 51 Bannister, Michael J., 151, 179, 181, Agarwal, Pankaj K., 61, 190 182 Aichholzer, Oswin, 10, 34, 131 Baran, Ilya, 60 Ailon, Nir, 59 Barnett, Vic, 129 algorithm, 33 Beck, József, 89 Alimonti, Paola, 45 betweenness, 14 Alon, Noga, 71 Bézout’s theorem, 74 alphabet, 88 binary relation, 20 Anderson, David Brent, 73 binary search, 139 Anning, Norman H., 142 binomial, 107–109 anti-symmetry, 20 binomial coefficient, 2, 107 antichain, 21, 22, 66, 123, 128, 135, bipartite graph, 168, 173–175 175, 201 bitangent, 16, 17 antimatroid, 164 Björner, Anders, 11 Apollonian network, 185, 186 Borwein, Peter, 53 Appel, Kenneth, 45 bounded obstacles, 25 approximation ratio, 45, 67, 68, 70, 71, bounding box, 198 75, 81–83, 98, 100, 118, 119, 130, Brahmagupta, 142 172, 196, 197, 209, 210 Brandenburg, Franz J., 181, 182 APX, 45, 67, 75, 119, 172, 209 Bremner, David, 136 area, 35 Brinkmann, Gunnar, 184 Arkin, Esther M., 106, 117, 118, brute force search, 44, 51, 62, 77, 172, 130 184 Aronov, Boris, 128 Bukh, Boris, 151, 157 arrangement of lines, 59, 62, 116, Burr, Michael A., 140 177–179, 191, 193 Burr, Stefan A., 54, 55 arrow symbol, 88, 90 Aurenhammer, Franz, 10 Cabello, Sergio, 184 avoids, 27–29, 31, 39, 48, 49, 52, 55, cap, 108 72, 75, 106, 119, 120, 126, 171, cap-set, 91, 92 172 Carathéodory, Constantin, 106 223 © in this web service Cambridge University
    [Show full text]
  • Degree Distribution of Random Apollonian Network Structures and Boltzmann Sampling Alexis Darrasse, Michèle Soria
    Degree distribution of random Apollonian network structures and Boltzmann sampling Alexis Darrasse, Michèle Soria To cite this version: Alexis Darrasse, Michèle Soria. Degree distribution of random Apollonian network structures and Boltzmann sampling. 2007 Conference on Analysis of Algorithms, AofA 07, Jun 2007, Juan les Pins, France. pp.313-324. hal-01184769 HAL Id: hal-01184769 https://hal.inria.fr/hal-01184769 Submitted on 17 Aug 2015 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Degree distribution of random Apollonian network structures and Boltzmann sampling 345 One-sided Variations on Tries: Path Imbalance, Climbing, and Key Sampling 2007 Conference on Analysis of Algorithms, AofA 07 DMTCS proc. AH, 2007, 345–358 Degree distribution of random Apollonian network structures and Boltzmann sampling Alexis Darrasse and Michele` Soria LIP6 - Equipe SPIRAL, 104 avenue du president´ Kennedy, F-75016 Paris, France received 26thFeb 2007, revised 19th January 2008, accepted tommorow. Random Apollonian networks have been recently introduced for representing real graphs. In this paper we study a modified version: random Apollonian network structures (RANS), which preserve the interesting properties of real graphs and can be handled with powerful tools of random generation.
    [Show full text]
  • High Dimensional Apollonian Networks Zhongzhi Zhang, Francesc Comellas, Guillaume Fertin, Lili Rong
    High dimensional Apollonian networks Zhongzhi Zhang, Francesc Comellas, Guillaume Fertin, Lili Rong To cite this version: Zhongzhi Zhang, Francesc Comellas, Guillaume Fertin, Lili Rong. High dimensional Apollonian net- works. Journal of Physics A: Mathematical and Theoretical, IOP Publishing, 2006, 39, pp.1811-1818. hal-00461776 HAL Id: hal-00461776 https://hal.archives-ouvertes.fr/hal-00461776 Submitted on 5 Mar 2010 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. High dimensional Apollonian networks Zhongzhi Zhang Institute of Systems Engineering, Dalian University of Technology, Dalian 116024, Liaoning, China E-mail: [email protected] Francesc Comellas Dep. de Matem`atica Aplicada IV, EPSC, Universitat Polit`ecnica de Catalunya Av. Canal Ol´ımpic s/n, 08860 Castelldefels, Barcelona, Catalonia, Spain E-mail: [email protected] Guillaume Fertin LINA, Universit´e de Nantes, 2 rue de la Houssini`ere, BP 92208, 44322 Nantes Cedex 3, France E-mail: [email protected] Lili Rong Institute of Systems Engineering, Dalian University of Technology, Dalian 116024, Liaoning, China E-mail: [email protected] Abstract. We propose a simple algorithm which produces high dimensional Apollonian networks with both small-world and scale-free characteristics.
    [Show full text]