代码搜索:Stack
找到约 10,000 项符合「Stack」的源代码
代码结果 10,000
www.eeworm.com/read/226138/14493545
h stack.h
//THE FILE INCLUDES THE CLASS "NODE" "LIST" "STACK" "QUEUE"
//FILE STACK.H
#include
#include
#include
class NODE
{
friend class LIST;
private:
www.eeworm.com/read/125329/14497581
s stack.s
;;; Copyright ARM Ltd 2002. All rights reserved.
AREA Stacks, DATA, NOINIT
EXPORT top_of_stacks
; Create dummy variable used to locate stacks in memory
top_of_stacks
www.eeworm.com/read/125329/14497614
s stack.s
;;; Copyright ARM Ltd 2002. All rights reserved.
AREA Stacks, DATA, NOINIT
EXPORT top_of_stacks
; Create dummy variable used to locate stacks in memory
top_of_stacks
www.eeworm.com/read/125329/14497653
s stack.s
;;; Copyright ARM Ltd 2002. All rights reserved.
AREA Stacks, DATA, NOINIT
EXPORT top_of_stacks
; Create dummy variable used to locate stacks in memory
top_of_stacks
www.eeworm.com/read/125329/14497685
s stack.s
;;; Copyright ARM Ltd 2002. All rights reserved.
AREA Stacks, DATA, NOINIT
EXPORT top_of_stacks
; Create dummy variable used to locate stacks in memory
top_of_stacks
www.eeworm.com/read/125158/14511401
txt stack.txt
What is implemented
===================
The following features are present in the TCP/IP stack
code:
IP layer.
ICMP.
TCP layer.
UDP layer.
local loopback.
Realtek 8029 PCI eth
www.eeworm.com/read/225696/14525185
h stack.h
//堆栈类模板的定义
template //定义堆栈类的模板
class Stack
{
T* data;
int top; //栈顶
int size; //堆栈的尺寸
int IsEmpty() //判断堆栈是否为空
{
return (top
www.eeworm.com/read/225696/14525189
cpp stack.cpp
// 堆栈类 Stack的实现 ,实现压入、弹出操作
#include
#include "stack.h"
using namespace std;
template //类模板的成员函数的实现
void Stack::push(T a)
{
if ( IsFull() )
{
cout
www.eeworm.com/read/225618/14529688
h stack.h
#ifndef _LIBSTACK_H
#define _LIBSTACK_H
template
struct stack_tl {
elem_t elem[NR];
int sp;
public: stack_tl()
{
sp = -1;
}
int empty() { return sp == -1; }
int full()
www.eeworm.com/read/225593/14531739
cpp stack.cpp
// Stack.cpp: implementation of the CStack class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Stack.h"
////////////////////////////