A simple data structure for storing lists of integer arrays.
Similarly to how string arrays store an "array" of chars at each of their elements, this structure stores integer arrays at each element of a list.
It basically takes advantage of this behavior of string arrays.
Run the file to see the demo. The demo just draws a bunch of crap on the screen, compresses the image data into 16x16 blocks and stows them into the list structure, and then reads the blocks from the list structure and draws them back onto the screen.
A notable disadvantage of using this method (i.e., storing ints in double chars) is that for large arrays of integer data, computational time for fetching and stowing grows (about linearly, I think), eventually exceeding just plain old integer array manipulation. An upside, however, is that fetching time for any list element is about O(1), which means it takes bout the same time to get an array at list position
0 as it does list position
9999. I think what dampens it is SB's own internal activities as it goes about reading data from far or near elements.
I have a second version of this program that stores either integers or floats in a tree-like data structure, I'll probably put that up soon. That structure uses pointers to get an O(n) retrieval time, where n is the number of nodes to navigate in the tree. This version to my surprise exceeds that version in computational time for average-sized blocks of data. I mean, this version has to iterate over every single stored char and convert them back into integers. I thought for sure that simply moving pointers around and inserting and removing arrays would be faster (and it is for larger arrays), but huh, its not.
What might make that difference for smaller cases of array sizes is the lack of needing to move pointers around when data is being manipulated. Because, like, the string arrays already have that bit of organization inherently as one accesses different elements of the string array. For example,
LST$[] contains say 4 elements, each element an array of chars.
LST$[2] contains an array of chars that may be converted to ints. The positional organization is there in the bracket notation.
Instructions:
DEF DIMLST(LST_N,DAT[])
IF LST_N<0 THEN DIM TMP$[0]:RETURN TMP$ ENDIF
DIM LST$[LST_N+1],I_D,LST_D$
FOR I_D=0 TO LEN(DAT)-1
INC LST_D$,CHR$((DAT[I_D] AND -65536)>>16)+CHR$(DAT[I_D] AND 65535)
NEXT I_D:FILL LST$,LST_D$
LST$[0]=CHR$((LST_N AND -65536)>>16)+CHR$(LST_N AND 65535)
RETURN LST$
END
DEF GETLST(LST$[],LST_N)
IF 1+LST_N>LEN(LST$)-1 || LST_N<0 THEN RETURN ENDIF
IF !LEN(LST$) || LEN(LST$[0])<2 THEN RETURN ENDIF
DIM DAT[0],I_D,I_D_L=LEN(LST$[1+LST_N])
FOR I_D=0 TO I_D_L-1 STEP 2
PUSH DAT,ASC(LST$[1+LST_N][I_D])<<16 OR ASC(LST$[1+LST_N][I_D+1])
NEXT I_D:RETURN DAT
END
DEF SETLST LST$[],LST_N,DAT[]
IF 1+LST_N>LEN(LST$)-1 || LST_N<0 THEN RETURN ENDIF
IF !LEN(LST$) || LEN(LST$[0])<2 THEN RETURN ENDIF
DIM LST_D$[0]:LST_D$=DIMLST(1,DAT):LST$[1+LST_N]=LST_D$[1]
END
DEF INSLST LST$[],LST_N,DAT[]
IF !LEN(LST$) || LEN(LST$[0])<2 THEN RETURN ENDIF
DIM LST_L=ASC(LST$[0][0])<<16 OR ASC(LST$[0][1])
IF LST_N>LST_L || LST_N<0 THEN RETURN ENDIF
DIM LST_D$[0]:LST_D$=DIMLST(1,DAT)
INS LST$,1+LST_N,LST_D$[1]:INC LST_L
LST$[0]=CHR$((LST_L AND -65536)>>16)+CHR$(LST_L AND 65535)
END
DEF DELLST LST$[],LST_N,NUMOF_LST
IF !LEN(LST$) || LEN(LST$[0])<2 THEN RETURN ENDIF
DIM LST_L=ASC(LST$[0][0])<<16 OR ASC(LST$[0][1])
IF LST_N>LST_L-1 || LST_N<0 THEN RETURN ENDIF
RMV LST$,1+LST_N,MIN(NUMOF_LST,LEN(LST$)-LST_N)
DEC LST_L:LST$[0]=CHR$((LST_L AND -65536)>>16)+CHR$(LST_L AND 65535)
END
DEF LENLST(LST$[])
IF !LEN(LST$) || LEN(LST$[0])<2 THEN RETURN 0 ENDIF
RETURN ASC(LST$[0][0])<<16 OR ASC(LST$[0][1])
END
DEF INS A[],P,V UNSHIFT A,V:COPY A,A,1,P:A[P]=V END
DEF RMV A[],P,_N
DIM N=_N:COPY A,P,A,P+N,LEN(A)-P-N
WHILE N IF POP(A) THEN ENDIF:DEC N WEND
END