代码搜索:methods
找到约 10,000 项符合「methods」的源代码
代码结果 10,000
www.eeworm.com/read/170872/9783380
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 jmh
www.eeworm.com/read/268481/11136816
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/268481/11136820
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/413521/11152693
h usbcpp.h
// UsbCpp.h
#pragma once
using namespace System;
namespace UsbCpp
{
public __gc class Class1
{
// TODO: Add your methods for this class here.
};
}
www.eeworm.com/read/300216/13928675
c jcpipe.c
/*
* jcpipe.c
*
* Copyright (C) 1991, 1992, Thomas G. Lane.
* This file is part of the Independent JPEG Group's software.
* For conditions of distribution and use, see the accompanying READM
www.eeworm.com/read/134718/13975981
h dvorak_classfactory.h
/*
THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR
www.eeworm.com/read/113400/15456713
h rtnode.h
// -*- Mode: C++ -*-
// RTnode.h
//
// Copyright (c) 1996, Regents of the University of California
// $Header: /usr/local/devel/GiST/libGiST/RTree/RTnode.h,v 1.1.1.1 1996/08/06 23:47:26