代码搜索:bubble
找到约 1,120 项符合「bubble」的源代码
代码结果 1,120
www.eeworm.com/read/204713/5029803
entries
/Bubble.java/1.2/Tue Oct 11 16:04:28 2005//
/dolejos.bat/1.1/Wed May 11 16:38:16 2005//
D/cache////
D/embjbench////
D/jbe////
www.eeworm.com/read/287424/4023856
java arraybub.java
package com.sort.bubble.demo;
public class ArrayBub {
private long[] a;
private int nElems;
public ArrayBub(int max){
a = new long[max];
nElems = 0;
}
public void insert(long v
www.eeworm.com/read/248950/12531209
m bubblexm.m
function ret = bubblexm ( M , v , L , alpha , x , mean , style )
# do a bubble tour of a gaussian
# making plots versus x as we go
# includes a mean vector
if ((nargin != 6)&&(nargin != 7))
u
www.eeworm.com/read/248950/12531218
m bubblexmd.m
function ret = bubblexmd ( M , v , L , alpha , x , mean , dx,dt,indicator )
# do a bubble tour of a gaussian
# making plots versus x as we go
# includes a mean vector
# and data too
if ((nargin !
www.eeworm.com/read/248950/12531229
m bubblex.m
function ret = bubblex ( M , v , L , alpha , x , indicator )
# do a bubble tour of a gaussian
# making plots versus x as we go
if ((nargin != 6)&&(nargin != 5))
usage ("bubblex ( M , v , L , a
www.eeworm.com/read/457059/7334521
java selectionsort.java
public class SelectionSort {
public static void bubble(double[] a) {
double temp;
for(int i=0;i
www.eeworm.com/read/479671/6684759
cpp a605bubl.cpp
// nuovi concetti: algoritmo di ordinamento "Bubble Sort"
#include
using namespace std;
int main() {
const int n=400;
int i, j, sup, ultimo_scambiato, t, a[n];
srand(time(
www.eeworm.com/read/476592/6756593
java homework.java
package Squall;
import java.io.*;
import java.util.*;
public class homework
{
static SORT bu = new BUBBLE();
static SORT se = new SELECT();
static SORT in = new INSERT();
public stati
www.eeworm.com/read/153954/11998236
makefile
# File: Makefile for Bubble Sort example program: ColdFire target.
LIBPATH = libs
!ifdef LOW
ELFNAME = T_LOW_BOOT
!else
ELFNAME = T_HIGH_BOOT
!endif
ELFPATH = elf
OUTPUTPATH = ou
www.eeworm.com/read/130950/14166666
cpp displaymenu.cpp
void displaymenu()
{
printf("1.press 'a' to select THE BUBBLE SORT\n");
printf("2.press 'b' to select THE SELECTION SORT\n");
printf("3.press 'c' to select THE INSERTION SORT\n");
printf("