上一页 1 ··· 269 270 271 272 273 274 275 276 277 ··· 411 下一页
摘要: 首先。实现这一切的大前提是。你的AVD安卓模拟器,在启动之前。有设置好sdcard的大小,例如以下图。同一时候,你的AVD安卓模拟器,要处于启动状态。否则无法运行例如以下的操作。 这里以《【Android】利用adt-bundle在Windows下轻松搭建Android开发环境与Hello worl 阅读全文
posted @ 2017-07-19 19:00 yjbjingcha 阅读(1720) 评论(0) 推荐(0)
摘要: 解题思路: 求出树的直径的两个端点。则树上每一个节点到其它点的最远距离一定是到这两个端点的距离中最长的那一个。 #include <iostream> #include <cstring> #include <cstdlib> #include <cstdio> #include <cmath> # 阅读全文
posted @ 2017-07-19 16:58 yjbjingcha 阅读(270) 评论(0) 推荐(0)
摘要: 点击打开链接题目链接 Qin Shi Huang's National Road System Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 阅读全文
posted @ 2017-07-19 16:23 yjbjingcha 阅读(201) 评论(0) 推荐(0)
摘要: 题目 Given n non-negative integers a1, a2, …, an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endp 阅读全文
posted @ 2017-07-19 14:43 yjbjingcha 阅读(103) 评论(0) 推荐(0)
摘要: 人在非常多时候都是非常功利的,而这样的功利心往往会使人失去耐心,被挡在浅浅的表层。而无法深入。 想每做一件事情,都能有所收获,正如期望每一天所进行的学习。都能卓有成效。能学到非常多的知识技能。这实际上就是功利心在作祟。 实际上。有非常多事情并非可以在一时之间就能产生所谓的“收获”或者“功效”的,它不 阅读全文
posted @ 2017-07-19 13:06 yjbjingcha 阅读(142) 评论(0) 推荐(0)
摘要: C++ 学习笔记(一些新特性总结3) public、protected 和 private 继承 public 继承时,基类的存取限制是不变的。 class MyClass { public: // Unrestricted access int myPublic; protected: // De 阅读全文
posted @ 2017-07-19 12:39 yjbjingcha 阅读(193) 评论(0) 推荐(0)
摘要: 题目链接: huangjing 题目: 思路: 给出的是一个方程,首先讨论最高项系数。 1:a==0&& b==0 那么函数就是线性的。直接比較端点就可以。 2 a==0&&b!=0 那么函数就是二次函数。直接算出特征值,然后比較端点值就可以。。 3 a!=0 又有几种情况,那么当特征根 b*b-4 阅读全文
posted @ 2017-07-19 11:59 yjbjingcha 阅读(137) 评论(0) 推荐(0)
摘要: 题目大意:求(1^K + 2^K + 3K + … + N^K) % 2^32 解题思路: 借用别人的图 能够先打表,求出Cnm,用杨辉三角能够高速得到 #include<cstdio> typedef unsigned long long ll; const int N = 55; const l 阅读全文
posted @ 2017-07-19 11:16 yjbjingcha 阅读(213) 评论(0) 推荐(0)
摘要: ITOO做了持续了这么长时间,client使用MVC+EF+EasyUI框架,服务端在三层基础上增加WCF服务,后来增加容器,AOP(还没怎么接触),封装了在我们刚開始看来神奇的底层方法,克服了非常多技术难点,单点登录,动态建库切库。。。发现自己须要积累的还有非常多非常多,ITOO做到如今3.1,成 阅读全文
posted @ 2017-07-19 10:29 yjbjingcha 阅读(116) 评论(0) 推荐(0)
摘要: >>>> mya=np.zeros(shape=(2,2))>>>> myaarray([[ 0., 0.], [ 0., 0.]])>>>> mya=np.empty(shape=(2,2))>>>> myaarray([[ 0., 0.], [ 0., 0.]])、创建数组元素为float的数组 阅读全文
posted @ 2017-07-19 09:12 yjbjingcha 阅读(136) 评论(0) 推荐(0)
上一页 1 ··· 269 270 271 272 273 274 275 276 277 ··· 411 下一页