From ae0c613b8e360547ead2c84874513ae0616334d8 Mon Sep 17 00:00:00 2001 From: dudaodong Date: Thu, 17 Mar 2022 11:55:08 +0800 Subject: [PATCH] add package comment --- datastructure/node.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/datastructure/node.go b/datastructure/node.go index ae662ee..9e80cb0 100644 --- a/datastructure/node.go +++ b/datastructure/node.go @@ -1,3 +1,7 @@ +// Copyright 2021 dudaodong@gmail.com. All rights reserved. +// Use of this source code is governed by MIT license + +// Package datastructure implements some data structure. eg. list, linklist, stack, queue, tree, graph. package datastructure // LinkNode is a linkedlist node, which have a Value and Pre points to previous node, Next points to a next node of the link.