自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(20)
  • 收藏
  • 关注

原创 微信小程序入门及进阶详细指北

近期做了一个小程序课程项目(传送门),在开发过程发现小程序开发涉及的东西非常多。官方有很详细的文档,网上相关的学习资源也很多。如果在开发之前对小程序涉及的东西进行大致的整理则可以有比较清晰的学习思路,方便按需查找文档和资源。以下整理了近期学习小程序开发的一些收获,主要包含了学习的一些思路,官方文档及其他资源的使用参考,以及提供一些可以参考的示例。适合入门及有一定基础的小程序开发者参考。入门准备...

2019-06-30 23:02:30 560

原创 RPC及gRPC入门体验

Table of Contents实验代码gRPC简介gRPC特性RPC实践gRPC helloworldgRPC实践准备工作定义Arith服务编译Arith.proto实现服务端和客户端运行服务端和客户端gRPC简介gRPC是一个高性能、通用的开源RPC框架,其由Google主要面向移动应用开发并基于HTTP/2协议标准而设计,基于ProtoBuf(Pr...

2019-05-25 10:03:41 1808

原创 Linux目录结构介绍

前言在日常使用linux或者在linux上做开发时,经常会需要使用到linux系统的不同目录,比如在/etc目录下编辑相关的配置文件,在/var目录中查看程序运行时产生的日志信息等。时间久了就很想清晰地了解一下各个目录分别装的是什么内容。所以下面整理了一下linux目录结构的介绍,方便日后linux的使用。Linux目录结构介绍以下以Red Hat Enterprise 4 AS为例,详细列...

2019-05-20 22:50:57 257

原创 爬山法和模拟退火算法求解选址问题

选址问题选址问题是运筹学中经典的问题之一。选址问题在生产生活、物流、甚至军事中都有着非常广泛的应用,如工厂、仓库、急救中心、消防站、垃圾处理中心、物流中心、导弹仓库的选址等。基本问题:P-中位问题(p-median problems):P-中位问题(也叫P-中值问题)是研究如何选择P个服务站使得需求点和服务站之间的距离与需求量的乘积之和最小。P-中心问题(p-center prob...

2018-12-23 23:51:10 4790 5

原创 使用Vue.js搭建GraphQL前端

项目简介该项目仿照网站 swapi(The Star Wars API,提供了一组Restful Api来查询星球大战系列电影中的人物,飞船,星球等资源的详细信息),提供了基于GraphQL的查询服务。项目地址:GraphQL ServiceRestful vs GraphQL传统的Restful API已经给我们带来了不少好处,例如易于维护和扩展,上面提到的 swapi便是一个熟悉Res...

2018-12-15 18:29:22 4813

原创 Leetcode题解:Palindrome Number(回文数)

原题:Palindrome Number难度:EasyDetermine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward.Example 1:Input: 121Output: trueExample 2:Inp...

2018-12-11 16:32:29 243

原创 Leetcode题解:String to Integer (atoi)

原题:String to Integer (atoi)难度:MediumImplement atoi which converts a string to an integer.The function first discards as many whitespace characters as necessary until the first non-whitespace char...

2018-12-11 14:23:14 152

原创 Leetcode题解:Counting Bits

原题:Counting Bits难度:MediumGiven a non negative integer number num. For every numbers i in the range 0 ≤ i ≤ num calculate the number of 1’s in their binary representation and return them as an arra...

2018-11-17 22:39:13 179

原创 Leecode题解:longest-valid-parentheses

原题网址:https://leetcode.com/problems/longest-valid-parentheses/难度:HardGiven a string containing just the characters ‘(’ and ‘)’, find the length of the longest valid (well-formed) parentheses substr...

2018-11-17 21:55:35 420

原创 golang net/http包部分实现原理详解

net/http包在编写golang web应用中有很重要的作用,它主要提供了基于HTTP协议进行工作的client实现和server实现,可用于编写HTTP服务端和客户端。其使用方法也跟其他面向对象语言很相似,我们可以先从它的一些基础用法来感受一下:以下是示例客户端代码:// 用http包中默认的Client进行请求(因为没有指定Client)resp, err := http.Get(...

2018-11-16 13:51:47 3993

原创 Leetcode题解:unique-path

原题网址:https://leetcode.com/problems/unique-paths/A robot is located at the top-left corner of a m x n grid (marked ‘Start’ in the diagram below).The robot can only move either down or right at any ...

2018-11-11 20:00:28 244

原创 Leetcode题解:Swap nodes in pairs

原题网址:https://leetcode.com/problems/swap-nodes-in-pairs/Given a linked list, swap every two adjacent nodes and return its head.Example:Given 1->2->3->4, you should return the list as 2-&...

2018-10-28 19:38:01 306

原创 Leetcode题解:Jump Game

原题:https://leetcode.com/problems/jump-game/description/Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents yo...

2018-10-16 20:20:19 190

原创 Leetcode题解:Longest Substring Without Repeating Characters

原题:https://leetcode.com/problems/longest-substring-without-repeating-characters/description/Given a string, find the length of the longest substring without repeating characters.Example 1:Input:...

2018-10-14 21:22:48 135

原创 Go语言入门 环境搭建和入门

Go语言环境搭建文章目录Go语言环境搭建官网下载golang配置环境变量Enjoy coding安装gotour,快速入门Go了解更多相关学习网站官网下载golang下载地址:download golang进入官网下载地址后,根据自己的系统选择相应的安装包。我的系统是Ubuntu 16.04,因此选择Linux版本的golang。下载完后进入下载目录将安装包解压至/usr/local。...

2018-09-27 21:34:08 410

原创 Leetcode题解:Median of Two Sorted Arrays

原题:https://leetcode.com/problems/median-of-two-sorted-arrays/description/There are two sorted arrays nums1 and nums2 of size m and n respectively.Find the median of the two sorted arrays. The over...

2018-09-23 22:38:47 333

原创 Leetcode题解:Add Two Numbers

题目内容 原题:https://leetcode.com/problems/add-two-numbers/description/You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and eac...

2018-09-16 23:42:28 301

原创 算法设计与分析:leetcode "Two Sum"问题快速算法分享

快速幂算法n次方只需O(logn)次乘法运算整数的快速幂算法矩阵的快速幂算法本Markdown编辑器使用StackEdit修改而来,用它写博客,将会带来全新的体验哦:Markdown和扩展Markdown简洁的语法代码块高亮图片链接和图片上传LaTex数学公式UML序列图和流程图离线写博客导入导出Markdown文件丰富的快捷键*快捷键...

2018-09-09 11:15:34 236

翻译 克罗内克递归单元(论文翻译)

Kronecker Recurrent UnitsCijo JoseIdiap Research Institute & EPFL cijo.jose@idiap.chMoustapha CisséFacebook AI Research moustaphacisse@fb.comFrançois Fleuret Idiap Research Institute & ...

2018-07-05 20:18:42 1224

原创 Wireshark抓包捕获文件

十分钟入门Wireshark抓包捕获文件,轻松免费的下载音乐视频等多种文件。Wireshark是一款强大的抓包分析工具,能够捕获网络中的各种包并进行分析。因此,用wireshark来抓包捕获网络中的文件是可行的。在大多数情况下,文件在网络中传输是没有加密的。文件中的原始二进制数据会被原封不动地分成很多数据包进行发送,接收端会根据数据包中的编号自动将这些数据包还原成完整的文件。

2018-05-09 12:58:40 11491

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除