Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,846 questions

51,767 answers

573 users

How to move all negative elements to the beginning of array in VB.NET

1 Answer

0 votes
Imports System

Public Class Program
    Public Shared Sub move_negative_to_beginning(ByVal arr As Integer(), ByVal size As Integer)
        Dim beginning_index As Integer = 0

        For i As Integer = 0 To size - 1
            If arr(i) < 0 Then
                Dim tmp As Integer = arr(i)
                arr(i) = arr(beginning_index)
                arr(beginning_index) = tmp
			
                beginning_index += 1
            End If
        Next
    End Sub

    Public Shared Sub Main(ByVal args As String())
        Dim arr As Integer() = New Integer() {-1, 8, -6, 21, -3, 4, -2, 7, 15, -30, -40, 9}
	
        Dim size As Integer = arr.Length
        
	move_negative_to_beginning(arr, size)

        For i As Integer = 0 To size - 1
            Console.Write(arr(i) & " ")
        Next
    End Sub
End Class




' run:
'
' -1 -6 -3 -2 -30 -40 21 7 15 8 4 9
'

 



answered Aug 22, 2022 by avibootz

Related questions

...