<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[Hong_smallgod的博客]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/Hong_smallgod</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; Hong_smallgod]]></copyright><item><title><![CDATA[linux 命令]]></title><link>https://blog.csdn.net/Hong_smallgod/article/details/100697588</link><guid>https://blog.csdn.net/Hong_smallgod/article/details/100697588</guid><author>Hong_smallgod</author><pubDate>Fri, 20 Sep 2019 10:15:11 +0800</pubDate><description><![CDATA[cp  --&gt; 复制多个文件到同一个文件夹
例子: cp file1 file2 file3 directory

]]></description><category></category></item><item><title><![CDATA[linux解压记录]]></title><link>https://blog.csdn.net/Hong_smallgod/article/details/101037824</link><guid>https://blog.csdn.net/Hong_smallgod/article/details/101037824</guid><author>Hong_smallgod</author><pubDate>Fri, 20 Sep 2019 08:42:48 +0800</pubDate><description><![CDATA[linux解压记录]]></description><category></category></item><item><title><![CDATA[GCC编译器]]></title><link>https://blog.csdn.net/Hong_smallgod/article/details/101016462</link><guid>https://blog.csdn.net/Hong_smallgod/article/details/101016462</guid><author>Hong_smallgod</author><pubDate>Thu, 19 Sep 2019 11:16:31 +0800</pubDate><description><![CDATA[http://gcc.gnu.org/

]]></description><category></category></item><item><title><![CDATA[linux内核源码]]></title><link>https://blog.csdn.net/Hong_smallgod/article/details/101016413</link><guid>https://blog.csdn.net/Hong_smallgod/article/details/101016413</guid><author>Hong_smallgod</author><pubDate>Thu, 19 Sep 2019 11:15:22 +0800</pubDate><description><![CDATA[https://www.kernel.org/

]]></description><category></category></item><item><title><![CDATA[lua]]></title><link>https://blog.csdn.net/Hong_smallgod/article/details/101016349</link><guid>https://blog.csdn.net/Hong_smallgod/article/details/101016349</guid><author>Hong_smallgod</author><pubDate>Thu, 19 Sep 2019 11:13:48 +0800</pubDate><description><![CDATA[http://www.lua.org/

]]></description><category></category></item><item><title><![CDATA[直接啃glibc-2.30源码]]></title><link>https://blog.csdn.net/Hong_smallgod/article/details/101016304</link><guid>https://blog.csdn.net/Hong_smallgod/article/details/101016304</guid><author>Hong_smallgod</author><pubDate>Thu, 19 Sep 2019 11:12:15 +0800</pubDate><description><![CDATA[http://www.gnu.org/software/libc/

]]></description><category></category></item><item><title><![CDATA[码云的使用]]></title><link>https://blog.csdn.net/Hong_smallgod/article/details/100985432</link><guid>https://blog.csdn.net/Hong_smallgod/article/details/100985432</guid><author>Hong_smallgod</author><pubDate>Wed, 18 Sep 2019 15:40:46 +0800</pubDate><description><![CDATA[产生公钥的方法:
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;https://blog.csdn.net/james_jr10/article/details/79902784

]]></description><category></category></item><item><title><![CDATA[malloc的一些奇怪的问题]]></title><link>https://blog.csdn.net/Hong_smallgod/article/details/100971683</link><guid>https://blog.csdn.net/Hong_smallgod/article/details/100971683</guid><author>Hong_smallgod</author><pubDate>Wed, 18 Sep 2019 15:01:27 +0800</pubDate><description><![CDATA[下面的一些用到的东西, 在我的博客里都能找到
#include &lt;stdio.h&gt;
#include &lt;stdlib.h&gt;
#include &lt;stdbool.h&gt;
#include "chain_queue.h"
#include "binary_tree.h"
#include "dynamic_stack.h"
#include "single_linke...]]></description><category></category></item><item><title><![CDATA[C语言实现链式结构二叉树的相关函数]]></title><link>https://blog.csdn.net/Hong_smallgod/article/details/100576849</link><guid>https://blog.csdn.net/Hong_smallgod/article/details/100576849</guid><author>Hong_smallgod</author><pubDate>Wed, 18 Sep 2019 08:58:33 +0800</pubDate><description><![CDATA[C语言实现二叉搜索树节点的删除函数]]></description><category></category></item><item><title><![CDATA[平时使用过的vi命令记录]]></title><link>https://blog.csdn.net/Hong_smallgod/article/details/100655446</link><guid>https://blog.csdn.net/Hong_smallgod/article/details/100655446</guid><author>Hong_smallgod</author><pubDate>Tue, 17 Sep 2019 09:59:01 +0800</pubDate><description><![CDATA[刷新文件命令	:e
替换 s/xxx/xxx/g   全局替换

]]></description><category></category></item><item><title><![CDATA[C语言实现双链表]]></title><link>https://blog.csdn.net/Hong_smallgod/article/details/100891910</link><guid>https://blog.csdn.net/Hong_smallgod/article/details/100891910</guid><author>Hong_smallgod</author><pubDate>Mon, 16 Sep 2019 23:52:58 +0800</pubDate><description><![CDATA[实现这个的初衷目的有两个：

