代码搜索:bubble
找到约 1,120 项符合「bubble」的源代码
代码结果 1,120
www.eeworm.com/read/449030/7520035
s bubble.s
# bubble.s - An example of the XCHG instruction
.section .data
values:
.int 105, 235, 61, 315, 134, 221, 53, 145, 117, 5
.section .text
.globl _start
_start:
movl $values, %esi
movl $9, %ecx
www.eeworm.com/read/445950/7587556
c bubble.c
#include
#include
void bubble_sort(int array[], int size)
{
int temp, i, j;
for (i = 0; i < size; i++)
for (j = 0; j < size; j++)
if (array[i] < array
www.eeworm.com/read/439578/7705923
cpp bubble.cpp
#include
void swap(int &x,int &y)
{
int temp;
temp = x;
x = y;
y = temp;
}
void bubble(int A[],int n)
{
int i,j;
for (i=0;i
www.eeworm.com/read/438832/7725385
sh bubble.sh
#!/bin/bash
# <mark>bubble</mark>.sh: 一种排序方式, 冒泡排序.
# 回忆一下冒泡排序的算法. 我们在这里要实现它...
# 依靠连续的比较数组元素进行排序,
#+ 比较两个相邻元素, 如果顺序不对, 就交换这两个元素的位置.
# 当第一轮比较结束之后, 最"重"的元素就会被移动到最底部.
# 当第二轮比较结束之后, 第二"重"的元素就会被移动到次底部的位置.
# ...
www.eeworm.com/read/436250/7773951
c bubble.c
#include
#include
void bubble_sort(int array[], int size)
{
int temp, i, j;
for (i = 0; i < size; i++)
for (j = 0; j < size; j++)
if (array[i] < array
www.eeworm.com/read/434713/7845729
c bubble.c
www.eeworm.com/read/298428/7961464
c bubble.c
#include
#include
void bubble_sort(int array[], int size)
{
int temp, i, j;
for (i = 0; i < size; i++)
for (j = 0; j < size; j++)
if (array[i] < array
www.eeworm.com/read/143960/12827331
bmp bubble.bmp
www.eeworm.com/read/244694/12849324