微信机器人开发SDK使用教程 发送朋友圈任务 case "PostSNSNewsTask": {// 发送朋友圈任务 log.debug("websocket:msgtype=PostSNSNewsTask。。。。。"); postSNSNewsTaskWebsocketHandler.handle ...
分类:
微信 时间:
2019-04-04 17:26:13
阅读次数:
577
1. 原始题目 You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their node ...
分类:
其他好文 时间:
2019-04-04 17:22:26
阅读次数:
126
git提交路径修改git remote set-url origin urlgit remote set-url 是修改远程的url的命令,前提是要先有远程url so 你必须先增加一个远程url git remote add origin “xxx.git" pull push 后面要加分支名称的 ...
分类:
Web程序 时间:
2019-04-04 15:59:47
阅读次数:
179
一、Java同步容器 同步容器是用来解决并发情况下的容器线程安全问题的。给多线程环境准备一个线程安全的容器对象。 线程安全的容器对象: Vector, Hashtable。线程安全容器对象,都是使用synchronized方法实现的。 concurrent包中的同步容器,大多数是使用系统底层技术实现 ...
分类:
编程语言 时间:
2019-04-03 14:01:44
阅读次数:
179
Two Merged Sequences 感觉是个垃圾题啊, 为什么过的人这么少。。 dp[ i ][ 0 ]表示处理完前 i 个, 第 i 个是递增序列序列里的元素,递减序列的最大值。 dp[ i ][ 1 ]表示处理完前 i 个, 第 i 个是递减序列序列里的元素,递增序列的最大值。 然后随便转 ...
分类:
其他好文 时间:
2019-04-01 01:12:16
阅读次数:
136
Algorithm Leetcode 2. Add Two Numbers You are given two non empty linked lists representing two non negative integers. The digits are stored in revers ...
分类:
其他好文 时间:
2019-03-31 23:16:42
阅读次数:
176
Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array. Note: The number of elements initialized in nums1 and num ...
分类:
其他好文 时间:
2019-03-30 13:31:06
阅读次数:
139
恢复内容开始 [LeetCode]21 Merge Two Sorted Lists 合并两个有序链表 Description Merge two sorted linked lists and return it as a new list. The new list should be made ...
分类:
其他好文 时间:
2019-03-30 01:34:07
阅读次数:
196
本题要求实现一个函数,将两个链表表示的递增整数序列合并为一个非递减的整数序列。 函数接口定义: 其中List结构定义如下: L1和L2是给定的带头结点的单链表,其结点存储的数据是递增有序的;函数Merge要将L1和L2合并为一个非递减的整数序列。应直接使用原序列中的结点,返回归并后的带头结点的链表头 ...
分类:
其他好文 时间:
2019-03-30 00:59:00
阅读次数:
212
linux安装软件包要解决包依赖问题,不能简单安装包本身。 离线安装基本思想都是先在一台设备上安装下载所有依赖包,然后拷贝所有依赖包到新设备上安装。 Ubuntu下apt离线安装包 执行apt update后包依赖关系保存在/var/lib/apt/lists目录下,下载的包保存在/var/cach ...
分类:
系统相关 时间:
2019-03-29 20:52:23
阅读次数:
537