单片机的3种封装形式和2种晶振电路
分类:
其他好文 时间:
2015-05-20 08:14:25
阅读次数:
108
最近项目要到DeadLine了,虽然各项进展基本的还可以,但是还是有一些压力的。这里就娱乐一下,说一个硬件的知识:DIP开关。这个硬件原件有什么好说的,其实是自己在项目中用到了它,因为这么个玩意,实验室的四个人调试了一下午,真不值得。问题背景实验室买了一个新的YAAN的云台,控制协议使用的是通用的P...
分类:
其他好文 时间:
2015-05-20 08:14:32
阅读次数:
139
leetcode 207 : Course Schedule...
分类:
其他好文 时间:
2015-05-20 07:10:17
阅读次数:
204
竹杖芒鞋轻胜马,一蓑烟雨任平生。让我再次收拾好装备出发,平静地走出城堡,面对外面不可知的风雨,面对自己选择的命运!...
分类:
其他好文 时间:
2015-05-20 07:11:07
阅读次数:
130
Word Search II
Total Accepted: 423
Total Submissions: 2510
Given a 2D board and a list of words from the dictionary, find all words in the board.
Each word must be constructed from letter...
分类:
其他好文 时间:
2015-05-20 07:09:45
阅读次数:
146
virtualenv能做什么?1)创建虚拟的python运行环境,各种lib都可以使用自己需要的版本2)作为一个普通用户,不需要root权限,进入virtualenv后,你可以运行pip, easy_install,甚至可以通过从源码python setup.py install等多种方式安装任何自...
分类:
其他好文 时间:
2015-05-20 07:09:30
阅读次数:
149
Give you an integer array (index from 0 to n-1, where n is the size of this array, value from 0 to 10000) and an query list. For each query, give you ...
分类:
其他好文 时间:
2015-05-20 07:09:41
阅读次数:
97
The diameter of a tree (sometimes called the width) is the number of nodes on the longest path between two leaves in the tree.The diameter of a tree T...
分类:
其他好文 时间:
2015-05-20 07:07:30
阅读次数:
129
各种 Sort 算法,包括 Quick Sort, Merge Sort, Heap Sort, Count Sort 1 package Sort; 2 3 public class Sort { 4 /* 5 * Quick Sort 6 * Tim...
分类:
其他好文 时间:
2015-05-20 07:09:30
阅读次数:
125
Given an Array, find the number of inversion couples in the Arraye.g. 2, 4, 3, 1 4 -> (2,1), (3,1), (4,1), (4,3)hint:Solution 1* Iterate the whole a.....
分类:
其他好文 时间:
2015-05-20 07:06:51
阅读次数:
103
This is on ubuntu 14.04 LTS1. you need to install virtuoso (you can refer to my previous post)2. open your virtuoso service3. do./isql 1111to invoke t...
分类:
其他好文 时间:
2015-05-20 07:07:37
阅读次数:
135
在抽象代数中我们知道有一个(左)群作用的概念。简单复习一下,一个群(或半群)G 作用到一个一般的集合 X 上去,指的是一个满足一定条件的映射 $ \phi :G \times X \to X $ . 这也可以看成是群(或半群)里的任何一个元素 $ g \in G $ 都诱导了一个 X 上的变换 $....
分类:
其他好文 时间:
2015-05-20 07:07:09
阅读次数:
183
Trie, again.class TrieNode {public: // Initialize your data structure here. TrieNode() : prev(nullptr), c(0), bIsLast(false) { } TrieNo...
分类:
其他好文 时间:
2015-05-20 07:07:16
阅读次数:
119
原文:http://diaosbook.com/Post/2012/12/15/setup-private-nuget-serverNuGet是.NET程序员熟知的给.NET项目自动配置安装library的工具,现在已经整合在了VS2010 SP1和VS2012里。但有时候,尤其在某些公司内部,因为...
分类:
其他好文 时间:
2015-05-20 07:07:20
阅读次数:
295
学习前端知识第一天:(看了DOM 编程艺术)一.学习了如何通过javascript获取html中的元素: 方法有三: (1)getElementById 通过元素的id获取元素,返回id所对应的元素对象 (2)getElementsByTagName 通过元素的名字获取元素,返回的...
分类:
其他好文 时间:
2015-05-20 07:06:40
阅读次数:
166
百度地图3.0实现图文并茂的覆盖物分类:地图API开发android2014-07-03 00:302176人阅读评论(2)收藏举报前一段时间搞地图要显示周围房源信息,之前搜索的都是使用2.x的,现在百度地图官方新出了3.0版本由于之前思维局限一直没有实现图文并茂,今天看了别人2.0的实现方式,把它...
分类:
其他好文 时间:
2015-05-20 07:05:50
阅读次数:
169
Given a linked list, swap every two adjacent nodes and return its head.For example,Given1->2->3->4, you should return the list as2->1->4->3.Your algor...
分类:
其他好文 时间:
2015-05-20 07:06:47
阅读次数:
141