GoWorld

所属分类:MySQL数据库
开发工具:GO
文件大小:1928KB
下载次数:0
上传日期:2021-07-26 07:42:44
上 传 者sh-1993
说明:  我围棋活动的中心
(center of my go activities)

文件列表:
Data-Structures (0, 2021-07-26)
Data-Structures\Binary search tree (0, 2021-07-26)
Data-Structures\Binary search tree\binaryTree.go (4388, 2021-07-26)
Data-Structures\Binary search tree\binaryTree_test.go (2587, 2021-07-26)
Data-Structures\Graph (0, 2021-07-26)
Data-Structures\Graph\AdjacencyList.go (1587, 2021-07-26)
Data-Structures\Graph\AdjacencyMatrix.go (831, 2021-07-26)
Data-Structures\Graph\BFS.go (1700, 2021-07-26)
Data-Structures\Graph\DFS.go (885, 2021-07-26)
Data-Structures\Graph\Dfs-usage(maybeToDo).png (247579, 2021-07-26)
Data-Structures\Graph\Graph.go (2543, 2021-07-26)
Data-Structures\Graph\Scc.go (3024, 2021-07-26)
Data-Structures\Graph\TopologicalSort.go (2511, 2021-07-26)
Data-Structures\Graph\dijkstra.go (5429, 2021-07-26)
Data-Structures\Graph\findConnectedComponents.go (1557, 2021-07-26)
Data-Structures\Graph\queue.go (1016, 2021-07-26)
Data-Structures\Graph\stack.go (891, 2021-07-26)
Data-Structures\HashTable (0, 2021-07-26)
Data-Structures\HashTable\chaining (0, 2021-07-26)
Data-Structures\HashTable\chaining\chaining.go (1347, 2021-07-26)
Data-Structures\HashTable\chaining\list.go (1816, 2021-07-26)
Data-Structures\HashTable\openAddressing (0, 2021-07-26)
Data-Structures\HashTable\openAddressing\oaTable.go (2412, 2021-07-26)
Data-Structures\Heap&HeapSort (0, 2021-07-26)
Data-Structures\Heap&HeapSort\binaryMaxHeap.go (3408, 2021-07-26)
Data-Structures\RedBlackTree (0, 2021-07-26)
Data-Structures\RedBlackTree\RB_Tree_deletion_pseudocode.pdf (397114, 2021-07-26)
Data-Structures\RedBlackTree\rbTree.go (13287, 2021-07-26)
Data-Structures\RedBlackTree\test.go (182, 2021-07-26)
Data-Structures\link-list (0, 2021-07-26)
Data-Structures\link-list\.idea (0, 2021-07-26)
Data-Structures\link-list\.idea\linked-list-go.iml (281, 2021-07-26)
Data-Structures\link-list\.idea\modules.xml (280, 2021-07-26)
Data-Structures\link-list\.idea\vcs.xml (192, 2021-07-26)
Data-Structures\link-list\.idea\workspace.xml (6128, 2021-07-26)
Data-Structures\link-list\linked-list.go (2724, 2021-07-26)
Data-Structures\link-list\linked_list_test.go (1018, 2021-07-26)
... ...

