golang:从切片中删除一个元素

package main

import "fmt"

/*
 Author: Guo
 Date: 3/16/21 2:24 PM
 Description:
 Company: 
 Updated: ??@??@?? ????
*/

//方式一:使用copy()
func removeSample1(in []interface{}, index int) ([]interface{}, bool) {
	if len(in) == 0 || index < 0 {
		return in, false
	}
	if len(in)-1 == index {
		return in[:len(in)-1], true
	}
	if len(in)-1 < index {
		return in, false
	}
	copy(in[index:], in[index+1:])
	return in[:len(in)-1], true
}
//方式二:使用append()
func removeSample2(in []interface{}, index int) ([]interface{}, bool) {
	if len(in) == 0 || index < 0 {
		return in, false
	}
	if len(in)-1 == index {
		return in[:len(in)-1], true
	}
	if len(in)-1 < index {
		return in, false
	}
	return append(in[:index], in[index+1:]...), true
}

func main() {
	in1 := make([]interface{}, 0)
	fmt.Println(removeSample2(in1, -1))
	fmt.Println(removeSample2(in1, 0))
	in2 := []interface{}{1}
	fmt.Println(removeSample2(in2, -1))
	fmt.Println(removeSample2(in2, 0))
	fmt.Println(removeSample2(in2, 1))
	in3 := []interface{}{1, 2, 3, 4}
	fmt.Println(removeSample2(in3, 0))
	in4 := []interface{}{1, 2, 3, 4}
	fmt.Println(removeSample2(in4, 1))
	in5 := []interface{}{1, 2, 3, 4}
	fmt.Println(removeSample2(in5, 2))
}

//其中返回的bool值表示要删除的元素是否存在

执行结果:

[] false
[] false
[1] false
[] true
[1] false
[2 3 4] true
[1 3 4] true
[1 2 4] true
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值