File:Adjacencylist array of doublelinkedlists directedgraph.svg

Original file(SVG file, nominally 298 × 128 pixels, file size: 31 KB)

Captions

Captions

Add a one-line explanation of what this file represents

Summary edit

Description
Deutsch: Adjazenzlisten des gerichteten Graphen in implementiert mit mit einen knotenindizierten Array und doppelt verketteten Listen.
English: Adjacencylist of a digraph implemented as array of double linked lists.

Created using the tikz package and compiled with pdflatex.

\documentclass{standalone}
\usepackage{ifthen}
\usepackage{tikz}
\usetikzlibrary{positioning,calc,shapes.multipart,arrows}

\tikzstyle{pointer}=[fill=black, circle, minimum width = 3pt, inner sep=0]
\tikzstyle{link}=[>=stealth]
\tikzstyle{array}=[draw, fill=green!40, minimum width = 7mm, minimum height = 7mm]
\tikzstyle{list_node_horizontal}=[draw, rectangle split, rectangle split parts=3, rectangle split horizontal,
					rounded corners=2pt,minimum height=5mm, minimum width=15mm, node distance=8mm,fill=red!35]
\tikzstyle{nil}=[draw, rectangle,minimum height=4mm, minimum width=4mm, node distance=5mm]

\def\Adjacencylist#1{%
   % Draw left nil pointer
   \node[nil, right = of rightpointer0] (leftnil) {};
   \draw (leftnil.north east) -- (leftnil.south west);
   \draw (leftnil.north west) -- (leftnil.south east);
   \coordinate   (node0) at (leftnil); % shift list to the right
  % Draw  Adjacency List
  \foreach [count=\j] \element in \adlist {
	  % a counter the refers to the previous node
	  \prevnode=\j
	  \advance\prevnode by -1
	  % draw the node from the list with a left and a right pointer
      \node[list_node_horizontal,right = of node\the\prevnode] (node\j) {\nodepart{two} \element};
      \path[-] let \p1 = (node\j.three), \p2 = (node\j.center) in  
				node[pointer] (rightpointer\j) at (\x1+2,\y2){};
      \path[-] let \p1 = (node\j.text), \p2 = (node\j.center) in 
				node[pointer] (leftpointer\j) at (\x1+2,\y2){};
	  %draw incomming link from previous node
      \draw[link, bend left=10mm,->] (rightpointer\the\prevnode) edge (node\j);
	  % if we are not at the first node we draw an edge to to previous node
	  \ifthenelse{\j > 1}{\draw[link, bend left=5mm,->] (leftpointer\j) edge (node\the\prevnode);}{}
   }
   %Check if list is empty
   \ifthenelse{\j > 0}{	  %non-empty list
	   % Draw right nil pointer
	   \node[nil, right = of rightpointer\j] (rightnil) {};
	   \draw (rightnil.north east) -- (rightnil.south west);
	   \draw (rightnil.north west) -- (rightnil.south east);
	   % Draw edges to both nil pointer nodes
	   \path [link,->] (rightpointer\j) edge (rightnil)
					   (leftpointer1) edge (leftnil);
	   }
	   {% empty list
			% Use the ledt nil pointer as nil pointer for the whole list
			\path [link,->] (rightpointer0) edge (leftnil);
	   }
}

\newcount\prevnode
\begin{document}
% Define graph as a list of pairs, where each pair consists of a node, the delimiter "/" and  the set of adjacent nodes.
\newcommand{\inputgraph}{a/{b,d,e}, b/{c}, c/{d}, d/{a}, e/{}}
% Draw array and adjacency lists
\begin{tikzpicture}
\foreach [count=\i] \index/\adlist in \inputgraph {
    \node[array] (rightpointer0) at (0,-\i*0.7) {\index};
    \coordinate   (node0) at (0,-\i*0.7); 
    \Adjacencylist{\adlist}
}
\end{tikzpicture}
\end{document}
Date
Source Own work
Author Wdvorak

Licensing edit

I, the copyright holder of this work, hereby publish it under the following license:
Creative Commons CC-Zero This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication.
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current21:45, 28 July 2015Thumbnail for version as of 21:45, 28 July 2015298 × 128 (31 KB)Wdvorak (talk | contribs)User created page with UploadWizard

The following page uses this file:

File usage on other wikis

The following other wikis use this file:

Metadata