先自我介绍一下,小编浙江大学毕业,去过华为、字节跳动等大厂,目前阿里P7
深知大多数程序员,想要提升技能,往往是自己摸索成长,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!
因此收集整理了一份《2024年最新Golang全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友。
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上Go语言开发知识点,真正体系化!
由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新
如果你需要这些资料,可以添加V获取:vip1024b (备注go)
正文
} LIST;
/* END_HIDDEN */
/* function declarations */
#if defined(STDC) || defined(__cplusplus)
extern void lstLibInit (void);
extern NODE * lstFirst (LIST *pList);
extern NODE * lstGet (LIST *pList);
extern NODE * lstLast (LIST *pList);
extern NODE * lstNStep (NODE *pNode, int nStep);
extern NODE * lstNext (NODE *pNode);
extern NODE * lstNth (LIST *pList, int nodenum);
extern NODE * lstPrevious (NODE *pNode);
extern int lstCount (LIST *pList);
extern int lstFind (LIST *pList, NODE *pNode);
extern void lstAdd (LIST *pList, NODE *pNode);
extern void lstConcat (LIST *pDstList, LIST *pAddList);
extern void lstDelete (LIST *pList, NODE *pNode);
extern void lstExtract (LIST *pSrcList, NODE *pStartNode, NODE *pEndNode,
LIST *pDstList);
extern void lstFree (LIST *pList);
extern void lstInit (LIST *pList);
extern void lstInsert (LIST *pList, NODE *pPrev, NODE *pNode);
#else /* STDC */
extern void lstLibInit ();
extern NODE * lstFirst ();
extern NODE * lstGet ();
extern NODE * lstLast ();
extern NODE * lstNStep ();
extern NODE * lstNext ();
extern NODE * lstNth ();
extern NODE * lstPrevious ();
extern int lstCount ();
extern int lstFind ();
extern void lstAdd ();
extern void lstConcat ();
extern void lstDelete ();
extern void lstExtract ();
extern void lstFree ();
extern void lstInit ();
extern void lstInsert ();
#endif /* STDC */
#ifdef __cplusplus
}
#endif
#endif /* ~ _ASMLANGUAGE */
#endif /* __INClstLibh */
现在来说明一下#if defined(STDC) || defined(__cplusplus)的意思。
这两个都是标准宏,_STDC_表示是是否符合标准C,_cplusplus表示是否是C++编译器
但是其实这里不知道为啥要把NODE和LIST分开,之前看的链表都是放在一起的。而且节点没有存放数据的地方。
lstLib.c
/* lstLib.c - doubly linked list subroutine library */
/* Copyright 1984-2001 Wind River Systems, Inc. */
#include “copyright_wrs.h”
/*
modification history
02a,19sep01,pcm added lstLibInit () to bring module into image (SPR 20698)
01z,05oct98,jmp doc: cleanup.
01y,14oct95,jdi doc: fixed typo in lstNth().
01x,13feb95,jdi doc format change.
01w,20jan93,jdi documentation cleanup for 5.1.
01v,09jul92,hdn put an optimized lstGet()
01u,26may92,rrr the tree shuffle
01t,25nov91,rrr cleanup of some ansi warnings.
01s,04oct91,rrr passed through the ansification filter
-changed functions to ansi style
-changed VOID to void
-changed copyright notice
01r,30apr91,jdi documentation tweaks.
01q,05apr91,jdi documentation – removed header parens and x-ref numbers;
doc review by dnw.
01p,11feb91,jaa documentation cleanup.
01o,05nov87,jlf documentation
01n,02apr87,ecs hushed lint in lstFree.
01m,25mar87,jlf documentation
01l,21dec86,dnw changed to not get include files from default directories.
01k,01jul86,jlf documentation.
01j,21may86,llk added lstFree and lstNStep.
01i,09apr86,rdc added lstFind.
01h,20jul85,jlf documentation.
01g,19sep84,jlf fixed spacing in comments by adding .ne’s.
01f,08sep84,jlf added comments and copyright notice.
01e,29jun84,dnw added lstConcat and lstExtract.
01d,03jun84,dnw added lstFirst, lstLast.
changed list.{head,tail} to list.node.{next,previous}.
cleaned up comments, etc.
01c,07may84,ecs added lstNext, lstPrevious, and lstCount.
01b,09jun83,ecs modified the documentation
01a,06aug82,dnw created from old singly-linked-list lib which is now “slllb”.
*/
/*
DESCRIPTION
This subroutine library supports the creation and maintenance of a
doubly linked list. The user supplies a list descriptor (type LIST)
that will contain pointers to the first and last nodes in the list,
and a count of the number of nodes in the list. The nodes in the
list can be any user-defined structure, but they must reserve space
for two pointers as their first elements. Both the forward and
backward chains are terminated with a NULL pointer.
The linked-list library simply manipulates the linked-list data structures;
no kernel functions are invoked. In particular, linked lists by themselves
provide no task synchronization or mutual exclusion. If multiple tasks will
access a single linked list, that list must be guarded with some
mutual-exclusion mechanism (e.g., a mutual-exclusion semaphore).
NON-EMPTY LIST:
.CS
| head--------------->| next----------->| next---------
| | | | | | |
| | ------- prev |<---------- prev | |
| | | | | | | |
| tail------ | | … | ----->| … | |
| | | v | v
|count=2| | ----- | -----
--------- | — | —
| - | -
.CE |
EMPTY LIST:
.CS
| head------------------
| | |
| tail---------- |
| | | v
| count=0 | ----- -----
.CE
INCLUDE FILES: lstLib.h
*/
/* LINTLIBRARY */
#include “vxWorks.h”
#include “lstLib.h”
#include “stdlib.h”
#define HEAD node.next /* first node in list /
#define TAIL node.previous / last node in list */
/*********************************************************************
*
- lstLibInit - initializes lstLib module
- This routine pulls lstLib into the vxWorks image.
- RETURNS: N/A
*/
void lstLibInit (void)
{
return;
}
/*********************************************************************
*
- lstInit - initialize a list descriptor
- This routine initializes a specified list to an empty list.
- RETURNS: N/A
*/
void lstInit
(
FAST LIST pList / ptr to list descriptor to be initialized /
)
{
pList->HEAD = NULL;
pList->TAIL = NULL;
pList->count = 0;
}
/************************************************************************
*
- lstAdd - add a node to the end of a list
- This routine adds a specified node to the end of a specified list.
- RETURNS: N/A
*/
void lstAdd
(
LIST pList, / pointer to list descriptor /
NODE pNode / pointer to node to be added /
)
{
lstInsert (pList, pList->TAIL, pNode);
}
/************************************************************************
*
- lstConcat - concatenate two lists
- This routine concatenates the second list to the end of the first list.
- The second list is left empty. Either list (or both) can be
- empty at the beginning of the operation.
- RETURNS: N/A
*/
void lstConcat
(
FAST LIST pDstList, / destination list */
FAST LIST pAddList / list to be added to dstList /
)
{
if (pAddList->count == 0) / nothing to do if AddList is empty */
return;
if (pDstList->count == 0)
*pDstList = pAddList;
else
{
/ both lists non-empty; update DstList pointers */
pDstList->TAIL->next = pAddList->HEAD;
pAddList->HEAD->previous = pDstList->TAIL;
pDstList->TAIL = pAddList->TAIL;
pDstList->count += pAddList->count;
}
/* make AddList empty */
lstInit (pAddList);
}
/**************************************************************************
*
- lstCount - report the number of nodes in a list
- This routine returns the number of nodes in a specified list.
- RETURNS:
- The number of nodes in the list.
*/
int lstCount
(
LIST pList / pointer to list descriptor /
)
{
return (pList->count);
}
/*************************************************************************
*
- lstDelete - delete a specified node from a list
- This routine deletes a specified node from a specified list.
- RETURNS: N/A
*/
void lstDelete
(
FAST LIST pList, / pointer to list descriptor */
FAST NODE pNode / pointer to node to be deleted */
)
{
if (pNode->previous == NULL)
pList->HEAD = pNode->next;
else
pNode->previous->next = pNode->next;
if (pNode->next == NULL)
pList->TAIL = pNode->previous;
else
pNode->next->previous = pNode->previous;
/* update node count */
pList->count–;
}
/************************************************************************
*
- lstExtract - extract a sublist from a list
- This routine extracts the sublist that starts with and ends
- with from a source list. It places the extracted list in
- .
- RETURNS: N/A
*/
void lstExtract
(
FAST LIST pSrcList, / pointer to source list */
FAST NODE pStartNode, / first node in sublist to be extracted */
FAST NODE pEndNode, / last node in sublist to be extracted */
FAST LIST pDstList / ptr to list where to put extracted list */
)
{
FAST int i;
FAST NODE *pNode;
/* fix pointers in original list */
if (pStartNode->previous == NULL)
pSrcList->HEAD = pEndNode->next;
else
pStartNode->previous->next = pEndNode->next;
if (pEndNode->next == NULL)
pSrcList->TAIL = pStartNode->previous;
else
pEndNode->next->previous = pStartNode->previous;
/* fix pointers in extracted list */
pDstList->HEAD = pStartNode;
pDstList->TAIL = pEndNode;
pStartNode->previous = NULL;
pEndNode->next = NULL;
/* count number of nodes in extracted list and update counts in lists */
i = 0;
for (pNode = pStartNode; pNode != NULL; pNode = pNode->next)
i++;
pSrcList->count -= i;
pDstList->count = i;
}
/************************************************************************
*
- lstFirst - find first node in list
- This routine finds the first node in a linked list.
- RETURNS
- A pointer to the first node in a list, or
- NULL if the list is empty.
*/
NODE lstFirst
(
LIST pList / pointer to list descriptor /
)
{
return (pList->HEAD);
}
/**********************************************************************
*
- lstGet - delete and return the first node from a list
- This routine gets the first node from a specified list, deletes the node
- from the list, and returns a pointer to the node gotten.
- RETURNS
- A pointer to the node gotten, or
- NULL if the list is empty.
*/
NODE *lstGet
(
FAST LIST pList / ptr to list from which to get node */
)
{
FAST NODE *pNode = pList->HEAD;
if (pNode != NULL) /* is list empty? /
{
pList->HEAD = pNode->next; / make next node be 1st */
if (pNode->next == NULL) /* is there any next node? /
pList->TAIL = NULL; / no - list is empty /
else
pNode->next->previous = NULL; / yes - make it 1st node */
pList->count–; /* update node count */
}
return (pNode);
}
/************************************************************************
*
- lstInsert - insert a node in a list after a specified node
- This routine inserts a specified node in a specified list.
- The new node is placed following the list node .
- If is NULL, the node is inserted at the head of the list.
- RETURNS: N/A
*/
void lstInsert
(
FAST LIST pList, / pointer to list descriptor */
FAST NODE pPrev, / pointer to node after which to insert */
FAST NODE pNode / pointer to node to be inserted */
)
{
FAST NODE *pNext;
if (pPrev == NULL)
{ /* new node is to be first in list /
pNext = pList->HEAD;
pList->HEAD = pNode;
}
else
{ / make prev node point fwd to new */
pNext = pPrev->next;
pPrev->next = pNode;
}
网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。
需要这份系统化的资料的朋友,可以添加V获取:vip1024b (备注Go)
一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!
;
if (pPrev == NULL)
{ /* new node is to be first in list /
pNext = pList->HEAD;
pList->HEAD = pNode;
}
else
{ / make prev node point fwd to new */
pNext = pPrev->next;
pPrev->next = pNode;
}
网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。
需要这份系统化的资料的朋友,可以添加V获取:vip1024b (备注Go)
[外链图片转存中…(img-Wu06cBg9-1713177700042)]
一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!