码迷,mamicode.com
首页 > 2015年07月19日 > 全部分享
一键部署MongoDB集群Windows版
因为周末在家手头没有虚拟机,所以在windows下单机完成部署要求,并编写bat运行脚本。 1、创建配置文件及相关目录 总的启动脚本如下(startmc.bat): rem m1 start mongod.exe --config=../config/m1/s1_1 start mongod.exe --config=../config/m1/s1_2 start mongod.e...
分类:数据库   时间:2015-07-19 18:08:30    阅读次数:164
Java Exception和Error的区别
Java中异常的抽象类是Throwable,在此基础上,派生出两大类:Error和Exception。Error是程序中的严重错误,不应该用try…catch包括。Javadoc的说明如下: An Error is a subclass of Throwable that indicates serious problems that a reasonable application shoul...
分类:编程语言   时间:2015-07-19 18:07:20    阅读次数:124
POJ-1247
#include using namespace std; bool isOod(int num){ if(num%2==0){ return false; }else{ return true; } } int calCycleLength(int n){ int len=0; if(n==1){ return 1; }else{ if(isOod(n)){ ...
分类:其他好文   时间:2015-07-19 18:06:20    阅读次数:118
one recursive approach to solve hdu 1016, list all permutations, solve N-Queens puzzle.
one recursive approach to solve hdu 1016, list all permutations, solve N-Queens puzzle. reference: the video of stanford cs106b lecture 10 by Julie Zelenski https://www.youtube.com/watch?v=NdF1QDTRkck...
分类:移动开发   时间:2015-07-19 18:07:58    阅读次数:176
Asteroids
其实是个水题,二分图的最大匹配,二分图为两边为坐标x,y,直接匈牙利算法做,邻接表边数老是写错,第三次了!!!...
分类:其他好文   时间:2015-07-19 18:06:59    阅读次数:107
#25 Reverse Nodes in k-Group
题目链接:https://leetcode.com/problems/reverse-nodes-in-k-group/ Given a linked list, reverse the nodes of a linked list k at a time and return its modified list. If the number of nodes is not...
分类:其他好文   时间:2015-07-19 18:04:26    阅读次数:128
线性表带头结点的单链表的链式表示和实现
线性表的单链表存储结构struct LNode { ElemType data; LNode *next; }; typedef LNode *LinkList;带有头结点的单链表的12个基本操作void InitList(LinkList &L){ L = (LinkList)malloc(sizeof(LNode)); if (!L)exit(OVERFLOW);...
分类:其他好文   时间:2015-07-19 18:06:27    阅读次数:171
数据结构公共代码
#include//字符串函数头文件 #include//字符函数头文件 #include//malloc等 #include//标准输入输出头文件,包括EOF(=^Z或F6),NULL等 #include//atoi(),exit() #include//eof() #include<mat...
分类:其他好文   时间:2015-07-19 18:04:26    阅读次数:125
10559 - Blocks(方块消除|DP)
该题乍一看和矩阵链乘很相似,可是有一个不同之处就是该题可以拼接 。   为了达到这个目的,我们不得不拓展维度d[i][j][k],用一个k表示最右边拼接了k个和a[j]相同颜色的方块。 问题的关键在于拼接,当右边存在一个q 细节见代码: #include using namespace std; const int maxn = 205; int t,n,d[maxn][maxn][max...
分类:其他好文   时间:2015-07-19 18:06:33    阅读次数:95
#26 Remove Duplicates from Sorted Array
题目链接:https://leetcode.com/problems/remove-duplicates-from-sorted-array/ Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length....
分类:其他好文   时间:2015-07-19 18:05:55    阅读次数:84
我的Android进阶之旅------>Android SDK支持的配置标识符(有用的参考文件)
Android SDK支持的配置标致符 配置标识符 标识符值 描      述 MCC   MNC 例子: mcc310; MCC310-MNC004; MCC208-MNC00 MCC(移动国家代码,Moblie Country Code)和可选的MN...
分类:移动开发   时间:2015-07-19 18:05:27    阅读次数:156
#27 Remove Element
题目链接:https://leetcode.com/problems/remove-element/ Given an array and a value, remove all instances of that value in place and return the new length. The order of elements can be changed. ...
分类:其他好文   时间:2015-07-19 18:03:33    阅读次数:92
hdu 1863 畅通工程
最小生成树...
分类:其他好文   时间:2015-07-19 18:04:22    阅读次数:117
Swift开发教程--如何去掉UITableViewController黑色线条
直接上代码: //去掉背景线条显示 self.tableView.separatorStyle = UITableViewCellSeparatorStyle.SingleLine; self.tableView.separatorColor = UIColor.clearColor();...
分类:编程语言   时间:2015-07-19 18:06:02    阅读次数:134
swift中的闭包
// //  main.swift //  闭包 // //  Created by 朱敏 on 15/6/15. //  Copyright (c) 2015年 helinyu. All rights reserved. // import Foundation let names = ["Lily","Anna","Duty","Poly","Gray"...
分类:编程语言   时间:2015-07-19 18:03:22    阅读次数:151
IRQL_NOT_LESS_OR_EQUAL的问题终于算解决了
IRQL_NOT_LESS_OR_EQUAL的问题终于算解决了...
分类:其他好文   时间:2015-07-19 18:04:01    阅读次数:804
FZU 2150 Fire Game (暴力BFS)
【题目链接】click here~~ 【题目大意】: 两个熊孩子要把一个正方形上的草都给烧掉,他俩同时放火烧,烧第一块的时候是不花时间的,每一块着火的都可以在下一秒烧向上下左右四块#代表草地,.代表着不能烧的。问你最少花多少时间可以烧掉,如果烧不掉就输出-1 【解题思路】: 数据比较弱的情况下直接暴力枚举每块草坪上可以放的位置,比较高端的写法目前没有想到,以后想到了文章更新下~~ ps:...
分类:其他好文   时间:2015-07-19 18:03:01    阅读次数:177
1626条   上一页 1 ... 32 33 34 35 36 37 38 ... 96 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!