Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
has anyone had ChatGPT write QB64 code yet?
#5
(12-16-2022, 05:53 AM)madscijr Wrote:
(12-15-2022, 09:23 PM)vince Wrote: I've heard team official got a hold of this tech, "I demand qb64pe but better!"
(12-15-2022, 09:54 PM)Spriggsy Wrote: ChatGPT scares me. That thing was built too well.
...
Next might be to ask it to optimize performance with hashing, or add functions for insert/update/delete/sort, etc. 
Maybe it will choke, maybe it will surprise us! Maybe it will answer differently in a month or a year, having learned more stuff from people and off the Internet.

I went ahead and asked:

Code: (Select All)
Can you do that again, but also optimize performance with hashing, and add functions for insert / update / delete / exists / sort?

And lo! It did just that!

Code: (Select All)
Sure! Here is a revised version of the QuickBasic program that implements an associative array using hashing to optimize performance, and includes functions for inserting, updating, deleting, and checking the existence of key-value pairs, as well as a function for sorting the array:

' Declare a type for the associative array
TYPE AssociativeArray
    Key AS STRING * 10
    Value AS STRING * 10
    Hash AS INTEGER
END TYPE

' Declare an array of the associative array type
DIM AssociativeArrayList(1 TO 10) AS AssociativeArray

' Set the size of the array (the number of key-value pairs it can hold)
DIM ArraySize AS INTEGER
ArraySize = 10

' Insert a new key-value pair into the array
SUB InsertKeyValuePair(Key AS STRING, Value AS STRING, AssociativeArrayList() AS AssociativeArray)
    ' Calculate the hash for the key
    Hash = GetHash(Key)

    ' Find an empty slot in the array
    FOR i = 1 TO ArraySize
        IF AssociativeArrayList(i).Key = "" THEN
            ' Insert the key-value pair into the array
            AssociativeArrayList(i).Key = Key
            AssociativeArrayList(i).Value = Value
            AssociativeArrayList(i).Hash = Hash
            EXIT SUB
        END IF
    NEXT
END SUB

' Update the value for a given key in the array
SUB UpdateKeyValuePair(Key AS STRING, Value AS STRING, AssociativeArrayList() AS AssociativeArray)
    ' Calculate the hash for the key
    Hash = GetHash(Key)

    ' Find the key-value pair with the matching key
    FOR i = 1 TO ArraySize
        IF AssociativeArrayList(i).Key = Key THEN
            ' Update the value for the key
            AssociativeArrayList(i).Value = Value
            EXIT SUB
        END IF
    NEXT
END SUB

' Delete a key-value pair from the array
SUB DeleteKeyValuePair(Key AS STRING, AssociativeArrayList() AS AssociativeArray)
    ' Find the key-value pair with the matching key
    FOR i = 1 TO ArraySize
        IF AssociativeArrayList(i).Key = Key THEN
            ' Delete the key-value pair by clearing its fields
            AssociativeArrayList(i).Key = ""
            AssociativeArrayList(i).Value = ""
            AssociativeArrayList(i).Hash = 0
            EXIT SUB
        END IF
    NEXT
END SUB

' Check if a key exists in the array
FUNCTION KeyExists(Key AS STRING, AssociativeArrayList() AS AssociativeArray) AS BOOLEAN
    ' Find the key-value pair with the matching key
    FOR i = 1 TO ArraySize
        IF AssociativeArrayList(i).Key = Key THEN
            KeyExists = TRUE
            EXIT FUNCTION
        END IF
    NEXT

    KeyExists = FALSE
END FUNCTION

' Sort the array by key
SUB SortArray(AssociativeArrayList() AS AssociativeArray)
    ' Use bubble sort to sort the array
    FOR i = 1 TO ArraySize - 1
        FOR j = i + 1 TO ArraySize
            IF AssociativeArrayList(i).Key >

But wait... where's the rest? Th-th-that's all, folks?! 
Is there a limit to the output? Where's the beef??? 

Code: (Select All)
can you show the rest of the program?

Ask and you shall receive!

Code: (Select All)
Certainly! Here is the rest of the revised QuickBasic program that implements an associative array using hashing to optimize performance, and includes functions for inserting, updating, deleting, and checking the existence of key-value pairs, as well as a function for sorting the array:

AssociativeArrayList(j).Key THEN
                ' Swap the key-value pairs
                Temp = AssociativeArrayList(i)
                AssociativeArrayList(i) = AssociativeArrayList(j)
                AssociativeArrayList(j) = Temp
            END IF
        NEXT
    NEXT
END SUB

' Calculate the hash for a given key
FUNCTION GetHash(Key AS STRING) AS INTEGER
    Hash = 0

    ' Calculate the hash by adding up the ASCII values of the characters in the key
    FOR i = 1 TO LEN(Key)
        Hash = Hash + ASC(MID$(Key, i, 1))
    NEXT

    GetHash = Hash
END FUNCTION

' Print the value for a given key
PRINT GetValueForKey("Key2", AssociativeArrayList)

' Get the value for a given key
FUNCTION GetValueForKey(Key AS STRING, AssociativeArrayList() AS AssociativeArray) AS STRING
    ' Calculate the hash for the key
    Hash = GetHash(Key)

    ' Loop through the array and return the value for the given key
    FOR i = 1 TO ArraySize
        IF AssociativeArrayList(i).Key = Key THEN
            GetValueForKey = AssociativeArrayList(i).Value
            EXIT FUNCTION
        END IF
    NEXT
END FUNCTION

This revised version of the program calculates a hash for each key when it is inserted or updated in the array, and stores the hash along with the key and value in the AssociativeArray type. The GetHash function calculates the hash by adding up the ASCII values of the characters in the key.

The SortArray function uses bubble sort to sort the array by key. The KeyExists function checks if a given key exists in the array by looping through the array and checking if any of the keys match the given key.

The GetValueForKey function searches the array for the key-value pair with the matching key, and returns the value if it is found.

I hope this revised version of the program meets your needs! Let me know if you have any questions or if you need further assistance.

I haven't tried running or looking over the code it spat out yet - it's late and I have to sign off now. 
But it looks legit enough! 

Maybe tomorrow we can try asking it to write some QB64 code. Supposedly it was only "trained" (i.e. allowed to surf the Internet and fill its brain with knowledge) upto 2021, so it wouldn't know that QB64 became QB64PE or that Queen Elizabeth II is no longer with us, but if it can write a QuickBasic program based on a couple sentences, that's pretty cool. Maybe it can figure out that RawInput API multiple mouse problem! LOL
Reply


Messages In This Thread
RE: has anyone had ChatGPT write QB64 code yet? - by madscijr - 12-16-2022, 06:12 AM



Users browsing this thread: 1 Guest(s)