Posts by Talisonzb • 63 points
3 posts
-
1
votes2
answers72
viewsA: Sorting Code does not return correct value
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click Dim i As Integer Dim j As Integer Dim best_value As Long Dim best_j As Integer For i = 0 To ve.Length - 1 best_value…
-
1
votes2
answers72
viewsQ: Sorting Code does not return correct value
I have a class assignment whose need is to use an sorting algorithm to sort a list of random numbers. My problem is that I am throwing the items from the random number list into an array,…
-
4
votes2
answers87
viewsQ: How to draw items from a Listbox using quicksort
I am carrying out a project for the University that consists in carrying out a software that makes the 'Sort' of a listbox using quicksort , Blubblesort etc... In VB.NET I made an array to generate…