热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

《C++捷径教程》读书笔记--Chapter16--模板(完结)

--《C++捷径教程》读书笔记--Chapter16--模板(完结)--Chapter16--模板--04162006Sun.--ComputerLab--L

//--《C++捷径教程》读书笔记--Chapter 16--模板(完结)
//--Chapter 16--模板
//--04/16/2006 Sun.
//--Computer Lab
//--Liwei

 

//--程序#1  说明模板函数示例
#include
using namespace std;

//template void swapargs(X &a, X &b)
template void swapargs(X &a, X &b)
{
 X temp;
 temp=a;
 a=b;
 b=temp;
}

int main()
{
 int i=10, j=20;
 double x=10.1, y=23.3;
 char a='x', b='z';

 cout<<"Original i,j: "< cout<<"Original x,y: "< cout<<"Original z,b: "<

 swapargs(i,j);
 swapargs(x,y);
 swapargs(a,b);

 cout<<"/n===============/n";

 cout<<"Swapped i,j: "< cout<<"Swapped x,y: "< cout<<"Swapped z,b: "<

 return 0;
}

//=================================================================//
//==============================END================================//
//=================================================================//
//--程序#2  说明模板函数示例
#include
using namespace std;

template
void myfunc(type1 x, type2 y)
{
 cout<}

int main()
{
 myfunc(10, "hi00000000000000000000");
 myfunc(0.23, 10L);

 return 0;
}
//=================================================================//
//==============================END================================//
//=================================================================//
//--程序#3  重载模板函数示例
#include
using namespace std;

//template void swapargs(X &a, X &b)
template void swapargs(X &a, X &b)
{
 X temp;
 temp=a;
 a=b;
 b=temp;
 cout<<"Inside template swapargs./n";
}

template<> void swapargs(int &a, int &b)
//void swapargs(int &a, int &b)
{
 int temp;
 temp=a;
 a=b;
 b=temp;
 cout<<"Inside swapargs int specialization./n";
}

int main()
{
 int i=10, j=20;
 double x=10.1, y=23.3;
 char a='x', b='z';

 cout<<"Original i,j: "< cout<<"Original x,y: "< cout<<"Original z,b: "<

 swapargs(i,j);
 swapargs(x,y);
 swapargs(a,b);

 cout<<"/n===============/n";

 cout<<"Swapped i,j: "< cout<<"Swapped x,y: "< cout<<"Swapped z,b: "<

 return 0;
}
//=================================================================//
//==============================END================================//
//=================================================================//
//--程序#4  重载模板本身
#include
using namespace std;

template void f(X a)
{
 cout<<"Inside f(X a)./n";
}

template void f(X a, Y b)
{
 cout<<"Inside f(X a, Y b)./n";
}

int main()
{
 f(10);
 f("dddddddd",544);

 return 0;
}
//=================================================================//
//==============================END================================//
//=================================================================//
//--程序#5  标准类型参数
#include
using namespace std;

template
void repeat(X data, int times)
{
 do{
  cout<  times--;
 }while(times);
}

int main()
{
 repeat("This is a test.", 311);
 repeat(100, 5);
 repeat(99.0/2, 4);

 return 0;
}

//=================================================================//
//==============================END================================//
//=================================================================//
//--程序#6  通用函数myabs()
#include
using namespace std;

template
X myabs(X val)
{
 return val<0? -val: val;
}

int main()
{
 cout< cout< cout< cout<

 return 0;
}
//=================================================================//
//==============================END================================//
//=================================================================//
//--程序#7  通用类
#include
using namespace std;

const int SIZE=100;

template
class queue{
 QType q[SIZE];
 int sloc,rloc;
public:
 queue() { sloc=rloc=0; }
 void qput(QType i);
 QType qget();
};

template
void queue::qput(QType i)
{
 if(sloc==SIZE)
 {
  cout<<"Queue is full./n";
  return;
 }
 sloc++;
 q[sloc]=i;
}

