代码搜索:StackNode
找到约 208 项符合「StackNode」的源代码
代码结果 208
www.eeworm.com/read/298285/7968321
c misc.c
/*
* Miscellaneous functions for Dinero IV.
* Written by Jan Edler and Mark D. Hill
*
* Copyright (C) 1997 NEC Research Institute, Inc. and Mark D. Hill.
* All rights reserved.
* Copyright (C)
www.eeworm.com/read/123822/14612230
c stackstack.c
/***行编辑程序***Created by YYF at 20041220****/
#include "myhdr.h"
typedef struct node{
int data;
struct node *next;
}stacknode;
typedef struct{
stacknode *top;
}stacklist;
void LineEd
www.eeworm.com/read/423031/10592894
cpp dystack.cpp
#include
#include
#include
typedef struct stacknode
{
int data;
stacknode *nextptr;
} Stacknode;
typedef Stacknode* sptr;
void push (sptr*,int);
int pop(s
www.eeworm.com/read/364995/9883755
h stack.h
// Stack.h: interface for the Stack class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_STACK_H__792F029E_3C57_4BD4_BC52_44E4F4029A79__INCLUDED_)
#d
www.eeworm.com/read/213138/15141844
h fractalview.h
// FractalView.h : interface of the CFractalView class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_FRACTALVIEW_H__C8DB5EAD_1A1A_11D6_BBF5_CC0
www.eeworm.com/read/319454/13451542
h stack.h
struct SStackNode
{
int iStackID;//所属的栈
int iCode; //类型的编码
float fWorth;//对于数据,则用来存储数据
};
class CStack
{
private:
int m_nStackLength;//栈的长度
SStackNode *m_pStackNode;//栈指针
www.eeworm.com/read/319454/13451546
cpp stack.cpp
#include "stack.h"
CStack::CStack()
{
m_nStackLength = 0;
m_pStackNode = 0;
m_CurrPos = 0;
}
CStack::~CStack()
{}
bool CStack::IsEmpty()
{
if(m_CurrPos == 0)
return true;
re
www.eeworm.com/read/123822/14612231
c stackapp.c
/***十进制转换为三进制***Created by YYF at 20041215***/
#include "myhdr.h"
#define BIT 3
typedef struct node{
int data;
struct node *next;
}stacknode;
typedef struct{
stacknode *top;
}stacklist
www.eeworm.com/read/209560/15217495
c except.c
/*
* Portable Exception Handling for ANSI C.
* Copyright (C) 1999 Kaz Kylheku
*
* Free Software License:
*
* All rights are reserved by the author, with the following e
www.eeworm.com/read/171268/9763881
c 3.1linkstack.c
/*链栈*/
#include "stdio.h"
#define Maxsize 100
typedef struct node
{
int data;
struct node *next;
}StackNode,*LinkStack;
LinkStack top;
int y;
LinkStack Init_LinkStack()
{