代码搜索:线阵
找到约 9,846 项符合「线阵」的源代码
代码结果 9,846
www.eeworm.com/read/281156/10259732
16×16点阵
www.eeworm.com/read/279127/10461934
bin 595点阵.bin
www.eeworm.com/read/279127/10461940
asm 595点阵.asm
;移动的字幕,调试已经成功,有点闪烁。
org 00h
st: mov r2,#0
mov r3,#0
mov r4,#0
mov r5,#0
mov dptr,#tab
tt: Cpl p0.6 ;绿色
Cpl p0.7 ;红色
call lyx
CPL
www.eeworm.com/read/279127/10461983
hex 595点阵.hex
www.eeworm.com/read/275490/10815457
16×16点阵
www.eeworm.com/read/417576/10984929
16×16点阵
www.eeworm.com/read/470304/6917839
16×16点阵
www.eeworm.com/read/469138/6978153
txt 最大子阵和.txt
//求最大子阵和,复杂度O(n^3)
//传入阵的大小m,n和内容mat[][]
//返回最大子阵和,重载返回子阵位置(maxsum=list[s1][s2]+...+list[e1][e2])
//可更改元素类型
#define MAXN 100
typedef int elem_t;
elem_t maxsum(int m,int n,elem_t mat[][MAXN]){
www.eeworm.com/read/465066/7057012