代码搜索:binarysearch
找到约 312 项符合「binarysearch」的源代码
代码结果 312
www.eeworm.com/read/35567/1059373
c binarysearch.c
#include
#include
#include
#define NUM 4
struct Data
{
char name[20];
char city[20];
char sex[10];
char age[10];
char job[10];
};
struct Data SDat
www.eeworm.com/read/237765/4620899
c binarysearch.c
#include
#include
#include
#define NUM 4
struct Data
{
char name[20];
char city[20];
char sex[10];
char age[10];
char job[10];
};
struct Data SDat
www.eeworm.com/read/230580/4722298
h binarysearch.h
/*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the "License"). You may not use this file except
* in compliance with the Licen
www.eeworm.com/read/230580/4722341
c binarysearch.c
/*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the "License"). You may not use this file except
* in compliance with the Licen
www.eeworm.com/read/191735/5163077
java binarysearch.java
/*
* Copyright (c) 1998-2002 Carnegie Mellon University. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that
www.eeworm.com/read/339658/3296347
c binarysearch.c
#include
#include
#include
#define NUM 4
struct Data
{
char name[20];
char city[20];
char sex[10];
char age[10];
char job[10];
};
struct Data SDat
www.eeworm.com/read/336126/3354083
java binarysearch.java
// BinarySearch.java
// Binary search of an array
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.text.*;
public class BinarySearch extends JApplet
www.eeworm.com/read/327127/3464105
java binarysearch.java
/*
* Copyright (c) 1998-2002 Carnegie Mellon University. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that
www.eeworm.com/read/288165/4009475
c binarysearch.c
#include
#include
#include
#define NUM 4
struct Data
{
char name[20];
char city[20];
char sex[10];
char age[10];
char job[10];
};
struct Data SDat
www.eeworm.com/read/284098/4067897
java binarysearch.java
// binarySearch.java
// demonstrates recursive binary search
// to run this program: C>java BinarySearchApp
////////////////////////////////////////////////////////////////
class ordArray
{