只是为了练习
分享一下linux内核的双链表实现
未完待续

typedef struct dll_node DLL_NODE;
struct dll_node {
	DLL_NODE *prev;
	DLL_NODE *next;
	int data;
};

int dll_insert(DLL_NODE *head, int data)
{
	DLL_NODE ...]]></description><category></category></item><item><title><![CDATA[C语言实现链式队列结构]]></title><link>https://blog.csdn.net/Hong_smallgod/article/details/100726674</link><guid>https://blog.csdn.net/Hong_smallgod/article/details/100726674</guid><author>Hong_smallgod</author><pubDate>Mon, 16 Sep 2019 10:11:27 +0800</pubDate><description><![CDATA[使用单链表就行了。为了实现链式队列， 我先去实现单链表

]]></description><category></category></item><item><title><![CDATA[C 语言实现单链表]]></title><link>https://blog.csdn.net/Hong_smallgod/article/details/100730285</link><guid>https://blog.csdn.net/Hong_smallgod/article/details/100730285</guid><author>Hong_smallgod</author><pubDate>Thu, 12 Sep 2019 08:38:44 +0800</pubDate><description><![CDATA[C语言实现单链表]]></description><category></category></item><item><title><![CDATA[搜狗输入法Linux安装]]></title><link>https://blog.csdn.net/Hong_smallgod/article/details/100752317</link><guid>https://blog.csdn.net/Hong_smallgod/article/details/100752317</guid><author>Hong_smallgod</author><pubDate>Wed, 11 Sep 2019 23:07:38 +0800</pubDate><description><![CDATA[Ubuntu 18.04 安装Linux版本的搜狗拼音输入法

https://pinyin.sogou.com/linux/

]]></description><category></category></item><item><title><![CDATA[C语言实现动态数组堆栈]]></title><link>https://blog.csdn.net/Hong_smallgod/article/details/100714281</link><guid>https://blog.csdn.net/Hong_smallgod/article/details/100714281</guid><author>Hong_smallgod</author><pubDate>Wed, 11 Sep 2019 08:48:29 +0800</pubDate><description><![CDATA[实现这个的初衷是想要 写树的非递归遍历的
typedef int element_type;
typedef struct stack {
    int top; /* 从 0 开始 */
    int size;
    element_type *arr;
    int (*num)(struct stack *); /* 堆栈元素的数量 */
    bool (*pop)(struc...]]></description><category></category></item><item><title><![CDATA[关于数据结构栏目]]></title><link>https://blog.csdn.net/Hong_smallgod/article/details/100725714</link><guid>https://blog.csdn.net/Hong_smallgod/article/details/100725714</guid><author>Hong_smallgod</author><pubDate>Wed, 11 Sep 2019 08:46:39 +0800</pubDate><description><![CDATA[写这些东西, 是拿来玩的, 并不针对某个项目。这个功能需求的东西是自己给自己提的，

]]></description><category></category></item><item><title><![CDATA[C语言实现静态数组队列]]></title><link>https://blog.csdn.net/Hong_smallgod/article/details/100691152</link><guid>https://blog.csdn.net/Hong_smallgod/article/details/100691152</guid><author>Hong_smallgod</author><pubDate>Tue, 10 Sep 2019 15:53:02 +0800</pubDate><description><![CDATA[C语言实现静态数组队列]]></description><category></category></item><item><title><![CDATA[Markdown编辑器的学习记录]]></title><link>https://blog.csdn.net/Hong_smallgod/article/details/100660650</link><guid>https://blog.csdn.net/Hong_smallgod/article/details/100660650</guid><author>Hong_smallgod</author><pubDate>Tue, 10 Sep 2019 15:19:48 +0800</pubDate><description><![CDATA[&lt;br&gt;  代表换行分割线

]]></description><category></category></item><item><title><![CDATA[C语言实现动态数组队列]]></title><link>https://blog.csdn.net/Hong_smallgod/article/details/100678372</link><guid>https://blog.csdn.net/Hong_smallgod/article/details/100678372</guid><author>Hong_smallgod</author><pubDate>Tue, 10 Sep 2019 08:58:51 +0800</pubDate><description><![CDATA[C语言实现动态数组队列]]></description><category></category></item></channel></rss>