Hexo博客使用插件hexo-git-backup通过GitHub备份与恢复 好久没更新过博客了,现在用的这台电脑是前些天刚装的Ubuntu系统,今天打算把博客迁移过来,折腾了好一会儿,所以准备写一篇关于Hexo博客的备份与恢复的。 2019-05-25 博客 #Hexo #博客
Connecting to GitHub with SSH 通过SSH连接到GitHub 整理自GitHub官方帮助文档:https://help.github.com/articles/connecting-to-github-with-ssh 2019-04-12 #GitHub
Ubuntu通过Deepin wine for Ubuntu安装QQ、微信 Deepin wine for Ubuntu 是 Deepin-wine 环境的 Ubuntu 移植版,GitHub上的一个开源项目。 项目地址:https://github.com/wszqkzqk/deepin-wine-ubuntu 以下内容主要参考项目说明。 2019-04-09 #Linux #软件
Windows平台使用Doxygen+GraphViz生成函数调用关系图 刚做了数据结构课程设计,报告要求给出函数调用关系图,然后就想有没有自动生成的工具,所以上网搜了下,总结下搜到的内容大概三类 2019-03-25 #C++ #Doxygen #GraphViz
Leetcode 回文链表 地址:https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/6/linked-list/45/ 题目请判断一个链表是否为回文链表。 2019-03-04 Leetcode #Leetcode #链表
Leetcode 合并两个有序链表 地址:https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/6/linked-list/44/ 题目将两个有序链表合并为一个新的有序链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。 示例: 输入:1->2->4, 1->3->4 输出:1->1->2 2019-03-01 Leetcode #Leetcode #链表
Leetcode 反转链表 地址:https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/6/linked-list/43/ 题目反转一个单链表。 示例: 输入: 1->2->3->4->5->NULL 输出: 5->4->3->2->1->NULL 进阶:你可以迭 2019-02-27 Leetcode #Leetcode #链表
Leetcode 删除链表的倒数第N个节点 地址:https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/6/linked-list/42/ 题目给定一个链表,删除链表的倒数第 n 个节点,并且返回链表的头结点。 2019-02-23 Leetcode #Leetcode #链表
Leetcode 删除链表中的节点 地址:https://leetcode-cn.com/explore/featured/card/top-interview-questions-easy/6/linked-list/41/ 题目请编写一个函数,使其可以删除某个链表中给定的(非末尾)节点,你将只被给定要求被删除的节点。 2019-02-22 Leetcode #Leetcode #链表