代码搜索:binary
找到约 10,000 项符合「binary」的源代码
代码结果 10,000
www.eeworm.com/read/161438/5553695
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/157111/5607353
java binary.java
/* Copyright (c) 2001-2005, The HSQL Development Group
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that
www.eeworm.com/read/475955/6770884
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/473219/6849123
m binary.m
function x = binary(x)
%BINARY Constrains variables to be binary (0/1)
%
% F = BINARY(x) is used to a posteriori constrain
% variables to be binary, in contrast to BINVAR
% that declares
www.eeworm.com/read/473179/6857550
txt 堆(binary).txt
//二分堆(binary)
//可插入,获取并删除最小(最大)元素,复杂度均O(logn)
//可更改元素类型,修改比较符号或换成比较函数
#define MAXN 10000
#define _cp(a,b) ((a)
www.eeworm.com/read/473191/6857930
txt 堆(binary).txt
//二分堆(binary)
//可插入,获取并删除最小(最大)元素,复杂度均O(logn)
//可更改元素类型,修改比较符号或换成比较函数
#define MAXN 10000
#define _cp(a,b) ((a)
www.eeworm.com/read/294317/8240559
h binary.h
// file binary.h
#ifndef BinaryTree_
#define BinaryTree_
int _count;
#include
#include "lqueue.h"
#include "btnode.h"
#include "xcept.h"
#include "swap.h"
template
www.eeworm.com/read/294317/8240609
cpp binary.cpp
// test binary tree class
#include "binary.h"
// globals
int count = 0;
BinaryTree a,b,x,y,z;
template
void ct(BinaryTreeNode *t) {count++;}
void main(void)
{
y.Ma