golang slice addition and deletion
May 22, 2023 pm 04:19 PMGolang slice is a very commonly used data structure. It is a dynamic array that supports automatic expansion and can easily operate and modify data in the program. The length of the slice can be changed dynamically, which provides a lot of flexibility to our code. Adding and deleting elements is a very common operation during the use of slice. This article will introduce how to add and delete elements in golang slice.
- Basic operations of golang slice
Let’s first review the basic operations of golang slice in order to better understand the process of adding and deleting elements. In golang, to define a slice, you need to use the make function. This function contains three parameters. The first one specifies the type of the slice, the second one specifies the length of the slice, and the third one specifies the capacity of the slice.
For example:
var s = make([]int, 3, 5)
The above code defines an int type slice with a length of 3 and a capacity of 5. The first parameter is the int type we defined, and the second The first parameter specifies the length of the slice to be 3, and the third parameter specifies the capacity of the slice to be 5. It should be noted that the capacity of a slice can be greater than the length, but the length cannot be greater than the capacity.
Next are some basic operations of golang slice:
1) Access the slice element
var s = []int {1, 2, 3, 4, 5} fmt.Println(s[0]) // 輸出1
2) Modify the slice element
var s = []int {1, 2, 3, 4, 5} s[0] = 6 fmt.Println(s) // 輸出[6 2 3 4 5]
3) Get the slice The length and capacity
var s = make([]int, 3, 5) fmt.Println(len(s)) // 輸出3 fmt.Println(cap(s)) // 輸出5
4) Slicing operation
var s = []int {1, 2, 3, 4, 5} fmt.Println(s[1:3]) // 輸出[2 3]
- Golang slice element adding operation
In golang, slice element adding operation is Two ways are to use the append function and the " " operator.
Below, we will introduce the usage of these two methods respectively.
1) Use the append function to add elements
In golang, we can use the append function to dynamically add slice elements. Its syntax is as follows:
func append(s []T, vs ...T) []T
Among them, the first parameter s is a slice of type T, and the following parameter vs is a variable parameter list, also of type T, indicating the element to be added. The return value of this function is a new slice containing the added elements.
For example:
var s = []int {1, 2, 3, 4, 5} s = append(s, 6) fmt.Println(s) // 輸出[1 2 3 4 5 6]
In the above code, we use the append function to add an element 6 to the slice, and then save the result back to the original slice.
If we want to add multiple elements to the slice, we only need to pass in these elements after the append function. For example:
var s = []int {1, 2, 3, 4, 5} s = append(s, 6, 7, 8) fmt.Println(s) // 輸出[1 2 3 4 5 6 7 8]
It should be noted that if the capacity of the slice is insufficient, the append function will automatically expand its capacity, so its time complexity is O(1).
2) Use the " " operator to add elements
In addition to using the append function, you can also use the " " operator in golang to merge two slices. The operands of this operator are all slices, and the result is also a new slice.
For example, as shown below:
var s1 = []int {1, 2, 3} var s2 = []int {4, 5, 6} s := s1 + s2 fmt.Println(s) // 輸出[1 2 3 4 5 6]
In this example, we add two slices and get a new slice s. It should be noted that the time complexity of the " " operator is O(n), because it requires opening a new array and copying the elements of the two slices into the new array.
- Element deletion operation of golang slice
If you want to delete an element in the golang slice, there are two methods, namely using the append function and using the copy function.
1) Use the append function to delete elements
We can use the append function's slicing operation to intercept the element to be deleted and the elements behind it, and then use the append function to recombine them. The specific implementation is as follows:
func Remove(slice []int, idx int) []int { return append(slice[:idx], slice[idx+1:]...) } func main() { var s = []int {1, 2, 3, 4, 5} s = Remove(s, 2) fmt.Println(s) // 輸出[1 2 4 5] }
In this code, we use the Remove function to delete the third element in the slice. First, we combine the elements from slice0 to idx-1 and the elements from slice idx 1 to the end into a new slice. Then, we use the append function to save this new slice back to the original slice. Because the append function will automatically expand the capacity, there is no need to worry about insufficient capacity of the new slice.
It should be noted that the time complexity of this method is O(n), because it needs to copy n-1 elements to a new slice.
2) Use the copy function to delete elements
In addition to using the append function, we can also use the copy function to delete elements in the golang slice. The copy function can copy the elements in the src slice to the dst slice and return the number of copied elements.
The specific implementation is as follows:
func Remove(slice []int, idx int) []int { copy(slice[idx:], slice[idx+1:]) return slice[:len(slice)-1] } func main() { var s = []int {1, 2, 3, 4, 5} s = Remove(s, 2) fmt.Println(s) // 輸出[1 2 4 5] }
In this code, we use the Remove function to delete the third element in the slice. Use the copy function to copy all elements after idx 1 to the idx position, and then reduce the length of the original slice by 1.
It should be noted that the time complexity of this method is also O(n), because it needs to copy n-1 elements to a new slice.
- Summary
This article mainly introduces the operations of adding and deleting elements in golang slice. You can use the append function and " " operator to add elements, and you can use the append function and copy function to delete elements.
It is recommended to choose different methods according to the specific situation in actual programming. If you want to add or delete a small number of elements, it is more convenient to use the append function or the " " operator; if you want to add or delete a large number of elements, it is more efficient to use the copy function.
The above is the detailed content of golang slice addition and deletion. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Go compiles the program into a standalone binary by default, the main reason is static linking. 1. Simpler deployment: no additional installation of dependency libraries, can be run directly across Linux distributions; 2. Larger binary size: Including all dependencies causes file size to increase, but can be optimized through building flags or compression tools; 3. Higher predictability and security: avoid risks brought about by changes in external library versions and enhance stability; 4. Limited operation flexibility: cannot hot update of shared libraries, and recompile and deployment are required to fix dependency vulnerabilities. These features make Go suitable for CLI tools, microservices and other scenarios, but trade-offs are needed in environments where storage is restricted or relies on centralized management.

To create a buffer channel in Go, just specify the capacity parameters in the make function. The buffer channel allows the sending operation to temporarily store data when there is no receiver, as long as the specified capacity is not exceeded. For example, ch:=make(chanint,10) creates a buffer channel that can store up to 10 integer values; unlike unbuffered channels, data will not be blocked immediately when sending, but the data will be temporarily stored in the buffer until it is taken away by the receiver; when using it, please note: 1. The capacity setting should be reasonable to avoid memory waste or frequent blocking; 2. The buffer needs to prevent memory problems from being accumulated indefinitely in the buffer; 3. The signal can be passed by the chanstruct{} type to save resources; common scenarios include controlling the number of concurrency, producer-consumer models and differentiation

Goensuresmemorysafetywithoutmanualmanagementthroughautomaticgarbagecollection,nopointerarithmetic,safeconcurrency,andruntimechecks.First,Go’sgarbagecollectorautomaticallyreclaimsunusedmemory,preventingleaksanddanglingpointers.Second,itdisallowspointe

Go is ideal for system programming because it combines the performance of compiled languages ??such as C with the ease of use and security of modern languages. 1. In terms of file and directory operations, Go's os package supports creation, deletion, renaming and checking whether files and directories exist. Use os.ReadFile to read the entire file in one line of code, which is suitable for writing backup scripts or log processing tools; 2. In terms of process management, the exec.Command function of the os/exec package can execute external commands, capture output, set environment variables, redirect input and output flows, and control process life cycles, which are suitable for automation tools and deployment scripts; 3. In terms of network and concurrency, the net package supports TCP/UDP programming, DNS query and original sets.

In Go language, calling a structure method requires first defining the structure and the method that binds the receiver, and accessing it using a point number. After defining the structure Rectangle, the method can be declared through the value receiver or the pointer receiver; 1. Use the value receiver such as func(rRectangle)Area()int and directly call it through rect.Area(); 2. If you need to modify the structure, use the pointer receiver such as func(r*Rectangle)SetWidth(...), and Go will automatically handle the conversion of pointers and values; 3. When embedding the structure, the method of embedded structure will be improved, and it can be called directly through the outer structure; 4. Go does not need to force use getter/setter,

In Go, an interface is a type that defines behavior without specifying implementation. An interface consists of method signatures, and any type that implements these methods automatically satisfy the interface. For example, if you define a Speaker interface that contains the Speak() method, all types that implement the method can be considered Speaker. Interfaces are suitable for writing common functions, abstract implementation details, and using mock objects in testing. Defining an interface uses the interface keyword and lists method signatures, without explicitly declaring the type to implement the interface. Common use cases include logs, formatting, abstractions of different databases or services, and notification systems. For example, both Dog and Robot types can implement Speak methods and pass them to the same Anno

In Go language, string operations are mainly implemented through strings package and built-in functions. 1.strings.Contains() is used to determine whether a string contains a substring and returns a Boolean value; 2.strings.Index() can find the location where the substring appears for the first time, and if it does not exist, it returns -1; 3.strings.ReplaceAll() can replace all matching substrings, and can also control the number of replacements through strings.Replace(); 4.len() function is used to obtain the length of the bytes of the string, but when processing Unicode, you need to pay attention to the difference between characters and bytes. These functions are often used in scenarios such as data filtering, text parsing, and string processing.

TheGoiopackageprovidesinterfaceslikeReaderandWritertohandleI/Ooperationsuniformlyacrosssources.1.io.Reader'sReadmethodenablesreadingfromvarioussourcessuchasfilesorHTTPresponses.2.io.Writer'sWritemethodfacilitateswritingtodestinationslikestandardoutpu
