Home Backend Development Golang How to delete elements from golang array

How to delete elements from golang array

Dec 08, 2022 pm 06:10 PM
go golang go language array

In the Go language, you can use the Slice feature to implement the deletion operation of array elements. Deletion method: 1. Use append() to delete, the syntax is "append(list[:delete index], list[(delete index 1):]...)"; 2. Use copy() to delete, the syntax is "list [:copy(list, list[index:])]"; 3. Use len() to delete, the syntax is "list[:len(list)-N]".

How to delete elements from golang array

The operating environment of this tutorial: Windows 7 system, GO version 1.18, Dell G3 computer.

In the Go language, you can use the Slice feature to implement the deletion operation of array elements. A slice is a reference to a contiguous fragment of an array, so a slice is a reference type (so more similar to the array type in C/C, or the list type in Python). This fragment can be the entire array, or it can It is a subset of some items identified by the start and end indexes. It should be noted that the items identified by the end index are not included in the slice.

Go language uses slices to delete array elements

Go language does not provide special syntax or interface for deleting slice elements, you need to use the slice itself To delete elements, there are three situations according to the position of the element to be deleted, namely deleting from the beginning, deleting from the middle and deleting from the tail. Among them, deleting elements at the end of the slice is the fastest. [Related recommendations: Go video tutorial, Programming teaching]

Delete from the beginning

You can delete the elements at the beginning Move the data pointer directly:

a = []int{1, 2, 3}
a = a[1:] // 删除开头1个元素
a = a[N:] // 删除开头N个元素
Copy after login

You can also move the data pointer without moving it, but to move the subsequent data to the beginning, you can use append to complete it in place (the so-called completion in place refers to the memory interval corresponding to the original slice data) Completed within, will not cause changes in the memory space structure):

a = []int{1, 2, 3}
a = append(a[:0], a[1:]...) // 删除开头1个元素
a = append(a[:0], a[N:]...) // 删除开头N个元素
Copy after login

You can also use the copy() function to delete the beginning elements:

a = []int{1, 2, 3}
a = a[:copy(a, a[1:])] // 删除开头1个元素
a = a[:copy(a, a[N:])] // 删除开头N个元素
Copy after login

Delete from the middle position

To delete the middle element, you need to move the remaining elements as a whole. You can also use append or copy to complete it in place:

a = []int{1, 2, 3, ...}
a = append(a[:i], a[i+1:]...) // 删除中间1个元素
a = append(a[:i], a[i+N:]...) // 删除中间N个元素
a = a[:i+copy(a[i:], a[i+1:])] // 删除中间1个元素
a = a[:i+copy(a[i:], a[i+N:])] // 删除中间N个元素
Copy after login

Delete from the tail

a = []int{1, 2, 3}
a = a[:len(a)-1] // 删除尾部1个元素
a = a[:len(a)-N] // 删除尾部N个元素
Copy after login

Deleting the beginning elements and deleting the tail elements can be considered as special cases of deleting the middle elements. Let’s look at an example below.

Array deletion example

[Example] Delete the element at the specified position of the slice.

package main

import "fmt"

func main() {
    seq := []string{"a", "b", "c", "d", "e"}

    // 指定删除位置
    index := 2

    // 查看删除位置之前的元素和之后的元素
    fmt.Println(seq[:index], seq[index+1:])

    // 将删除点前后的元素连接起来
    seq = append(seq[:index], seq[index+1:]...)

    fmt.Println(seq)
}
Copy after login

Code output result:

How to delete elements from golang array

The code description is as follows:

  • Line 1, declares an integer Slice, holds a string containing from a to e.

  • Line 4, for the convenience of demonstration and explanation, use the index variable to save the position of the element that needs to be deleted.

  • Line 7, seq[:index] represents the first half of the deleted element, the value is [1 2], seq[index 1:] represents the deleted element The second half of , the value is [4 5].

  • Line 10, use the append() function to connect the two slices.

  • Line 12 outputs the connected new slice. At this time, the element with index 2 has been deleted.

The code deletion process can be described using the following figure.

How to delete elements from golang array

For more programming related knowledge, please visit: Programming Video! !

The above is the detailed content of How to delete elements from golang array. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the problem with Queue thread in Go's crawler Colly? What is the problem with Queue thread in Go's crawler Colly? Apr 02, 2025 pm 02:09 PM

Queue threading problem in Go crawler Colly explores the problem of using the Colly crawler library in Go language, developers often encounter problems with threads and request queues. �...

What libraries are used for floating point number operations in Go? What libraries are used for floating point number operations in Go? Apr 02, 2025 pm 02:06 PM

The library used for floating-point number operation in Go language introduces how to ensure the accuracy is...

What is the difference between `var` and `type` keyword definition structure in Go language? What is the difference between `var` and `type` keyword definition structure in Go language? Apr 02, 2025 pm 12:57 PM

Two ways to define structures in Go language: the difference between var and type keywords. When defining structures, Go language often sees two different ways of writing: First...

Which libraries in Go are developed by large companies or provided by well-known open source projects? Which libraries in Go are developed by large companies or provided by well-known open source projects? Apr 02, 2025 pm 04:12 PM

Which libraries in Go are developed by large companies or well-known open source projects? When programming in Go, developers often encounter some common needs, ...

In Go, why does printing strings with Println and string() functions have different effects? In Go, why does printing strings with Println and string() functions have different effects? Apr 02, 2025 pm 02:03 PM

The difference between string printing in Go language: The difference in the effect of using Println and string() functions is in Go...

How to solve the user_id type conversion problem when using Redis Stream to implement message queues in Go language? How to solve the user_id type conversion problem when using Redis Stream to implement message queues in Go language? Apr 02, 2025 pm 04:54 PM

The problem of using RedisStream to implement message queues in Go language is using Go language and Redis...

What should I do if the custom structure labels in GoLand are not displayed? What should I do if the custom structure labels in GoLand are not displayed? Apr 02, 2025 pm 05:09 PM

What should I do if the custom structure labels in GoLand are not displayed? When using GoLand for Go language development, many developers will encounter custom structure tags...

How to solve the problem of Golang generic function type constraints being automatically deleted in VSCode? How to solve the problem of Golang generic function type constraints being automatically deleted in VSCode? Apr 02, 2025 pm 02:15 PM

Automatic deletion of Golang generic function type constraints in VSCode Users may encounter a strange problem when writing Golang code using VSCode. when...

See all articles