Golang program to check a specified slice of 64-bit floating-point numbers is sorted or not

Here, we are going to learn how to check a specified slice of 64-bit floating-point numbers is sorted or not in Golang (Go Language)?
Submitted by Nidhi, on March 16, 2021 [Last updated : March 04, 2023]

Checking a slice of 64-bit floating-point numbers is sorted or not in Golang

Problem Solution:

In this program, we will create a slice and check the specified slice is sorted or not using Float64sAreSorted() and print an appropriate message on the console screen.

Program/Source Code:

The source code to check a specified slice of 64-bit floating-point numbers is sorted or not is given below. The given program is compiled and executed successfully.

Golang code to check a specified slice of 64-bit floating-point numbers is sorted or not

// Golang program to check a specified slice of 64-bit
// floating-point numbers is sorted or not

package main

import "fmt"
import "sort"

func main() {
	var status bool = false

	slice1 := []float64{10.1, 20.2, 30.3, 40.4, 50.7, 60.8, 70.9}
	slice2 := []float64{70.1, 20.2, 30.3, 60.4, 50.7, 60.8, 10.9}

	status = sort.Float64sAreSorted(slice1)
	if status == true {
		fmt.Println("Slice1 is sorted")
	} else {
		fmt.Println("Slice1 is not sorted")
	}

	status = sort.Float64sAreSorted(slice2)
	if status == true {
		fmt.Println("Slice2 is sorted")
	} else {
		fmt.Println("Slice2 is not sorted")
	}
}

Output:

Slice1 is sorted
Slice2 is not sorted

Explanation:

In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the fmt package that includes the files of package fmt then we can use a function related to the fmt package.

In the above program, we also imported the sort package to use the Float64sAreSorted() function to sort 64-bit floats slice.

In the main() function, we created two slices of 64-bit floating numbers, then we checked slice is sorted or not using the Float64sAreSorted() function and then print the appropriate message on the console screen.

Golang Slices Programs »





Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.