Go 09 Apr 2021How to implement a single double linked list in GolangBasic DefinitionIf you’ve read and read about the Linked List, you can first read Santekno’s post … 3 mntRead
Go 03 Sep 2020Getting to Know Pointers in GolangWe know that sending a variable to a function can be a parameter or a pointer. This pointer is usually a data … 2 mntRead
Go 03 Apr 2020Getting to Know Structs and Interfaces in GolangAlthough it is possible for us to write programs using only Go’s built-in data types, at some point it … 6 mntRead
Go 01 Mar 2020Getting to know Data Types in Golang##Numbers IntegersThere are integer types that we can use, including uint8, uint16, uint32, uint64, int8, … 3 mntRead
Go 17 Feb 2020VSCode Extension Often Used in GolangVisual Studio Code is currently a hit loved by programmers because it is said to be easier to use and lighter … 2 mntRead
Go 15 Feb 2020How to Setup Development Go in Visual Studio CodeSince becoming acquainted with Open Source Visual Studio Code, since then Santekno has been working on a … 4 mntRead
Go 01 Jan 2020How to Install Golang on Windows, Macbook and Linux ComputersFirst download the Golang library on the [Golang] website (https://golang.org/doc/install) . 2 mntRead
16 May 2019How to Create a Stack Using the Standard Template LibraryStack is a data structure that provides data like a stack in a glass, so if data is put into a glass the first … 2 mntRead
16 May 2019How to Create a Stack using Double Linked ListStack is a data structure that provides data like a stack in a glass, so if data is put into a glass the first … 2 mntRead
16 May 2019How to Create a Stack using C++ ArraysStack is a data structure that provides data like a stack in a glass, so if data is put into a glass the first … 2 mntRead
16 May 2019How to Create a Double Linked List using C++Double Linked List is a linked list that uses just a pointer variable to store a lot of data using the linked … 2 mntRead
16 May 2019How to Use a Single Linked List Using C++Linked List is a form of data structure, containing a collection of data (nodes) that are arranged … 2 mntRead