stl-go

command module
v0.0.0-...-ed3284d Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 3, 2022 License: MIT Imports: 2 Imported by: 0

README

stl-go

一个封装了一些简单的数据结构的提供泛型支持的stl库 (go >= 1.18)

usage

Dequeue

package main

import (
	"fmt"

	"gitee.com/NorthCityChen/stl-go/dequeue"
)

func main() {
	q := dequeue.Init[int]()
	q.LPush(12)
	q.LPush(23)
	q.LPush(34)
	q.Clear()
	q.LPush(34)
	q.RPush(44)
	fmt.Println(q.LPop())
	fmt.Println(q.LPop())
	fmt.Println(q.LPop())
	fmt.Println(q.LPop())
}

Queue

import (
	"fmt"

	"gitee.com/NorthCityChen/stl-go/queue"
)

func main() {
	q := queue.Init[int]()
	q.Push(12)
	q.Push(23)
	q.Push(44)
	fmt.Println(q.Pop())
	fmt.Println(q.Pop())
	fmt.Println(q.Pop())
	fmt.Println(q.Pop())
}

RoadMap

  • 双端队列
  • 队列
  • 数学
  • 优先队列
  • 红黑树
  • 集合
  • 二分查找
  • 下一个排序组合

Documentation

Overview

* @Author: NorthCity1984 * @LastEditTime: 2022-05-03 18:51:46 * @Description: * @Website: https://grimoire.cn * Copyright (c) NorthCity1984 All rights reserved.

Directories

Path Synopsis
* @Author: NorthCity1984 * @LastEditTime: 2022-04-27 13:31:14 * @Description: * @Website: https://grimoire.cn * Copyright (c) NorthCity1984 All rights reserved.
* @Author: NorthCity1984 * @LastEditTime: 2022-04-27 13:31:14 * @Description: * @Website: https://grimoire.cn * Copyright (c) NorthCity1984 All rights reserved.
* @Author: NorthCity1984 * @LastEditTime: 2022-04-27 13:19:36 * @Description: * @Website: https://grimoire.cn * Copyright (c) NorthCity1984 All rights reserved.
* @Author: NorthCity1984 * @LastEditTime: 2022-04-27 13:19:36 * @Description: * @Website: https://grimoire.cn * Copyright (c) NorthCity1984 All rights reserved.
* @Author: NorthCity1984 * @LastEditTime: 2022-05-03 18:50:22 * @Description: * @Website: https://grimoire.cn * Copyright (c) NorthCity1984 All rights reserved.
* @Author: NorthCity1984 * @LastEditTime: 2022-05-03 18:50:22 * @Description: * @Website: https://grimoire.cn * Copyright (c) NorthCity1984 All rights reserved.
* @Author: NorthCity1984 * @LastEditTime: 2022-04-02 13:19:37 * @Description: * @Website: https://grimoire.cn * Copyright (c) NorthCity1984 All rights reserved.
* @Author: NorthCity1984 * @LastEditTime: 2022-04-02 13:19:37 * @Description: * @Website: https://grimoire.cn * Copyright (c) NorthCity1984 All rights reserved.
* @Author: NorthCity1984 * @LastEditTime: 2022-04-04 19:11:44 * @Description: * @Website: https://grimoire.cn * Copyright (c) NorthCity1984 All rights reserved.
* @Author: NorthCity1984 * @LastEditTime: 2022-04-04 19:11:44 * @Description: * @Website: https://grimoire.cn * Copyright (c) NorthCity1984 All rights reserved.
* @Author: NorthCity1984 * @LastEditTime: 2022-04-13 21:41:20 * @Description: * @Website: https://grimoire.cn * Copyright (c) NorthCity1984 All rights reserved.
* @Author: NorthCity1984 * @LastEditTime: 2022-04-13 21:41:20 * @Description: * @Website: https://grimoire.cn * Copyright (c) NorthCity1984 All rights reserved.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL