代码搜索:Retrieve
找到约 2,147 项符合「Retrieve」的源代码
代码结果 2,147
www.eeworm.com/read/435150/7796519
h list.h
// List.h classes supporting a linked list
#ifndef LIST_H
#define LIST_H
#include "Box.h"
class TruckLoad {
public:
// Constructors
TruckLoad(Box* pBox = 0, int count = 1);
www.eeworm.com/read/435150/7796631
h list.h
// List.h classes supporting a linked list
#ifndef LIST_H
#define LIST_H
#include "Box.h"
// Class defining a list element
class Package {
public:
Package(Box* pNewBox);
www.eeworm.com/read/435150/7796635
cpp list.cpp
// List.cpp
#include "Box.h"
#include "List.h"
// Package class definitions
// Package constructor
Package::Package(Box* pNewBox):pBox(pNewBox), pNext(0){}
// Retrieve the Box pointer
Bo
www.eeworm.com/read/435150/7796636
h list.h
// List.h classes supporting a linked list
#ifndef LIST_H
#define LIST_H
#include "Box.h"
// Class defining a TruckLoad - implements the list
class TruckLoad {
public:
TruckLoad(Box*
www.eeworm.com/read/197407/7997738
h nmatrix.h
// N-matrix
#ifndef NMatrix_
#define NMatrix_
#include
#include
#include "xcept.h"
template
class NMatrix {
public:
NMatrix(int size = 10)
www.eeworm.com/read/197407/7997913
cpp nmatrix.cpp
#include
#include "nmatrix.h"
void main(void)
{
const int n = 6;
NMatrix X(n);
for (int i = 1; i
www.eeworm.com/read/197407/7998073
h zmatrix.h
// Z-matrix
#ifndef ZMatrix_
#define ZMatrix_
#include
#include
#include "xcept.h"
template
class ZMatrix {
public:
ZMatrix(int size = 10
www.eeworm.com/read/197407/7998341
cpp trirow.cpp
// test TriByRows matrix class
#include
#include
#include "trirow.h"
void main(void)
{
try {
TriByRows A(20);
A.Store(22,1,1).Store(44,5,5);
www.eeworm.com/read/197407/7998683
cpp zmatrix.cpp
#include
#include "zmatrix.h"
void main(void)
{
const int n = 6;
ZMatrix X(n);
for (int j = 1; j
www.eeworm.com/read/197407/7998780
cpp aupper.cpp
#include
#include "blower.h"
#include "aupper.h"
void main(void)
{
const int n = 4;
LowerMatrix X(4);
UpperMatrix Y(4);
// initialize X
for (int i = 1; i