pushing the envelope in graph compression · pushing the envelope in graph compression panagiotis...

25
Pushing the Envelope in Graph Compression Panagiotis Liakos 1 Katia Papakonstantinopoulou 1 Michael Sioutis 2 1 University of Athens, 2 Universit´ e Lille-Nord de France, CRIL-CNRS 23 rd ACM International Conference on Information and Knowledge Management Shanghai, November 6th, 2014

Upload: others

Post on 25-Sep-2020

3 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

Pushing the Envelope inGraph Compression

Panagiotis Liakos1 Katia Papakonstantinopoulou1 Michael Sioutis2

1University of Athens, 2Universite Lille-Nord de France, CRIL-CNRS

23rd ACM International Conference on Information and Knowledge Management

Shanghai, November 6th, 2014

Page 2: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

Motivation

Explosive growth of large-scale systems modeled as graphs

Web GraphsSocial Networks

Critical applications (e.g., in the field of Graph Mining) needin-memory graph representations

Serving adjacency queriesMaintaining snapshots for archival purposes

We need efficient compressed graph representations!

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• Motivation 2/22

Page 3: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

Graph compression

Graph compression / Compact graph representation:

Find a compressed graph representation thatallows mining without decompressing the graph.

We are interested in graphs created by human activity(e.g., web graphs, social network graphs).They exhibit, under certain orderings, common properties:

power law distributed degrees,

locality (of reference) and

copy (or similarity) property

which induce redundancy in the graphs’ representations, andare taken into account in the design of compression methods.

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• Description 3/22

Page 4: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

Graph compression methods

Algorithms for compressing web graphs Algorithms for compressing social network graphs

Reordering algorithms that lead to higher compression

adjacency lists

adjacency

combination of[CL11]

[AD09] [HN12]

[CKL+09] [MP10]

[BV04+BRSV11+LPS14a]

[BV04+BSV09]

[BV04+BRSV11]

[BSV09] [BRSV11] [KF11] [ST11]

[AMN08] [BLN09]

[AM01] [SY01] [RSWW02]

compression schemes

state of the art!

[LPS14b]

represented by:

and matrices

our work

[RGM03] [BV04] [CN07] [BC08]

[BV04]+[BRSV11]+[LPS14a]+

data compression

matrices

adjacency lists

State of the art is BV: Further minimize space / access time

[RSWW02, BLN09, RGM03, AM01, SY01, CN07, BC08, AD09, CL11,HN12, CKL+09, MP10, LPS14b, BSV09, ST11, KF11, AMN08]

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• Related work 4/22

Page 5: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

Outline

1 State of the art

2 Our method

3 Our results

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• Outline 5/22

Page 6: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

Laboratory for Web Algorithmics’ (LAW) techniques

Modified gap representation [BV04] Details

Represent each list of successors as a list of gaps to exploit thelocality of reference

Reference list [BV04] Details

Code each adjacency list as a “modified” version of a previous listto exploit similarity (copy-property)

Layered Label Propagation [BRSV11] Details

Reorders very large graphs to provide a major increase incompression with respect to prior efforts

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• State of the art 6/22

Page 7: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

Layered Label Propagation effect

Graph cit-Patents before and after LLP reordering:

Observation: The area around the main diagonal is dense undercertain orderings [LPS14a]

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• State of the art 7/22

Page 8: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

Main idea behind our method

Main idea

As the area around the main diagonal of the graph’s adjacency matrixis dense after reordering, isolate it and compress it separately.

(i) (ii) (iii)

(iv) (v) (vi)

(vii) (viii) (ix)

Heat maps of the adjacencymatrices of:

(i) cnr-2000

(ii) web-Stanford

(iii) roadNet-CA

(iv) roadNet-PA

(v) dblp-2010

(vi) cit-Patents

(vii) amazon-2008

(viii) ljournal-2008

(ix) twitter-2010

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• Our method 8/22

Page 9: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

Our method in a glance

Isolate a dense subgraph Saround the main diagonal

Apply data compression on S

Compress G \ S using thestate-of-the-art method of Boldiet al.[BV04, BRSV11] (or anyother efficient graph compres-sion method)

Algorithm 1: BV+(G, k, b)input : A directed graph G = (V,E) and parameters k and b.output : A compressed representation of G.begin

setNonD← set();k-diagonalStripe← array(array([000 . . . 0]︸ ︷︷ ︸

2k+1 bits

) × |V |);

foreach (u, v) ∈ E doif u − k ≤ v ≤ u + k then

k-diagonalStripe[u][v]← 1;else

setNonD← setNonD ∪ (u, v);

seqDict← dict();foreach seq ∈ k-diagonalStripe do

if seq 6∈ seqDict thenseqDict[seq]← 1;

elseseqDict[seq]++;

