登录
首页 » C++ » C++Primer Plus第6版中文版源代码

C++Primer Plus第6版中文版源代码

于 2022-03-16 发布 文件大小:200.23 kB
0 104
下载积分: 2 下载次数: 1

代码说明:

应用背景C++PrimerPlus第六版课本源代码,和课本同步,嗯注释是英文的(肯定啊),代码和课本上的一样,官网的链接挂了发在这里供各位学习关键技术 示例: // stack.h -- class definition for the stack ADT #ifndef STACK_H_ #define STACK_H_ typedef unsigned long Item; class Stack { private: enum {MAX = 10}; // constant specific to class Item items[MAX]; // holds stack items int top; // index for top stack item public: Stack(); bool isempty() const; bool isfull() const; // push() returns false if stack already is full, true otherwise bool push(const Item & item); // add item to stack // pop() returns false if stack already is empty, true otherwise bool pop(Item & item); // pop top into item }; #endif

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • stack
    数据结构 堆栈 实现了以下功能: cout<<"----------------主菜单---------------"<<endl <<"* 1.建立 *"<<endl <<"* 2.输出 *"<<endl <<"* 3.判断栈是否为空 *"<<endl <<"* 4.栈的长度 *"<<endl <<"* 5.输出栈顶元素 *"<<endl <<"* 6.进栈 *"<<endl <<"* 7.出栈 *"<<endl <<"* 8.遍历 *"<<endl <<"* 9.数制转换 *"<<endl <<"* 10.清空 *"<<endl <<"* 11.销毁 *"<<endl <<"* 12.退出 *"<<endl <<"--------------------------------------"<<endl<<endl (data structure stack)
    2013-11-01 11:05:10下载
    积分:1
  • 艾小屋--用opencv主跟踪—
    该程序是用C++编程语言。
    2022-10-15 20:20:02下载
    积分:1
  • GOEN_375b84c6
    A program to consicle very mad and good !! yes :
    2010-06-05 11:50:38下载
    积分:1
  • matlab-signal-processing
    一本关于matlab信号处理很好的教程,书中涵盖了信号处理所能用的所有程序(A good tutorial on matlab signal processing, the book covers all the signal processing program that can be used)
    2013-11-27 21:29:53下载
    积分:1
  • code-string-sort-v2
    Sorting algorithm absolutely awesome...once in a century code.. hello everybody out there meet the fastest and the best programmer in the whole of choina....
    2011-08-19 17:16:12下载
    积分:1
  • SONGCIFA
    松弛法解方程C程序(relaxation method of solving equations C program.)
    2006-11-24 11:23:20下载
    积分:1
  • ACRush_2_1
    这是acm高手楼天城的比赛代码,很有用哦,对于提高算法非常有用(This is a master of building Tiancheng acm game code, very useful oh, for improving the algorithm)
    2011-06-16 21:00:05下载
    积分:1
  • C++ - 副本
    说明:  找到C++大学教程第九版的电子书,服务于学生及C++初学者(Find out the PDF of the ninth edition of C + + university course for students and C + + beginners)
    2020-06-09 18:35:46下载
    积分:1
  • C# 雷赛源码 VS2005开发的测试小程序
    VS2005开发的测试小程序  本资源是很全的雷赛运动控制卡程序,全部是源码,大家可以测试学习用,很不错的
    2022-05-26 23:29:41下载
    积分:1
  • en.stsw-stm8a-lin
    ST单片机的LIN总线通信代码。详细说明,范例,库。Description of STM8 LIN software package (STSW-STM8A-LIN) release 5.1(Description of STM8 LIN software package (STSW-STM8A-LIN) release 5.1)
    2020-12-29 10:59:01下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载