[complement-svn] SF.net SVN: complement: [1435] trunk/WWW/explore/Complement
Status: Pre-Alpha
Brought to you by:
complement
From: <com...@us...> - 2006-12-05 15:38:18
|
Revision: 1435 http://svn.sourceforge.net/complement/?rev=1435&view=rev Author: complement Date: 2006-12-05 07:38:09 -0800 (Tue, 05 Dec 2006) Log Message: ----------- remove obsolete and incomplete string-compare in HTML Modified Paths: -------------- trunk/WWW/explore/Complement/Content-string.shtml Removed Paths: ------------- trunk/WWW/explore/Complement/string-compare.shtml Modified: trunk/WWW/explore/Complement/Content-string.shtml =================================================================== --- trunk/WWW/explore/Complement/Content-string.shtml 2006-12-04 16:38:50 UTC (rev 1434) +++ trunk/WWW/explore/Complement/Content-string.shtml 2006-12-05 15:38:09 UTC (rev 1435) @@ -2,7 +2,6 @@ <!-- $Id$ --> <div class="nodecor"> <a href="index.shtml">Complement Home</a><br> -<a href="string-compare.shtml">Comparison of Strings Implementations in C++ language</a><br> <a href="compare.pdf">Comparison of Strings Implementations in C++ language (PDF)</a><br> <br> <a href="http://sourceforge.net"><img src="http://sourceforge.net/sflogo.php?group_id=63160&type=2" width="125" height="37" border="0" alt="SourceForge.net Logo"></a><br> Deleted: trunk/WWW/explore/Complement/string-compare.shtml =================================================================== --- trunk/WWW/explore/Complement/string-compare.shtml 2006-12-04 16:38:50 UTC (rev 1434) +++ trunk/WWW/explore/Complement/string-compare.shtml 2006-12-05 15:38:09 UTC (rev 1435) @@ -1,75 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> - -<!-- Time-stamp: <03/10/07 16:16:39 ptr> --> -<!-- $Id$ --> - -<html> - <head> - <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> - <link rel="stylesheet" type="text/css" href="main.css" media="screen" title="general"> - <link rel="stylesheet" type="text/css" href="decor.css" media="screen" title="general"> - <link rel="stylesheet" type="text/css" href="float.css" media="screen" title="general"> - <title>C++ string implementation performance</title> - </head> - - <body> -<!--#include file="head-string.shtml" --> -<div class="toppic"> -<img src="img/jpg/apropos.jpg"> -</div> -<div class="main"> - <!-- <h2 class="lheader">Related links</h2> --> - -<h2 class="lheader"><font size="+2">Comparison of Strings Implementations in C++ language</font></h2> - by Petr Ovchenkov - -<h2 class="lheader">Abstract</h2> -<p> -<i> -In this article I present attempt to made comparison of strings implementation -in STLport and GNU libstd++. -Also I want to show results that can help to answer on question: what better -from practice point of view, constant or linear complexity of strings copy algorithm? This comparison is done on the base of STLport strings and ropes. -I expect that this results will help to make decision between STL implementations -as well proper choice of strings implementation. -</i> -</p> - -<h2 class="lheader">1. Computers</h2> -<p>Computers and operational environments that used in tests:</p> -<ul> - <li>Hands-made machine (assembled by <a href="http://www.tersys.ru">Tersys company</a>) with 2 1.33-GHz AMD - Athlon XP 1500+ processors under Linux (kernel 2.4.20, glibc 2.2.5). - </li> -</ul> - -<h2 class="lheader">2. Compilers</h2> -<p> -For Unix-like systems was used GNU gcc 3.3 with appropriate libstd++ libraries -(version 3). The GNU gcc 3.1.1 and 3.2.3 are worse up to 28% (for some tests). -</p> - -<h2 class="lheader">3. Time Measure</h2> -<p> -Due to “time” function has different options and output format on Linux and other -UINIXes, I use program time from <a href="index.shtml">complement project bundle</a>. By the way this function provide high-precision time measure. -</p> - -<h2 class="lheader">4. Statistic</h2> -<p> -Every experiment repeate 10 times. For every result series I do ordinal statistical manipulation. Mean time is -</p> - -<p> -And mean square deviation -</p> - -<p> -or -</p> - -</div> -<!--#include file="foot.shtml" --> - </body> -</html> - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |