码迷,mamicode.com
首页 > 其他好文
山药蛋团队每日站立会议
5月10号(周日): 昨天:制定了详细的成员冲刺计划表,并制定了索引卡进行任务认领。 今天:1. 所有成员都安装好安卓开发环境;2. 进行数据库的模拟构建以及采集数据; 3. 导入已有的安卓项目,分析研究,初步开始搭建自己的框架; 4. 手机百度地图api资料以及函数的调用,了解工作流程5. 晚上7...
分类:其他好文   时间:2015-05-10 08:31:13    阅读次数:112
【leetcode】Longest Consecutive Sequence
Given an unsorted array of integers, find the length of the longest consecutive elements sequence.For example,Given [100, 4, 200, 1, 3, 2],The longest...
分类:其他好文   时间:2015-05-10 08:31:35    阅读次数:117
典型的集群架构模型
在这个开源的世界,实际上摆在我们面前的方案有很多。很多时候连架构师都难以选择。下面介绍三种典型的集群架构模型。 重客户端系 优势: 1、 注册中心作为协调器,客户端和服务端直连,消费者和提供者只在服务启动时或者服务发生变化时才依赖注册中心,其余时间注册中心出现任何问题,服务发生变化之前都不会影响调用,注册中心压力较小; 2、 客户端做负载均衡,生产者和消费者...
分类:其他好文   时间:2015-05-10 07:29:40    阅读次数:192
[LeetCode] Implement Trie (Prefix Tree) 实现字典树(前缀树)
Implement a trie withinsert,search, andstartsWithmethods.Note:You may assume that all inputs are consist of lowercase lettersa-z.http://dongxicheng.or...
分类:其他好文   时间:2015-05-10 07:28:15    阅读次数:120
软件架构设计:程序员向架构师转型必备(第二版) 笔记
1 从程序员到架构师 1 1.1 软件业人才结构 1.1.1 金字塔型还是橄榄型? 1 1. 橄榄型:中间大两头小; 2. 区分开学历结构和能力结构;学历结构:橄榄型,能力结构:金字塔型; 1.1.2 从程序员向架构师转型 2 1. 软企该怎么做? 2 解析软件架构概念 10 1. 架构的概念很多种...
分类:其他好文   时间:2015-05-10 07:25:36    阅读次数:334
证明:如果矩阵A的列向量组线性无关,则矩阵ATA可逆
证明:如果矩阵A的列向量组线性无关,则矩阵ATA可逆 设ATAX=0,如果ATA可逆,则ATAX=0有唯一解X=0,即X为零向量。 因此,原命题的证明等价于证明“如果矩阵A的列向量组线性无关,则ATAX=0有唯一解X=0”。 令XTATA...
分类:其他好文   时间:2015-05-10 06:24:35    阅读次数:969
铁路车号读取 - IE
前文已经介绍了《使用IE测试COM》,那么我们用一个实际的实例来使用他。     在这之前,我们需要了解2个Javascript函数: replace(regexp/substr,replacement) 使用这个函数来替换多余的空格。 str.replace(/\s/g, ""); split(separator,howmany) 字符串转换成字符数组。 string.split(",");...
分类:其他好文   时间:2015-05-10 06:25:34    阅读次数:267
LCP1549之SCT_PWM 输出功能分析
本文章以periph_sct_pwm.ewp为例,基于IAR工程,深入分析lpc1549的sct_pwm输出功能,首先给出工程main函数代码,对整个工程有个大概了解: /* Example entry point */ int main(void) { uint32_t cnt1 = 0, cnt2 = 0; int led_dp = 0, led_step = 1, out_dp = 0...
分类:其他好文   时间:2015-05-10 06:24:17    阅读次数:875
1037. Magic Coupon (25)
The magic shop in Mars is offering some magic coupons. Each coupon has an integer N printed on it, meaning that when you use this coupon with a product, you may get N times the value of that product b...
分类:其他好文   时间:2015-05-10 06:24:46    阅读次数:163
1039. Course List for Student (25)
Zhejiang University has 40000 students and provides 2500 courses. Now given the student name lists of all the courses, you are supposed to output the registered course list for each student who comes ...
分类:其他好文   时间:2015-05-10 06:21:45    阅读次数:178
1040. Longest Symmetric String (25)
Given a string, you are supposed to output the length of the longest symmetric sub-string. For example, given "Is PAT&TAP symmetric?", the longest symmetric sub-string is "s PAT&TAP s", hence you must...
分类:其他好文   时间:2015-05-10 06:22:13    阅读次数:218
1038. Recover the Smallest Number (30)
Given a collection of number segments, you are supposed to recover the smallest number from them. For example, given {32, 321, 3214, 0229, 87}, we can recover many numbers such like 32-321-3214-0229-8...
分类:其他好文   时间:2015-05-10 06:23:02    阅读次数:159
To be Done/Memorized
Summer GOALRaspberry Pi + Cloud workset up cloudsend image from Respberry Pi to Cloud and backAutomated License Plate RecognitionImprove Trainingprote...
分类:其他好文   时间:2015-05-10 06:22:45    阅读次数:139
Respberry Pi
好像人生还是摆脱不了编程啊..树莓派网上教程汇总 http://blog.csdn.net/liang890319/article/details/8638253
分类:其他好文   时间:2015-05-10 06:18:52    阅读次数:122
Max Sum(hd P1003)
Problem DescriptionGiven a sequence a[1],a[2],a[3]......a[n], your job is to calculate the max sum of a sub-sequence. For example, given (6,-1,5,4,-7)...
分类:其他好文   时间:2015-05-10 06:18:27    阅读次数:154
UVa 11369 Shopaholic
UVa 11369 Shopaholic解题报告
分类:其他好文   时间:2015-05-10 06:17:55    阅读次数:98
矩形个数
描述在一个3*2的矩形中,可以找到6个1*1的矩形,4个2*1的矩形3个1*2的矩形,2个2*2的矩形,2个3*1的矩形和1个3*2的矩形,总共18个矩形。给出A,B,计算可以从中找到多少个矩形。输入本题有多组输入数据(/*对于3*2矩形,计算为 3*(1+2) 2*(1+2) 1*(1+2),.....
分类:其他好文   时间:2015-05-10 06:19:34    阅读次数:131
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!