foreach (key, value) ∈ seqDict doseqDict[key]← value × # of 1s ∈ key;

seqDict← sort seqDict by value (desc. order);

seqSet← {first 2b − 1 sequences (keys) of seqDict};foreach seq ∈ k-diagonalStripe do

if seq ∈ seqSet thenuse b bits to compress seq;

elsebestSeq← bestSubset(seqSet, seq, k);use b bits to compress bestSeq;setNonD← setNonD∪ {edges of seq that were left out of bestSeq};

compress setNonD using BV;

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• Our method 9/22

Page 10: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

Our techniques

Isolating a dense subgraph

Data compression

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• Our method 10/22

Page 11: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

Isolating a dense subgraph

Diagonal stripe: For G = (V,E) and k ∈ Z+, the k-diagonal stripe ofG is the set: {(i, j) | i− k ≤ j ≤ i+ k and i, j ∈ {0, . . . , |V |}}.

0 0 0 1 0 1 1 0 0 0 1 0 0 0 0

0 0 1 1 1 0 1 0 1 0 0 0 0 0

0 1 1 1 0 1 0 1 0 1 0 0 0

1 1 1 1 1 1 0 0 0 0 0 0

1 0 0 1 1 1 0 1 0 0 1 0

0 0 0 1 1 1 0 1 0 0 0 0

0 0 0 1 1 1 0 1 1 1 0 0

1 1 0 1 1 1 1 0 1 1 1 0

0 0 0 0 0 0 0 1 1 1 0 1

0 1 0 0 0 0 0 1 1 1 1 1 0

0 0 0 0 0 0 0 1 1 0 1 0 0 0

1 0 0 1 0 0 0 0 1 0 1 0 0 0 0

The bits/edgerequired to store thestripe increases withk. However, even asparser stripe maylead to highercompression of thegraph!

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• Our method 11/22

Page 12: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

Isolating a dense subgraph

Diagonal stripe: For G = (V,E) and k ∈ Z+, the k-diagonal stripe ofG is the set: {(i, j) | i− k ≤ j ≤ i+ k and i, j ∈ {0, . . . , |V |}}.

0

10

20

30

40

50

60

70

cnr-

2000

web

-Sta

nfor

d

road

Net

-CA

road

Net

-PA

dblp

-201

0

cit-

Pat

ents

amaz

on-2

008

ljour

nal-2

008

twitt

er-2

010

Per

cent

age

of e

dges

in th

e di

agon

al to

the

tota

l edg

es in

the

grap

h

Web, road network, and social network graphs

k=1k=2k=3k=4

The bits/edgerequired to store thestripe increases withk. However, even asparser stripe maylead to highercompression of thegraph!

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• Our method 11/22

Page 13: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

Isolating a dense subgraph (cont.)

The computation of the bits/edge needed to represent the diagonalstripe of a given graph is straightforward:

roadNet-PA has 68.41% of its edges in the 7-diagonal

uncompressed diagonal ratio =(2k+1)|V |

p|E| =15|V |

0.6841|E| = 7.76 bits/edge.

However, BV yields a compression ratio of 12.86 bits/edge forroadNet-PA.

Can we do better?

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• Our method 12/22

Page 14: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

Isolating a dense subgraph (cont.)

Based on Shannon’s source coding theorem, we get an indication ofthe expected compression ratio for the diagonal stripe.

Proposition 1.

Consider k ∈ Z+ and a graph G = (V,E) with a percentage p of its edges belonging in

the k-diagonal stripe. The minimum expected compression ratio of the diagonal stripe is

upper bounded bylog((2k+1)|V |

p|E|

)p|E| bits/edge.

Estimation of the compressed roadNet-PA diagonal ratio

expected compression ratio =log(

15|V |0.6841|E|

)0.6841|E| = 2.98 bits/edge << 12.86 (BV )

Our method is likely to offer a significant improvement!

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• Our method 13/22

Page 15: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

Data compression on the dense subgraph

Consider the following graph and assume k = 3 and b = 2.

0 0 0 1 0 1 1 0 0 0 1 0 0 0 0

0 0 1 1 1 0 1 0 1 0 0 0 0 0

0 1 1 1 0 1 0 1 0 1 0 0 0

1 1 1 1 1 1 0 0 0 0 0 0

1 0 0 1 1 1 0 1 0 0 1 0

0 0 0 1 1 1 0 1 0 0 0 0

0 0 0 1 1 1 0 1 1 1 0 0

1 1 0 1 1 1 1 0 1 1 1 0

0 0 0 0 0 0 0 1 1 1 0 1

0 1 0 0 0 0 0 1 1 1 1 1 0

0 0 0 0 0 0 0 1 1 0 1 0 0 0

1 0 0 1 0 0 0 0 1 0 1 0 0 0 0

0 0 1 1 0 1 0 1

