代码搜索:binary
找到约 10,000 项符合「binary」的源代码
代码结果 10,000
www.eeworm.com/read/372507/9507063
cpp binary.cpp
// test binary tree class
#include
#include "binary.h"
// globals
int count = 0;
BinaryTree a,x,y,z;
template
void ct(BinaryTreeNode *t) {count++;}
void m
www.eeworm.com/read/372507/9507079
h binary.h
// file binary.h
// LevelOrder and the private recursive PreOrder,
// InOrder, and PostOrder mthods have been changed
// from template functions to integer functions because
// Visual C++ is u
www.eeworm.com/read/372507/9507272
h binary.h
// file binary.h
// LevelOrder and the private recursive PreOrder,
// InOrder, and PostOrder mthods have been changed
// from template functions to integer functions because
// Visual C++ is u
www.eeworm.com/read/175135/9558549
cpp binary.cpp
// binary.cpp -- binary file I/O
#include // not required by most systems
#include
#include
#include // (or stdlib.h) for exit()
inline void eatline()
www.eeworm.com/read/366524/9810290
c binary.c
#include
int binary_search(int array[], int value, int size)
{
int found = 0;
int high = size, low = 0, mid;
mid = (high + low) / 2;
printf("\n\nLooking for %d\n", v
www.eeworm.com/read/366065/9834302
test binary.test
# This file tests the tclBinary.c file and the "binary" Tcl command.
#
# This file contains a collection of tests for one or more of the Tcl
# built-in commands. Sourcing this file into Tcl runs the
www.eeworm.com/read/366065/9834655
n binary.n
'\"
'\" Copyright (c) 1997 by Sun Microsystems, Inc.
'\"
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
'\"
www.eeworm.com/read/365329/9869102
c binary.c
/*
* binary()
* search and maintain a sorted array
*/
#include
#include "binary.h"
void * binary (const void * key,
void * _base, size_t * nelp, size_t width,
int (* cmp) (const void
www.eeworm.com/read/365329/9869108
h binary.h
#ifndef BINARY_H
#define BINARY_H
/*
* binary()
* search and maintain a sorted array
*
* key search argument, passed as first argument to cmp
* if not found, entered as width bytes into table
www.eeworm.com/read/365329/9869342
c binary.c
/*
* binary()
* search and maintain a sorted array
*/
#include
#include "binary.h"
void * binary (const void * key,
void * _base, size_t * nelp, size_t width,
int (* cmp) (const void