# Go World A place for trainings and some mini projects also to share good resources and ofcourse , links to all my golang projects ! ![pic](https://files.virgool.io/upload/users/14114/posts/lqwhva3jm3qh/zvpmsrcjkgug.png) ## Projects * [Gook](https://github.com/Armingodiz/Gook) * [Concurrency-challenge](https://github.com/Armingodiz/golang-code-challenge) * [url-shortener](https://github.com/Armingodiz/URL-Shortener#url-shortener) * [gitlab-api](https://github.com/Armingodiz/gitlab-api) * [Gochain](https://github.com/Armingodiz/Gochain) * [Chat server](https://github.com/Armingodiz/Chat-sever) * [telegram-Bot](https://github.com/Armingodiz/GoWorld/tree/master/Projects/Telegram-Bot) * [black-jack game (with simple ai)](https://github.com/Armingodiz/GoWorld/tree/master/Projects/BlackJackGame) * [Api saver Cli](https://github.com/Armingodiz/GoWorld/tree/master/Projects/apisaver) * [FilesTools](https://github.com/Armingodiz/GoWorld/tree/master/Projects/FilesTool) * [twitter-bot](https://github.com/Armingodiz/GoWorld/tree/master/Projects/go-twitter-bot) * [quiz-game](https://github.com/Armingodiz/GoWorld/tree/master/Projects/quiz-game-Go) * [login-system](https://github.com/Armingodiz/GoWorld/tree/master/Projects/simple%20login-system) * [decide game](https://github.com/Armingodiz/GoWorld/tree/master/Projects/simple%20WebApp%20to%20practice%20using%20json) ## Practiced Databases * [redis](https://github.com/Armingodiz/URL-Shortener#url-shortener) * [mysql](https://github.com/Armingodiz/GoWorld/tree/master/miniProjects/simple%20login-system) * [ PostgreSQL](https://github.com/Armingodiz/GoWorld/tree/master/practices%26examples/Postgres) * [ MongoDB](https://github.com/Armingodiz/GoWorld/tree/master/practices%26examples/mongoDB) ## Practiced design patterns * [Strategy](https://github.com/Armingodiz/GoWorld/tree/master/practices%26examples/disign%20patterns/Strategy) * [Fuctional Options](https://github.com/Armingodiz/GoWorld/tree/master/practices%26examples/disign%20patterns/Functional%20Options) * [Builder](https://github.com/Armingodiz/GoWorld/tree/master/practices%26examples/disign%20patterns/Builder) * [Pipelines](https://github.com/Armingodiz/GoWorld/tree/master/practices%26examples/disign%20patterns/concurrencyDP/pipeline) * [barrier](https://github.com/Armingodiz/GoWorld/tree/master/practices%26examples/disign%20patterns/concurrencyDP/Barrier) * [futures](https://github.com/Armingodiz/GoWorld/tree/master/practices%26examples/disign%20patterns/concurrencyDP/futures) ## Data Structure implementation * [Binary Search Tree](https://github.com/Armingodiz/GoWorld/tree/master/Data-Structures/Binary%20search%20tree) * [Graph](https://github.com/Armingodiz/GoWorld/tree/master/Data-Structures/Graph) * [Hash Table](https://github.com/Armingodiz/GoWorld/tree/master/Data-Structures/HashTable) * [Heap](https://github.com/Armingodiz/GoWorld/tree/master/Data-Structures/Heap%26HeapSort) * [Red black Tree](https://github.com/Armingodiz/GoWorld/tree/master/Data-Structures/RedBlackTree) * [Linked list](https://github.com/Armingodiz/GoWorld/tree/master/Data-Structures/link-list) * [Stack](https://github.com/Armingodiz/GoWorld/tree/master/Data-Structures/stack) ## Concurrency Topics : * [Worker Pools ](https://github.com/Armingodiz/GoWorld/tree/master/practices%26examples/concurrency/WorkerPools) * [WaitGroups ](https://github.com/Armingodiz/GoWorld/tree/master/practices%26examples/concurrency/waitGroups) * [Race condition ](https://github.com/Armingodiz/GoWorld/tree/master/practices%26examples/concurrency/RaceCondition) * [design patterns](https://github.com/Armingodiz/GoWorld/tree/master/practices%26examples/disign%20patterns/concurrencyDP) ## etc * [Docker](https://github.com/Armingodiz/GoWorld/tree/master/practices%26examples/learning%20docker) ## Usefull Links good for | website ------------- | ------------- make suitable struct to unmarshal json | https://mholt.github.io/json-to-go/ DOCKER | https://www.docker.com/blog/docker-golang/ Go DOCKER | https://tutorialedge.net/golang/go-docker-tutorial/ Go cli | https://courses.calhoun.io/lessons/les_goph_36

近期下载者

相关文件


收藏者