代码搜索:methods
找到约 10,000 项符合「methods」的源代码
代码结果 10,000
www.eeworm.com/read/113400/15456783
h btnode.h
// -*- Mode: C++ -*-
// BTnode.h
//
// Copyright (c) 1996, Regents of the University of California
// $Header: /usr/local/devel/GiST/libGiST/BTree/BTnode.h,v 1.1.1.1 1996/08/06 23:47:18
www.eeworm.com/read/109555/15554350
h 10-4.h
#ifndef SEARCH_METHODS
#define SEARCH_METHODS
//用顺序查找法在数组list中查找值为key的元素
//若找到,返回该元素下标,否则返回-1
template
int SeqSearch(T list[], int n, T key)
{
for(int i=0;i < n;i++)
if (l
www.eeworm.com/read/109555/15554351
h 10-5.h
#ifndef SEARCH_METHODS
#define SEARCH_METHODS
// 用折半查找方法,在元素呈升序排列的数组list中查找值为key的元素
template
int BinSearch(T list[], int n, T key)
{
int mid, low, high;
T midvalue;
low=
www.eeworm.com/read/109554/15554471
h 10_5.h
#ifndef SEARCH_METHODS
#define SEARCH_METHODS
// 用折半查找方法,在元素呈升序排列的数组list中查找值为key的元素
template
int BinSearch(T list[], int n, T key)
{
int mid, low, high;
T midvalue;
low=
www.eeworm.com/read/109554/15554474
h 10_4.h
#ifndef SEARCH_METHODS
#define SEARCH_METHODS
//用顺序查找法在数组list中查找值为key的元素
//若找到,返回该元素下标,否则返回-1
template
int SeqSearch(T list[], int n, T key)
{
for(int i=0;i < n;i++)
if (l
www.eeworm.com/read/107554/15605125
hh objptrvec.hh
# ifndef ObjPtrVec_hh
# define ObjPtrVec_hh ObjPtrVec_hh
using namespace std;
# include
class ObjPtrVec {
public:
// Constructors/Destructors
ObjPtrVec();
// Accessors
www.eeworm.com/read/107554/15605128
hh obj.hh
# ifndef Obj_hh
# define Obj_hh Obj_hh
class Obj {
public:
// Constructors/Destructors
Obj();
Obj(int val);
// Accessors
inline const int & getVal() const;
// Input/Out
www.eeworm.com/read/105943/15651917
url components.url
[DEFAULT]
BASEURL=http://www.methods-tools.com/tools/components.html
[InternetShortcut]
URL=http://www.methods-tools.com/tools/components.html
Modified=E0D3C4A0ED81C00146
www.eeworm.com/read/104313/15699382
h connpnt.h
/**************************************************************************
* *
* Light OPC Server development library
www.eeworm.com/read/104100/15710204
h shellfolder.h
//
// ShellFolder.h
//
#ifndef _SHELLFOLDER_H
#define _SHELLFOLDER_H
#include "EnumIDL.h"
class CShellFolder : public IShellFolder, public IPersistFolder
{
friend class CShellView;
frie