1 1 0 1 1 0 1 0

1 1 0 1 0 0 0 0

0011101 11

1110111 10

0111010 01

0000000 00

Lost Edges:1: 1, 3, 44: 1, 510: 1111: 8, 9, 1112: 9, 11

3647 edges are held in b

2k+1 = 27 of the original diagonal space!

The “lost” edges are passed on to the next step ( lossless)

roadNet-PA compressed diagonal ratio

k = 7, b = 2 ⇒ 1.95 bits/edge.

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• Our method 14/22

Page 16: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

Putting everything together

0 0 0 1 0 1 1 0 0 0 1 0 0 0 0

0 0 1 1 1 0 1 0 1 0 0 0 0 0

0 1 1 1 0 1 0 1 0 1 0 0 0

1 1 1 1 1 1 0 0 0 0 0 0

1 0 0 1 1 1 0 1 0 0 1 0

0 0 0 1 1 1 0 1 0 0 0 0

0 0 0 1 1 1 0 1 1 1 0 0

1 1 0 1 1 1 1 0 1 1 1 0

0 0 0 0 0 0 0 1 1 1 0 1

0 1 0 0 0 0 0 1 1 1 1 1 0

0 0 0 0 0 0 0 1 1 0 1 0 0 0

1 0 0 1 0 0 0 0 1 0 1 0 0 0 0

0 0 1 1 0 1 0 1

1 1 0 1 1 0 1 0

1 1 0 1 0 0 0 0

0011101 11

1110111 10

0111010 01

0000000 00

1: 1, 3, 4, 82: 73: 7, 94: 1, 55: 1, 118: 1, 2, 410: 2, 1111: 8, 9, 1112: 1, 4, 9, 11

BV( )BV+

Size of compressed graph: b|V |+ SBV

Time Complexity Edges in comp. diagonal Edges outside comp. diagonalEdge Exists O(1) < BVSuccessors O(b) < BV

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• Our method 15/22

Page 17: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

Experimental evaluation: Compression ratios

graph # nodes # edges % of edges compression BV+in diagonal ratio (bits/edge) parameters

BV BV+ k bcnr-2000 325,557 3,216,152 6.05 % 3.71 3.62 17 2 Hweb-Stanford 281,903 3,985,272 6.78 % 4.06 3.90 1 2 Hroadnet-CA 1,965,206 5,533,214 64.50 % 13.30 10.58 7 6 Hroadnet-PA 1,088,092 3,083,796 66.89 % 12.86 10.07 7 6 Hdblp-2010 326,186 1,615,400 54.49 % 8.63 7.2 24 7 Hcit-Patents 3,774,767 33,037,894 19.07 % 14.72 14.25 9 6 Hamazon-2008 735,323 5,158,388 59.27 % 10.77 10.07 23 15 Hljournal-2008 5,363,260 79,023,142 7.65 % 11.84 11.78 2 4 Htwitter-2010 41,652,230 1,468,365,182 2.58 % 14.52 14.42 17 6 H

Large impact on social network graphs (dblp-2010: 16.6%)

Impressive results for road network graphs (> 20%)

Improvements on web graphs (2.4%− 3.9%)

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• Our results 16/22

Page 18: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

Experimental evaluation: Access times (ms)

graph cnr-2000 roadNet-CA ljournal-2008

Edge Exists

BV+ (D) 645 600 663BV+ (Non-D) 2, 286 832 4, 373

BV 2, 397 923 4, 518

Successors

BV+ (D) 643 668 627BV+ (Non-D) 1, 947 849 1, 940

BV 2, 159 891 2, 009

Significantly faster for the compressed diagonal part

Faster than BV for the rest of the graph

We outscore BV in any non-single core environment

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• Our results 17/22

Page 19: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

Effect of parameters

We can estimate a good k using Proposition 1.

Delicate balance between:

Minimizing the diagonal stripe ratio

Easing the task of compressing the rest of the graph

For our dataset: k ∈ [2, 20] and b ≤ k

Best choice for roadNet-PA

k = 7, b = 6 ⇒ 3.27 bits/edge (although it is > 1.95 bits/edge).

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• Our results 18/22

Page 20: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

References I

[AD09] Alberto Apostolico and Guido Drovandi, Graph Compression by BFS, Algorithms 2 (2009), no. 3,1031–1044.

[AM01] Micah Adler and Michael Mitzenmacher, Towards Compressing Web Graphs, DCC, 2001.

[AMN08] Yasuhito Asano, Yuya Miyawaki, and Takao Nishizeki, Efficient Compression of Web Graphs, COCOON,2008.

[BC08] Gregory Buehrer and Kumar Chellapilla, A scalable pattern mining approach to web graph compressionwith communities, WSDM, 2008.

