码迷,mamicode.com
首页 >  
搜索关键字:iphone6s 苹果三星 s6 edge+    ( 2519个结果
highchart,highstock,xAxis.labels 横轴坐标相互覆盖
现象:这是相邻的两个日期相互覆盖,不是数据重复。实际是 【6月13】和【7月13】互相覆盖了。这种现象发生在边界上,特别是outer edge 和plot area 大小接近时,或者xAxis.labels.overflow = 'justify',当然这是默认设置。还有,一般是显示月份之类间隔较大...
分类:其他好文   时间:2014-09-28 19:32:25    阅读次数:250
leetcode-Best Time to Buy and Sell Stock
一定要判断好边界条件,edge case很关键。 1 #include 2 #include 3 using namespace std; 4 5 class Solution { 6 public: 7 int maxProfit(vector &prices) { 8 ...
分类:其他好文   时间:2014-09-27 19:02:20    阅读次数:202
hdu 2874 Connections between cities hdu 2586 How far away ? LCA
两道lca模板题,用的是倍增法,nlogn预处理,logn查询。#include #include #include #include using namespace std;#define maxn 10100struct Edge{ int u,v,w,next;}e[100100];i...
分类:其他好文   时间:2014-09-25 20:24:27    阅读次数:236
安卓初步:通讯技术介绍&&安卓介绍
通讯技术: 1G 模拟制式 只能进行语音通话. 2G GSM, CDMA 收发短信和邮件. 2.5G GPRS, EDGE 访问wap网络数据.(图片, 壁纸, 文字信息) 3G WCDMA(联通), CDMA2000(电信), TD-SCDMA(移动) 发微博, 查看高清图片, 小电影. ...
分类:移动开发   时间:2014-09-24 22:05:37    阅读次数:308
UVa (一道比较复杂的广搜) 816 Abbott’s Revenge
题意:给出一个迷宫,在迷宫的节点处,面向某个方向只能向给定的方向转弯。给出起点和终点输出迷宫的最短路径,这里指的是刚刚离开起点的时刻,所以即使起点和终点重合路径也非空。分析:用三个变量来表示状态,r,c,dir,分别代表所处的位置和朝向。在输入数据的同时,也要初始化has_edge[r][c][di...
分类:其他好文   时间:2014-09-24 05:43:35    阅读次数:2220
SGU 101. Domino 欧拉回路
无向图欧拉回路 欧拉通路 #include #include using namespace std; struct edge { int v, next, b, id; }e[210]; int vis[210]; int first[10], cnt; int ans[210], len; int f[10]; int find(int x) { if(x != f[x]) ...
分类:其他好文   时间:2014-09-22 12:32:52    阅读次数:234
关于c++的string的operator =
在 c++ primer 5 中在说到string的章节里面有这样一句话:string s5 = "hiya"; // copy initialization也就是说,这里说上面这句是拷贝初始化,也就是调用拷贝构造函数。而下面这句:string s6("hiya"); // direct init....
分类:编程语言   时间:2014-09-20 21:35:19    阅读次数:208
SDUT 2498-AOE网上的关键路径(spfa+字典序路径)
AOE网上的关键路径 Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^ 题目描述     一个无环的有向图称为无环图(Directed Acyclic Graph),简称DAG图。      AOE(Activity On Edge)网:顾名思义,用边表示活动的网,当然它也是DAG。与...
分类:其他好文   时间:2014-09-19 21:09:46    阅读次数:290
poj2942 Knights of the Round Table,无向图点双联通,二分图判定
点击打开链接 无向图点双联通,二分图判定 #include #include #include #include #include using namespace std; struct Edge{ int u, v; }; const int maxn = 1005; int pre[maxn], iscut[maxn], bccno[maxn],dfs_c...
分类:移动开发   时间:2014-09-19 12:02:35    阅读次数:206
从Exchange 通往Office 365系列(十一)发布OWA及Exchange ActiveSync
我们需要将在反向代理上将Exchange发布出去才可以接收公网的邮件,或者是在外网登陆owa,这需要首先在路由器上设置端口映射,将Exchange需要用到的端口映射到TMG服务器上,然后由TMG转发给CAS或者是edge,需要发布的包括25、443、587等等,映射到TMG之后,需要在TMG上发布Excha..
分类:其他好文   时间:2014-09-17 18:54:23    阅读次数:362
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!