//----------------------------------------------------------------------------
//! TSArray.cpp
//!
//! Author: Yuge Zhou SUID: 973916484
//!
//! @file
//!
//! @brief This file impelement the Class TSArray.
//!
//! This class provides a basic function to implement the three-dimensioned array.
//! This single-dimensioned array can accece the element use three index in each dimension.
//! and user can also chang the size of the array according to user's wishes.
//! user can use << and >> to add the data of the array easily.
//!
//! This class use the NodeSLList.h and IntNode.h
//! to help implement the function
//----------------------------------------------------------------------------
#include"IntNode.h"
#include"NodeSLList.h"
#include"TSArray.h"
#include <iostream>
#include <iomanip>
using std::ostream ;
using std::istream;
using std::cerr;
using std::cout;
using std::endl;
#include <iomanip>
using std::setw;
//! @brief Constructor : Creates the Board object.
TSArray::TSArray(int rows, int columns, int depth):
rowsMax(rows), columnsMax(columns), depthMax(depth),init(0)
{
ns = new NodeSLList();
}
//! @brief Destructor: deletes TSArray object.
TSArray::~TSArray()
{
ns->DestroyList();
}
//! @brief Define the () operator the get data of element the array
int TSArray::operator()( int row, int column, int depth) const
{
// if index is out of range or substring length < 0,
// write a Error Alert and terminate program
if(row>rowsMax||column> columnsMax||depth > depthMax||
row<= 0||column <= 0||depth <= 0)
{
if(row==0 && column==0 && depth == 0)
return 0;
cerr << "Error: out of range!" << endl;
exit( 1 ); // terminate program
}
/*if(ns->IsEmpty())
{
cerr << "Error: Array is Empty!" << endl;
exit( 1 );
}*/
IntNode *node =NULL;
for(int i=1;i<= ns->GetSize();i++)
{
node = &(ns->RetrieveNode(i));
if(node->GetRow()==row && node->GetColumn() == column && node->GetDepth()==depth)
return node->GetData();
}
//cerr << "Error: This element do not exist!" << endl;
//exit( 1 );
return 0;
}
//! @brief Define the () operator the get data of element the array
int &TSArray::operator()( int row, int column, int depth)
{
if(row>rowsMax||column> columnsMax||depth > depthMax||
row<= 0||column <= 0||depth <= 0)
{
if(row==0 || column==0 || depth == 0)
{
init =0;
return init;
}
cerr << "Error: out of range!" << endl;
exit( 1 ); // terminate program
}
IntNode *node =NULL;
for(int i=1;i<= ns->GetSize();i++)
{
node = &(ns->RetrieveNode(i));
if(node->GetRow()==row && node->GetColumn() == column && node->GetDepth()==depth)
return node->data;
}
IntNode newNode(row, column, depth);
ns->AddToHead(newNode);
return ns->RetrieveNode(1).data;
}
//! @brief Define the = operator the refined the assignment function
const TSArray &TSArray::operator=(const TSArray &right )
{
if ( &right != this ) // avoid self-assignment
{
rowsMax=right.rowsMax;
columnsMax = right.columnsMax;
depthMax = right.depthMax ;
while(ns->GetSize()!=0)
ns->DeleteFromHead();
for(int i=right.ns->GetSize(); i<0;i--)
{
ns->AddToHead(right.ns->RetrieveNode(i));
}
}
return *this;
}
//! @brief Define the << operator the help output the detail of the array
ostream &operator<<(ostream& output, const TSArray & tsarray)
{
for(int i=1; i<= tsarray.depthMax ; i++)
{
cout<<"----------- Depth = "<<i<<" --------------"<<endl;
for(int j=1; j<= tsarray.columnsMax; j++)
{
for(int k=1; k<= tsarray.rowsMax; k++)
{
output<<setw( 5 )<<tsarray(i,j,k)<<" ";
}
output<<endl;
}
}
return output;
}
//! @brief Define the >> operator the help input the data of the array
istream &operator>>(istream& input , TSArray & tsarray)
{
for(int i=1; i<= tsarray.depthMax ; i++)
{
for(int j=1; j<= tsarray.columnsMax; j++)
{
for(int k=1; k<= tsarray.rowsMax; k++)
{
input>>tsarray(i,j,k);
}
}
}
return input;
}
//! @brief Define the == operator to compare the TSArray object
bool TSArray::operator==( const TSArray &right) const
{
return right.rowsMax == rowsMax &&
right.columnsMax == columnsMax &&
right.depthMax == depthMax;
}
//! @brief Define the != operator to compare the TSArray object
void TSArray::ChangeSize(int row, int column, int depth)
{
if( rowsMax > row || columnsMax > column || depthMax > depth)
{
IntNode *node;
int i=1;
while(i<= ns->GetSize())
{
node = &(ns->RetrieveNode(i));
if(node->GetColumn()>column || node->GetDepth()> depth || node->GetRow() >row)
ns->DeleteNode(i);
i++;
}
}
rowsMax = row;
columnsMax = column;
depthMax = depth;
}
#ifdef _TSARRAY_TEST_
int main()
{
TSArray arr(2,2,2);
cout<<"arr(0,0,0) = "<<arr(0,0,0)<<endl;
cout<<"Please input the Number for array:"<<endl;
cin>>arr;
cout<<"the array are list below :\n"<<arr;
TSArray arr2(1,1,1);
arr(1,1,1)=99;
cout<<"compare: "<< (arr==arr2)<<endl;
cout<<"arr2(1,1,1)= "<<arr2(1,1,1)<<endl;
arr = arr2;
cout<<"compare: "<< (arr==arr2)<<endl;
cout<<"arr(1,1,1)="<<arr(1,1,1)<<endl;
cout<<arr(2,1,1);
return 0;
}
#endif
C++ standard library From Wikipedia
C++ standard library
From Wikipedia, the free encyclopedia
In C++, the Standard Library is a collection of classes and functions, which are written in the core language. The Standard Library provides several generic containers, functions to utilise and manipulate these containers, function objects, generic strings and streams (including interactive and file I/O), support for some language features, and every day functions for tasks such as finding the square root of a number. The C++ Standard Library also incorporates the ISO C90 C Standard Library. Features of the Standard Library are declared within the std namespace.
The Standard Template Library (STL) is a subset of the C++ standard library, and contains the containers, algorithms, iterators, function objects, etc.; although some people use the term STL interchangeably with the C++ standard library.
Header files in the C++ standard library do not end in “.h”.
Standard headers
The following files contain the declarations of the Standard Library.
[edit] Containers
- <bitset>
- Provides the specialized container class
std::bitset, a bit array. - <deque>
- Provides the container class template
std::deque, a double-ended queue. - <list>
- Provides the container class template
std::list, a doubly-linked list. - <map>
- Provides the container class templates
std::mapandstd::multimap, an associative array and multimap. - <queue>
- Provides the container adapter class
std::queue, a single-ended queue. - <set>
- Provides the container class templates
std::setandstd::multiset, sorted associative containers or sets. - <stack>
- Provides the container adapter class
std::stack, a stack. - <vector>
- Provides the container class template
std::vector, a dynamic array.
[edit] General
- <algorithm>
- Provides definitions of many container algorithms.
- <functional>
- Provides several function objects, designed for use with the standard algorithms.
- <iterator>
- Provides classes and templates for working with iterators.
- <locale>
- Provides classes and templates for working with locales.
- <memory>
- Provides facilities for memory management in C++, including the class template
std::auto_ptr. - <stdexcept>
- Contains standard exception classes such as
std::logic_errorandstd::runtime_error, both derived fromstd::exception. - <utility>
- Provides the template class
std::pair, for working with pairs (two-member tuples) of objects.
[edit] Strings
- <string>
- Provides the C++ standard string classes and templates.
[edit] Streams and Input/Output
- <fstream>
- Provides facilities for file-based input and output. See fstream.
- <ios>
- Provides several types and functions basic to the operation of iostreams.
- <iostream>
- Provides C++ input and output fundamentals. See iostream.
- <iosfwd>
- Provides forward declarations of several I/O-related class templates.
- <iomanip>
- Provides facilities to manipulate output formatting, such as the base used when formatting integers and the precision of floating point values.
- <istream>
- Provides the template class
std::istreamand other supporting classes for input. - <ostream>
- Provides the template class
std::ostreamand other supporting classes for output. - <sstream>
- Provides the template class
std::sstreamand other supporting classes for string manipulation. - <streambuf>
[edit] Numerics
- <complex>
- Provides class template
std::complexand associated functions for working with complex numbers. - <numeric>
- Provides algorithms for numerical processing
- <valarray>
- Provides the template class
std::valarray, an array class optimized for numeric processing.
[edit] Language Support
- <exception>
- Provides several types and functions related to exception handling, including
std::exception, the base class of all exceptions thrown by the Standard Library. - <limits>
- Provides the template class
std::numeric_limits, used for describing properties of fundamental numeric types. - <new>
- Provides operators
newanddeleteand other functions and types composing the fundamentals of C++ memory management. - <typeinfo>
- Provides facilities for working with C++ run-time type information.
[edit] C Standard Library
Each header from the C standard library is included in the C++ standard library under a different name, generated by removing the .h, and adding a ‘c’ at the start, for example ‘time.h’ becomes ‘ctime’. The only difference between these headers and the traditional C standard library headers is that where possible the functions should be placed into the std:: namespace (although few compilers actually do this). In ISO C, functions in standard library are allowed to be implemented by macros, which is not allowed by ISO C++.
如何安装WordPress
如何安装WordPress图解_是地中云
关于WordPress如何安装的教程不少,但是这个教程通过图解的方式把安装过程分解为5步,您只要一步一步的照做,大概5分钟的时间就可以安装完毕了。下面请体验一下吧。 1 下载
Hello world!
Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!