Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
p_dic.c
Package: leda.tar.gz [view]
Upload User: gzelex
Upload Date: 2007-01-07
Package Size: 707k
Code Size: 0k
Category:
Mathimatics-Numerical algorithms
Development Platform:
MultiPlatform
- #include <LEDA/p_dictionary.h>
- #include <LEDA/list.h>
- #include <math.h>
- typedef p_dictionary<float,string> PDIC;
- main()
- {
- p_dictionary<float,string> Dic;
- list<PDIC> L;
- int n = read_int("n = ");
- for(int i = 1; i<n; i++)
- { Dic = Dic.insert(sqrt(i),string("sqrt(%d)",i));
- L.append(Dic);
- }
- forall(Dic,L)
- { p_dic_item it;
- forall_items(it,Dic) cout << Dic.inf(it) << "=" << Dic.key(it) << " ";
- newline;
- }
- return 0;
- }