[BLN09] Nieves R. Brisaboa, Susana Ladra, and Gonzalo Navarro, k2-Trees for Compact Web GraphRepresentation, SPIRE, 2009.

[BRSV11] Paolo Boldi, Marco Rosa, Massimo Santini, and Sebastiano Vigna, Layered Label Propagation: AMultiResolution Coordinate-Free Ordering for Compressing Social Networks, WWW, 2011.

[BSV09] Paolo Boldi, Massimo Santini, and Sebastiano Vigna, Permuting Web and Social Graphs, InternetMathematics 6 (2009), no. 3, 257–283.

[BV04] P. Boldi and S. Vigna, The WebGraph Framework I: Compression Techniques, WWW, 2004.

[CKL+09] Flavio Chierichetti, Ravi Kumar, Silvio Lattanzi, Michael Mitzenmacher, Alessandro Panconesi, andPrabhakar Raghavan, On compressing social networks, KDD, 2009.

[CL11] Francisco Claude and Susana Ladra, Practical Representations for Web and Social Graphs, CIKM, 2011.

[CN07] Francisco Claude and Gonzalo Navarro, A Fast and Compact Web Graph Representation, SPIRE, 2007.

[HN12] Cecilia Hernandez and Gonzalo Navarro, Compressed representation of web and social networks via densesubgraphs, SPIRE, 2012.

[KF11] U. Kang and Christos Faloutsos, Beyond “caveman communities”: Hubs and spokes for graphcompression and mining, ICDM, 2011.

[LPS14a] Panagiotis Liakos, Katia Papakonstantinopoulou, and Michael Sioutis, On the Effect of Locality inCompressing Social Networks, ECIR, 2014.

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• References 19/22

Page 21: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

References II

[LPS14b] , Pushing the envelope in graph compression, CIKM, 2014.

[MP10] Hossein Maserrat and Jian Pei, Neighbor query friendly compression of social networks, KDD, 2010.

[RGM03] Sriram Raghavan and Hector Garcia-Molina, Representing Web Graphs, ICDE, 2003.

[RSWW02] Keith H. Randall, Raymie Stata, Janet L. Wiener, and Rajiv G. Wickremesinghe, The Link Database: FastAccess to Graphs of the Web, DCC, 2002.

[ST11] Ilya Safro and Boris Temkin, Multiscale approach for the network compression-friendly ordering, J. ofDiscrete Algorithms 9 (2011), no. 2, 190–202.

[SY01] Torsten Suel and Jun Yuan, Compressing the Graph Structure of the Web, DCC, 2001.

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• References 20/22

Page 22: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

Conclusion - Ongoing work

We go beyond the state-of-the-art compressed data structure ofBoldi et al. [BV04, BRSV11] for web and social graphs byfurther exploiting the clustering properties (locality, similarity)observed in these graphs.

Our implementation can easily be employed to improve anycompression method.

We reduced the best recorded compression ratios of well-knowndatasets up to 21.7% and the corresponding access times up to21.13%.

We are currently examining labelings that favor our compressionmethod.

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• Discussion 21/22

Page 23: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

Thank you!

For further details refer to:http://hive.di.uoa.gr/network-analysis

or email me at: [email protected]

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• Discussion 22/22

Page 24: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

Modified gap representation

Represent each list of successors as a list of gaps to exploit thelocality of reference Back

Node Outdegree Successors... ... ...15 11 13, 15, 16, 17, 18, 19, 23, 24, 203, 315, 103416 10 15, 16, 17, 22, 23, 24, 315, 316, 317, 304117 018 5 13, 15, 16, 17, 50... ... ...

Node Outdegree Successors... ... ...15 11 3, 1, 0, 0, 0, 0, 3, 0, 178, 111, 71816 10 1, 0, 0, 4, 0, 0, 290, 0, 0, 272317 018 5 9, 1, 0, 0, 32... ... ...

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• 23/22

Page 25: Pushing the Envelope in Graph Compression · Pushing the Envelope in Graph Compression Panagiotis Liakos 1Katia Papakonstantinopoulou Michael Sioutis2 1University of Athens, 2Universit

Reference list

Code each adjacency list as a “modified” version of a previous list toexploit similarity (copy-property) Back

Node Outdegree Successors... ... ...15 11 13, 15, 16, 17, 18, 19, 23, 24, 203, 315, 103416 10 15, 16, 17, 22, 23, 24, 315, 316, 317, 304117 018 5 13, 15, 16, 17, 50... ... ...

Node Outdegree Reference Copy list Extra nodes... ... ...15 11 0 13, 15, 16, 17, 18, 19, 23, 24, 203, 315, 103416 10 1 01110011010 22, 316, 317, 304117 018 5 3 11110000000 50... ... ...

Katia Papakonstantinopoulou (University of Athens) Pushing the Envelope in Graph Compression-• 24/22