Total members 10249 | Gratitudes |It is currently Thu May 17, 2012 7:36 am Login / Join Codemiles


All times are UTC [ DST ]




Post new topic Reply to topic  Quick reply  [ 2 posts ] 
Author Article
 Article subject: vectors in c++
PostPosted: Sat Mar 26, 2011 2:20 am 
Offline
Newbie
User avatar

Joined: Sat Mar 26, 2011 2:17 am
Posts: 1
Has thanked: 0 time
Have thanks: 1 time

1.A bit vector is a vector with binary elements, that is, each element is either a 0 or a 1. Small bit vectors are conveniently represented by unsigned integers. For example, an unsigned char can represent a bit vector of 8 elements. Larger bit vectors can be defined as arrays of such smaller bit vectors. Complete the implementation of the Bitvec class, as defined below. It should allow bit vectors of any size to be created and manipulated using the associated operators.
Code:
    
enum Bool 
{falsetrue};  
typedef unsigned char uchar;    
class 
BitVec {  
public:     
BitVec       (const short dim);     
BitVec       (const charbits);     
BitVec       (const BitVec&);     
~
BitVec    (void)       
 { 
delete vec
}     
BitVecoperator =    (const BitVec&);     
BitVecoperator &=   (const BitVec&);
BitVecoperator |=   (const BitVec&);    
BitVecoperator ^=   (const BitVec&);    
BitVecoperator <<=  (const short);     
BitVecoperator >>=  (const short);    
 
int    operator []    (const short idx);     
void   Set       (const short idx);     
void   Reset        (const short idx);       
BitVec  operator ~    (void);     
BitVec  operator &    (const BitVec&);     
BitVec  operator |    (const BitVec&);    
 
BitVec  operator ^    (const BitVec&);    
 
BitVec  operator <<   (const short n);    
 
BitVec  operator >>   (const short n);     
Bool   operator ==   (const BitVec&);     
Bool   operator !=    (const BitVec&);     
friend ostreamoperator << (ostream&, BitVec&);    
private:     
uchar  *vec;        // vector of 8*bytes bits     
short   bytes;       // bytes in the vector  
};
 



For this message the author vinoth1289 has received gratitude : msi_333
TOP
 Profile Send private message  
Reply with quote  
 Article subject: Re: vectors in c++
PostPosted: Sat Mar 26, 2011 10:14 am 
Offline
Mastermind
User avatar

Joined: Tue Mar 27, 2007 10:55 pm
Posts: 2272
Location: Earth
Has thanked: 39 time
Have thanks: 61 time
code not clear :S

_________________
Currenlty programming with : java , html , php , and javascript . (OCJP-6 certified )


TOP
 Profile Send private message  
Reply with quote  
Post new topic Reply to topic Quick reply  [ 2 posts ] 
Quick reply


  

All times are UTC [ DST ]


Users browsing similar posts

Users browsing this forum: No registered users and 1 guest



Jump to:  
Previous Article | Next Article 




Home
General Talks
Finished Projects
Code Library
Games
Tutorials

Java
C/C++
C-sharp
php
Script
JSP/Servlets
Ajax
ASP/ASP.net
Google SEO
Database
Communications
Phpbb3 styles
Photoshop tutorials
Flash tutorials
Find a job






Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team