template
QType queue::qget()
{
 if(rloc==sloc)
 {
  cout<<"Queue Underflow./n";
  return 0;
 }
 rloc++;
 return q[rloc];
}

int main()
{
 queue a,b;

    a.qput(10);
 b.qput(19);
 a.qput(20);
 b.qput(1);

 cout< cout< cout< cout<

 queue c,d;

 c.qput(10.12);
 d.qput(19.99);
 c.qput(-20.0);
 d.qput(0.986);

 cout< cout< cout< cout<

/////////////////////////////////
 queue s;
 s.qput("liwei");
 s.qput("tanfeng");


 cout< cout< 
 return 0;

}
//=================================================================//
//==============================END================================//
//=================================================================//
//--程序#8  通用类
#include
using namespace std;

template
class myclass{
 Type1 i;
 Type2 j;
public:
 myclass(Type1 a, Type2 b) { i=a; j=b; }
 void show() { cout<};

int main()
{
 myclass ob1(10, 0.23);
 myclass ob2('X', "This is a test.");

 ob1.show();
 ob2.show();

 return 0;
}
//=================================================================//
//==============================END================================//
//=================================================================//
//--程序#9  通用安全数组
#include
using namespace std;

const int SIZE=10;

template
class atype{
 AType  a[SIZE];
public:
 atype() { register int i;  for(i=0; i AType  &operator[](int i);
};

template
AType &atype::operator [](int i)
{
 if(i<0 || i>SIZE-1)
 {
  cout<<"/nIndex value of "<  exit(1);
 }

 return a[i];
}

int main()
{
 atype intob;
 atype doubleob;

 int i;

 cout<<"Integer array: ";
 for(i=0; i for(i=0; i cout<

 cout<<"Double array: ";
 for(i=0; i for(i=0; i cout<

 intob[12]=100;

 return 0;
}

//=================================================================//
//==============================END================================//
//=================================================================//
//--程序#10  通用安全数组
#include
using namespace std;

//const int SIZE=10;

template
class atype{
 AType  a[size];
public:
 atype() { register int i;  for(i=0; i AType  &operator[](int i);
};

template
AType &atype::operator [](int i)
{
 if(i<0 || i>size-1)
 {
  cout<<"/nIndex value of "<  exit(1);
 }

 return a[i];
}

int main()
{
 atype intob;
 atype doubleob;

 int i;

 cout<<"Integer array: ";
 //for(i=0; i<10; i++) intob[i]=i;
 for(i=0; i<10; i++) cout< cout<

 cout<<"Double array: ";
 //for(i=0; i<15; i++) doubleob[i]=(double)i/3;
 for(i=0; i<15; i++) cout< cout<

 intob[12]=100;

 return 0;
}

//=================================================================//
//==============================END================================//
//=================================================================//
//--程序#11  通用安全数组
#include
using namespace std;

//const int SIZE=10;

template
class atype{
 AType  a[size];
public:
 atype() { register int i;  for(i=0; i AType  &operator[](int i);
};

template
AType &atype::operator [](int i)
{
 if(i<0 || i>size-1)
 {
  cout<<"/nIndex value of "<  exit(1);
 }

 return a[i];
}

int main()
{
 atype  intarray;
 atype doublearray;
 atype<> defarray;

 int i;

 cout<<"int array: ";
 for(i=0; i<100; i++) intarray[i]=i;
 for(i=0; i<100; i++) cout< cout<

 cout<<"double array: ";
 for(i=0; i<10; i++) doublearray[i]=(double)i/3;
 for(i=0; i<10; i++) cout< cout<

 cout<<"defarray array: ";
 for(i=0; i<10; i++) defarray[i]=i;
 for(i=0; i<10; i++) cout< cout<

 return 0;
}

//=================================================================//
//==============================END================================//
//=================================================================//
//--程序#12  通用类的显式特例化
#include
using namespace std;

template
class myclass{
 T x;
public:
 myclass(T a) { cout<<"Inside generic myclass./n"; x=a; }
 T getx() { return x;}
};

template<> class myclass{
 int x;
public:
 myclass(int a) { cout<<"Inside myclass specialization./n"; x=a*a; }
 int getx() { return x;}
};


int main()
{
 myclass  d(10.1);
 cout<<"double: "<

 myclass  i(5);
 cout<<"int: "<

 return 0;
}
//=================================================================//
//==============================END================================//
//=================================================================//


推荐阅读
  • 本文介绍了一种解决二元可满足性(2-SAT)问题的方法。通过具体实例,详细解释了如何构建模型、应用算法,并提供了编程实现的细节和优化建议。 ... [详细]
  • 本文深入探讨了HTTP请求和响应对象的使用,详细介绍了如何通过响应对象向客户端发送数据、处理中文乱码问题以及常见的HTTP状态码。此外,还涵盖了文件下载、请求重定向、请求转发等高级功能。 ... [详细]
  • 深入探讨栈和队列的应用实例——铁轨问题(Rails, ACM/ICPC CERC 1997, UVa 514)。该问题设定在一个城市火车站,涉及n节车厢从A方向驶入车站,并需按照特定顺序驶出B方向的铁轨。本文将通过算法实现来验证特定顺序的可行性。 ... [详细]
  • Codeforces Round #566 (Div. 2) A~F个人题解
    Dashboard-CodeforcesRound#566(Div.2)-CodeforcesA.FillingShapes题意:给你一个的表格,你 ... [详细]
  • 使用GDI的一些AIP函数我们可以轻易的绘制出简 ... [详细]
  • 在多线程编程环境中,线程之间共享全局变量可能导致数据竞争和不一致性。为了解决这一问题,Linux提供了线程局部存储(TLS),使每个线程可以拥有独立的变量副本,确保线程间的数据隔离与安全。 ... [详细]
  • 本文介绍了几种不同的编程方法来计算从1到n的自然数之和,包括循环、递归、面向对象以及模板元编程等技术。每种方法都有其特点和适用场景。 ... [详细]
  • 本题旨在通过给定的评级信息,利用拓扑排序和并查集算法来确定全球 Tetris 高手排行榜。题目要求判断是否可以根据提供的信息生成一个明确的排名表,或者是否存在冲突或信息不足的情况。 ... [详细]
  • 数据结构入门:栈的基本概念与操作
    本文详细介绍了栈这一重要的数据结构,包括其基本概念、顺序存储结构、栈的基本操作(如入栈、出栈、清空栈和销毁栈),以及如何利用栈实现二进制到十进制的转换。通过具体代码示例,帮助读者更好地理解和应用栈的相关知识。 ... [详细]
  • 本文探讨了在C++中如何有效地清空输入缓冲区,确保程序只处理最近的输入并丢弃多余的输入。我们将介绍一种不阻塞的方法,并提供一个具体的实现方案。 ... [详细]
  • 本文探讨了如何通过预处理器开关选择不同的类实现,并解决在特定情况下遇到的链接器错误。 ... [详细]
  • 本题探讨如何通过最大流算法解决农场排水系统的设计问题。题目要求计算从水源点到汇合点的最大水流速率,使用经典的EK(Edmonds-Karp)和Dinic算法进行求解。 ... [详细]
  • ###问题删除目录时遇到错误提示:rm:cannotremoveusrlocaltmp’:Directorynotempty即使用rm-rf,还是会出现 ... [详细]
  • 本文详细探讨了C语言中指针的概念,特别是指针在变量和数组中的应用。通过实例讲解,帮助读者更好地掌握指针的使用方法。 ... [详细]
  • 本次考试于2016年10月25日上午7:50至11:15举行,主要涉及数学专题,特别是斐波那契数列的性质及其在编程中的应用。本文将详细解析考试中的题目,并提供解题思路和代码实现。 ... [详细]
author-avatar
天之道
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有