首页 > 2016年02月02日 > 全部分享
Lintcode: Count of Smaller Number
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
分类:其他   时间:2016-02-02 07:30:32    收藏:0  评论:0  赞:0  阅读:235
VC6.0 导入资源崩溃
等我以后挣钱了一定买正版! 最近学习Win32编程,为了锻炼自己,在网上下载了一个VC6.0作为开发工具,应该是兼容性的问题吧,VC6 经常闹毛病。 今天导入资源的时候VC6出现崩溃的现象。 马上寻求度娘 很多人说是因为Office 2007 或者Office 2010所致,奈何又不想卸掉2010,
分类:其他   时间:2016-02-02 07:30:12    收藏:0  评论:0  赞:0  阅读:219
[Cycle.js] Main function and effects functions
We need to give structure to our application with logic and effects. This lessons shows how we can organize our code into two parts: main() function f
分类:Web开发   时间:2016-02-02 07:30:02    收藏:0  评论:0  赞:0  阅读:137
体验jQuery和AngularJS的不同点已经AngularJS的迷人之处
本篇通过jQuery和Angular两种方式来实现同一个实例,从而体验两者的不同点以及AngularJS的迷人之处。首先当然需要引用jquery.js和angular.js文件。■ 使用jQuery让写一个简单的click事件 <button id="jquery-button">JQuery Bu
分类:Web开发   时间:2016-02-02 07:29:56    收藏:0  评论:0  赞:0  阅读:161
redis 命令
三、常用命令 1)连接操作命令 quit:关闭连接(connection) auth:简单密码认证 help cmd: 查看cmd帮助,例如:help quit 2)持久化 save:将数据同步保存到磁盘 bgsave:将数据异步保存到磁盘 lastsave:返回上次成功将数据保存到磁盘的Unix时
分类:其他   时间:2016-02-02 06:27:42    收藏:0  评论:0  赞:0  阅读:278
Qt Creator 黑色主题配置
可能是一个习惯了吧,我个人比较喜欢在黑色主题的环境下进行编程。黑色主题对眼睛稍微友好一点,看起来也不是那么low。这里给出QtCreator的黑色主题配置方案。 如果是最新的Creator3.3+的版本,本身就自己带一个黑色的主题方案:工具==》选项==》环境 配置完了大概是这个样子,但是文字没有改
分类:其他   时间:2016-02-02 06:27:32    收藏:0  评论:0  赞:0  阅读:294
php now 5.2 升级5.3
简单说明 在WIN上有时候需要测试一些PHP程序,又不会自行独立配置环境,那么PHPNow是非常好的选择。 PHPNow自带的PHP版本为5.2.14,而最后一次更新在于2010-9-22,PHP5.2对于现在来说的确是有点老了,前段时间有些程序需要测试,可是都只支持PHP5.3以上。在调试和修改方
分类:Web开发   时间:2016-02-02 06:27:21    收藏:0  评论:0  赞:0  阅读:240
AngularJS中处理多个promise
在使用AngularJS中处理promise的时候,有时会碰到需要处理多个promise的情况。最简单的处理就是每个promise都then。如下: var app = angular.module("app",[]); app.controller("AppCtrl", function($q.
分类:Web开发   时间:2016-02-02 06:27:11    收藏:0  评论:0  赞:0  阅读:248
C++ basic salient points that I made mistakes on
int main(int argv, char* argc[]), argc[0] is always the program's name that you run switch() statement doesn't accept std::string. One way to solve th
分类:编程语言   时间:2016-02-02 06:27:02    收藏:0  评论:0  赞:0  阅读:232
AngularJS中获取数据源的几种方式
在AngularJS中,可以从$rootScope中获取数据源,也可以把获取数据的逻辑封装在service中,然后注入到app.run函数中,或者注入到controller中。本篇就来整理获取数据的几种方式。■ 数据源放在$rootScope中 var app = angular.module("a
分类:Web开发   时间:2016-02-02 06:26:52    收藏:0  评论:0  赞:0  阅读:229
Lintcode: Interval Sum II
Given an integer array in the construct method, implement two methods query(start, end) and modify(index, value): For query(start, end), return the su
分类:其他   时间:2016-02-02 06:26:42    收藏:0  评论:0  赞:0  阅读:255
duilib之源码分析
《duilib之源码分析》1 stdAfx.h [cpp] view plain copy * lengthof(x) 计算数组长度宏 * MAX 两值最大 * MIN 两值最小 * CLAMP(x,a,b) x在a,b之间则取x否则取最小 2 UIBase [cpp] view plain cop
分类:其他   时间:2016-02-02 06:26:32    收藏:0  评论:0  赞:0  阅读:416
Windows Azure - Troubleshooting & Debugging: Role Recycling
每年总会碰到几次Role Recycling,处理完记录下 :) 1. 和往常一样先排查系统日志,修复异常。> 没效果 :( 2. 排查Event Viewer中的Logs,没有发现比较奇怪Logs。:( 3. 使用AzureTools 3.1. RDP 3.2. 通过Azure PowerShel
分类:Windows开发   时间:2016-02-02 06:26:12    收藏:0  评论:0  赞:0  阅读:278
27. Remove Element
和26题Remove Duplicates from Sorted Array是一样的 1 public int removeElement(int[] nums, int val) { 2 if(nums == null || nums.length == 0) { 3 return 0; 4 }
分类:其他   时间:2016-02-02 06:26:02    收藏:0  评论:0  赞:0  阅读:114
第八章 类和模块(模块部分)
模块与类有两点不同: 模块不能拥有实例 模块不能被继承 (1)模块提供命名空间:A模块的foo方法、num常量 与 B模块的foo方法、num常量不一样 (2)Mix-in就是将模块混合到类中,任何类Mix-in之后都能使用该模块功能如Math模块 (3) (4) (5) (6) (7) (8) (
分类:其他   时间:2016-02-02 06:25:51    收藏:0  评论:0  赞:0  阅读:107
BeagleBone Black–ESP8266 UDP 服务
NodeMCU 的文档里面终于发现,ESP8266 的GPIO 2 确实是 PIN 4,GPIO 0 是 PIN 3。 https://github.com/nodemcu/nodemcu-firmware/wiki/nodemcu_api_cn 话说,这个 API 不是给地球人看的。按照说明,ne...
分类:其他   时间:2016-02-02 06:25:42    收藏:0  评论:0  赞:0  阅读:463
Lintcode: Interval Sum
Given an integer array (index from 0 to n-1, where n is the size of this array), and an query list. Each query has two integers [start, end]. For each
分类:其他   时间:2016-02-02 06:25:32    收藏:0  评论:0  赞:0  阅读:214
hdu 1279 验证角谷猜想(简单的模拟)
Problem Description 数论中有许多猜想尚未解决,其中有一个被称为“角谷猜想”的问题,该问题在五、六十年代的美国多个著名高校中曾风行一时,这个问题是这样描述的:任何一个大于一的自然数,如果是奇数,则乘以三再加一;如果是偶数,则除以二;得出的结果继续按照前面的规则进行运算,最后必定得到
分类:其他   时间:2016-02-02 06:25:22    收藏:0  评论:0  赞:0  阅读:258
26. Remove Duplicates from Sorted Array
用一个cnt来记录有效的位置,遍历一边 1 public int removeDuplicates(int[] nums) { 2 if(nums == null || nums.length == 0) { 3 return 0; 4 } 5 int cnt = 1; 6 for(int i =
分类:其他   时间:2016-02-02 06:25:12    收藏:0  评论:0  赞:0  阅读:132
Miller_Rabin判断素数模版
#include<bits/stdc++.h> using namespace std; typedef long long ll; const int maxn=1000100; const int INF=1e9+10; /// 18位素数:154590409516822759 /// 19位素
分类:其他   时间:2016-02-02 06:24:51    收藏:0  评论:0  赞:0  阅读:164
1917条   上一页 1 ... 89 90 91 92 93 ... 96 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!