码迷,mamicode.com
首页 > 2015年12月03日 > 全部分享
257. Binary Tree Paths
题目:Given a binary tree, return all root-to-leaf paths.For example, given the following binary tree: 1 / \2 3 \ 5All root-to-leaf paths are:["...
分类:其他好文   时间:2015-12-03 07:12:59    阅读次数:181
mysql函数操作
getMessage(); exit; } $query = "UPDATE contactInfo SET phone='15801680168' where name='高某某'"; //使用exec()方法可以执行INSERT、UPDATE和D...
分类:数据库   时间:2015-12-03 07:13:16    阅读次数:143
258. Add Digits
题目:Given a non-negative integernum, repeatedly add all its digits until the result has only one digit.For example:Givennum = 38, the process is like:3...
分类:其他好文   时间:2015-12-03 07:11:38    阅读次数:145
[lintcode easy]Compare Strings
Compare StringsCompare two strings A and B, determine whether A contains all of the characters in B.The characters in string A and B are all Upper Cas...
分类:其他好文   时间:2015-12-03 07:11:20    阅读次数:120
255. Verify Preorder Sequence in Binary Search Tree
题目:Given an array of numbers, verify whether it is the correct preorder traversal sequence of a binary search tree.You may assume each number in the s...
分类:其他好文   时间:2015-12-03 07:13:59    阅读次数:138
TCAM 与CAM
CAM是Content Addressable Memory的缩写,即“内容寻址存储器”的意思,它是在传统的存储技术的基础上实现的联想记忆存储器,关于CAM的基本操作有三种: 1).写操作:输入地址和数据,将数据写到指定的地址上,写入速度与RAM相同; 2).读操作:输入地址,返回该地址上的数据,读...
分类:其他好文   时间:2015-12-03 07:12:06    阅读次数:189
256. Paint House
题目:There are a row ofnhouses, each house can be painted with one of the three colors: red, blue or green. The cost of painting each house with a certa...
分类:其他好文   时间:2015-12-03 07:12:06    阅读次数:127
[lintcode easy]Insert Node in a Binary Search Tree
Insert Node in a Binary Search TreeExampleGiven binary search tree as follow, after Insert node 6, the tree should be: 2 2 / \ ...
分类:其他好文   时间:2015-12-03 07:10:16    阅读次数:139
《C++ Primer》学习 之 编译器推断auto类型
/*《C++ Primer》学习之编译器推断auto类型书P61-P62重点在于程序中的注释,方便以后复习。*/ 1 #include 2 #include 3 #include 4 using namespace std; 5 6 int main() 7 { 8 int i = ...
分类:编程语言   时间:2015-12-03 07:12:13    阅读次数:195
[LeetCode]Remove Element
public class Solution { public int removeElement(int[] nums, int val) { if (nums.length == 0) { return 0; } int lef...
分类:其他好文   时间:2015-12-03 07:10:31    阅读次数:130
[IT学习]PowerBi 入门
从哪里开始呢?注册一个账号,从PowerBi的help开始就行了。Get Started会带领你从get data讲起,建立dataset,建立report,一直到dashboard创建。下面这个链接,讲的是如何设计dashboard。主要是如何设计一个优秀的dashboardhttps://pow...
分类:其他好文   时间:2015-12-03 07:12:24    阅读次数:108
[LeetCode]ZigZag Conversion
public class Solution { public String convert(String s, int numRows) { if (numRows == 1) { return s; } int flg = 0;...
分类:其他好文   时间:2015-12-03 07:11:42    阅读次数:128
hashmap in java(转)
第1部分 HashMap介绍HashMap简介HashMap 是一个散列表,它存储的内容是键值对(key-value)映射。HashMap 继承于AbstractMap,实现了Map、Cloneable、java.io.Serializable接口。HashMap 的实现不是同步的,这意味着它不是线...
分类:编程语言   时间:2015-12-03 07:12:06    阅读次数:288
1-6-Xmanager远程工具的使用
Xmanager远程工具的使用
分类:其他好文   时间:2015-12-03 02:27:11    阅读次数:210
windows下使用TortoiseGit在Git@OSC代码托管
TortoiseGit是一个免费开放的,为git版本控制系统服务的图形界面客户端。TortoiseGit没有集成Git。如果你没有安装过Git,那么需要先安装Git。工具windowsGitTortoiseGitGit@OSC方法/步骤一、下载安装Git1、下载Git从下载地址选择合适自己的版本,这里是Windows下安装,因此选择..
分类:Windows程序   时间:2015-12-03 02:27:07    阅读次数:306
让MySQL支持Emoji表情 mysql 5.6
让MySQL支持Emoji表情,涉及无线相关的MySQL数据库建议都提前采用utf8mb4字符集。mysql版本5.61解决方案:将Mysql的编码从utf8转换成utf8mb4。需要>=MySQL5.5.3版本、从库也必须是5.5的了、低版本不支持这个字符集、复制报错2my.cnf文件添加[mysqld]character-set-server=ut..
分类:数据库   时间:2015-12-03 02:28:42    阅读次数:256
Ceph中国社区第二次沙龙活动
Ceph中国社区第二次沙龙活动开始报名了,详情:http://zhangdh.com/archives/75
分类:其他好文   时间:2015-12-03 02:28:31    阅读次数:244
1257条   上一页 1 ... 58 59 60 61 62 63 64 ... 74 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!