Mercurial > hg > Papers > 2013 > nobuyasu-jssst
changeset 15:ac82fd7e1ea1
added makegraph.sh
author | Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 18 Jul 2013 07:11:43 +0900 |
parents | 906c76445554 |
children | f5028ec67c38 |
files | Paper/figures/non_destructive_tree.pdf Paper/gnuplot/makegraph.sh Paper/jssst.tex |
diffstat | 3 files changed, 13 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Paper/gnuplot/makegraph.sh Thu Jul 18 07:11:43 2013 +0900 @@ -0,0 +1,11 @@ +#!/bin/sh +#plot 'hoge.csv' using '%lf,%lf' +#set xrange[0:45] +gnuplot << EOF +set terminal postscript eps +set output 'graph.eps' +set title 'title' +set xlabel 'nuber of nodes' +set ylabel 'avarage time' +plot 'test.dat' using 1:2 with linespoints, 'test2.dat' using 1:2 with linespoints +EOF
--- a/Paper/jssst.tex Thu Jul 18 01:19:47 2013 +0900 +++ b/Paper/jssst.tex Thu Jul 18 07:11:43 2013 +0900 @@ -182,7 +182,7 @@ \subsection{非破壊的木構造木構造} 非破壊的木構造は破壊的木構造とは違い一度作成したデータを破壊することはない. 非破壊的木構造においてデータの編集を行う場合は, root から編集のあったノードまでコピー -を行い新しく作成したノードへとつなげることで行う. +を行い新しく木構造を作成することで行う. 編集が行われない部分は参照をもたせる. 図\ref{fig:nondestractive}は非破壊的木構造の編集を表している. @@ -196,7 +196,7 @@ 非破壊的木構造により, 木構造を編集しながら走査することが可能となる. -\subsection{Jungleの特徴} +\subsection{Jungle におけるデータ編集}