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
bvectr1.cpp
Upload User: dq031136
Upload Date: 2022-08-08
Package Size: 802k
Code Size: 1k
Category:
Visual C++ Books
Development Platform:
C++ Builder
- #ifdef __BCPLUSPLUS__
- #include <iostream.h>
- #include <bvector.h>
- #else
- #include <iostream>
- #include <bvector>
- #endif
- using namespace std;
- const ARRAY_SIZE = 4;
- void main(void)
- {
- // Dynamically allocated vector begins with 0 elements.
- bit_vector theVector(ARRAY_SIZE);
- // Intialize the array to contain the members [100, 200, 300, 400]
- for (int cEachItem = 0; cEachItem < ARRAY_SIZE; cEachItem++)
- if(cEachItem>1)
- theVector.push_back(cEachItem - 2);
- else
- theVector.push_back(cEachItem);
- cout << "First element: " << theVector.front() << endl;
- cout << "Last element: " << theVector.back() << endl;
- cout << "Elements in vector: " << theVector.size() << endl;
- // Delete the last element of the vector. Remember that the vector
- // is 0-based, so theVector.end() actually points 1 element beyond
- // the end.
- cout << "Deleting last element." << endl;
- theVector.erase(theVector.end() - 1);
- cout << "New last element is: " << theVector.back() << endl;
- // Delete the first element of the vector.
- cout << "Deleting first element." << endl;
- theVector.erase(theVector.begin());
- cout << "New first element is: " << theVector.front() << endl;
- cout << "Elements in vector: " << theVector.size() << endl;
- }