Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
26
Task/Run-length-encoding/Run-BASIC/run-length-encoding.basic
Normal file
26
Task/Run-length-encoding/Run-BASIC/run-length-encoding.basic
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
string$ = "WWWWWWWWWWWWBWWWWWWWWWWWWBBBWWWWWWWWWWWWWWWWWWWWWWWWBWWWWWWWWWWWWWW"
|
||||
beg = 1
|
||||
i = 1
|
||||
[loop]
|
||||
s$ = mid$(string$,beg,1)
|
||||
while mid$(string$,i,1) = s$
|
||||
i = i + 1
|
||||
wend
|
||||
press$ = press$ ; i-beg;s$
|
||||
beg = i
|
||||
if i < len(string$) then goto [loop]
|
||||
print "Compressed:";press$
|
||||
|
||||
beg = 1
|
||||
i = 1
|
||||
[expand]
|
||||
while mid$(press$,i,1) <= "9"
|
||||
i = i + 1
|
||||
wend
|
||||
for j = 1 to val(mid$(press$,beg, i - beg))
|
||||
expand$ = expand$ + mid$(press$,i,1)
|
||||
next j
|
||||
i = i + 1
|
||||
beg = i
|
||||
if i < len(press$) then goto [expand]
|
||||
print " Expanded:";expand$
|
||||
Loading…
Add table
Add a link
Reference in a new issue