代码搜索:Quick

找到约 3,674 项符合「Quick」的源代码

代码结果 3,674
www.eeworm.com/read/103838/7104283

makefile

# Copyright (C) 1995 Monty Program KB & TCX DataKonsult AB # #include "Makefile.h" # Include system-dependent variabels CFLAGS = $(CC_FLAGS) -DENGLISH DEST = . HDRS = errmsg.h mysql.h porta
www.eeworm.com/read/463543/7178587

makefile

# Copyright (C) 1995 Monty Program KB & TCX DataKonsult AB # #include "Makefile.h" # Include system-dependent variabels CFLAGS = $(CC_FLAGS) -DENGLISH DEST = . HDRS = errmsg.h mysql.h porta
www.eeworm.com/read/459723/7266055

txt 6.3.5快速排序.txt

DATS EQU 20H N EQU 5DH QUEUE EQU 1FH F DATA 3CH R DATA 3DH TST: MOV DPTR,#LIST MOV P2,#DATS MOV R0,#0 MOV R2,#N CPY: CLR A MOVC A,@A+DPTR MOVX @R0,A INC DPTR
www.eeworm.com/read/459105/7282526

htm qh-optt.htm

Qhull trace options (T) Up: Hom
www.eeworm.com/read/459105/7282531

htm qh-opto.htm

Qhull output options Up: Home p
www.eeworm.com/read/459105/7282538

htm qh-optq.htm

Qhull control options (Q) Up: H
www.eeworm.com/read/459105/7282550

htm qh-optc.htm

Qhull precision options Up: Hom
www.eeworm.com/read/459105/7282554

htm qh-in.htm

Qhull internals Up:
www.eeworm.com/read/439664/7703790

txt code288a.txt

Public Sub Main() Dim FileNames As String, DirName As String Dim DirArray() As String, FileArray() As String Dim TotalDirs As Integer, TotalFiles As Integer Dim iLoop As Integer DirNa
www.eeworm.com/read/433514/7924902

asm qucksort.asm

;快速排序算法。 DATS EQU 20H ;待排序数据所在页面。 N EQU 5DH ;单字节数据个数(不超过255个)。 QUEUE EQU 1FH ;循环队列存储页面。 F DATA 3CH ;队首指针的存放单元。 R DATA 3DH ;队尾指针的存放单元。 ORG 0000H LJMP TEST ORG 100H TEST: MOV DPTR,#LIST