码迷,mamicode.com
首页 > 2015年02月02日 > 全部分享
mui开发注意事项
mui是一个高性能的HTML5开发框架,从UI到效率,都在极力追求原生体验;这个框架自身有一些规则,刚接触的同学不很熟悉,特总结本文;想了解mui更详细的信息,请访问mui官网 DOM结构 关于mui页面的dom,你需要知道...
分类:其他好文   时间:2015-02-02 23:25:13    阅读次数:704
http协议
先看一下百度百科的http协议定义: ?HTTP是一个属于应用层的面向对象的协议,由于其简捷、快速的方式,适用于分布式超媒体信息系统。它于1990年提出,经过几年的使用与发展,得到不断地完善和扩展。目前在WWW中使...
分类:Web程序   时间:2015-02-02 23:25:36    阅读次数:462
mysql基础之创建库表时字符集设置问题
创建数据库及表时设置字符集,避免出现中文乱码的方法: 创建数据库 CREATE?DATABASE?test?CHARACTER?SET?utf8?COLLATE?utf8_general_ci; --注意后面三个单词之间是有下划线的 对于每个选项所给定的值,前...
分类:数据库   时间:2015-02-02 23:23:16    阅读次数:361
贴图库开放平台接口使用
之前喜欢都是使用的七牛作为网站图片外链,后来需要做一个图片墙的应用,图片的数量激增,考虑七牛的每月10g流量可能不太够用,于是转而寻找其他图片外链。 后来选择了贴图库,号称无限空间,无限流量,看起来很不...
分类:其他好文   时间:2015-02-02 23:24:28    阅读次数:1054
leetcode 25: 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 a multiple of?k?then left-out nodes in the end should remain as i...
分类:其他好文   时间:2015-02-02 23:24:35    阅读次数:369
Spark架构及运行机制
Spark架构 Spark架构使用了分布式计算中master-slave模型,master是集群中含有master进程的节点,slave是集群中含有worker进程的节点。...
分类:其他好文   时间:2015-02-02 23:21:37    阅读次数:516
hdu 5167 Fibonacci(DFS)
hdu 5167 Fibonacci 问题描述 斐波那契数列的递归定义如下: Fi=???01Fi?1+Fi?2i = 0i = 1i > 1 现在我们需要判断一个数是否能表示为斐波那契数列中的数的乘积。 输入描述 有多组数据,第一行为数据组数T(T≤100,000)。 对于每组数据有一个整数n,表示要判断的数字。 0≤n≤1,000,000,000 输出描述 对于每...
分类:其他好文   时间:2015-02-02 23:22:40    阅读次数:372
POJ 1260-Pearls(dp)
Pearls Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 7573   Accepted: 3755 Description In Pearlania everybody is fond of pearls. One company, called Th...
分类:其他好文   时间:2015-02-02 23:21:19    阅读次数:348
Opencv研读笔记:haartraining程序之cvCreateCARTClassifier函数详解(CART树状弱分类器创建)~
cvCreateCARTClassifier函数在haartraining程序中用于创建CART树状弱分类器,但一般只采用桩分类器,因为其训练过程实在是太慢了。之前自己调试过代码,要等差不多10分钟(2000正样本、2000负样本)才能训练完一个3节点的弱分类器,当然,总体的树状弱分类器的数目可能也会减少2/3,这个还没有仔细训练过。之所以将此函数拿出来说说,主要是因为之前在网上找不到专门针对这个函数的说明,同时,基于CART树的弱分类器,也具有一定的借鉴意义。...
分类:其他好文   时间:2015-02-02 23:21:45    阅读次数:348
学生信息的输入与输出
#include #include #include #include #include using namespace std; class student                    //创建1个类 {     int no,age;     char name[25],a[20]; public:     void stu();              ...
分类:其他好文   时间:2015-02-02 23:23:41    阅读次数:365
终端常用命令
1.隐藏 & 显示Finder的文件 defaults write com.apple.finder AppleShowAllFiles -bool false 最后面的false代表不显示隐藏文件,true表示显示隐藏文件...
分类:其他好文   时间:2015-02-02 23:22:35    阅读次数:379
Leetcode-Binary Tree Preorder Traversal
题目链接:https://oj.leetcode.com/problems/binary-tree-preorder-traversal/ 题目: Given a binary tree, return the preorder traversal of its nodes' values. For example: Given binary tree {1,#,2,3}, ...
分类:其他好文   时间:2015-02-02 23:21:43    阅读次数:327
LeetCode-Binary Tree Inorder Traversal
题目链接:https://oj.leetcode.com/problems/binary-tree-inorder-traversal/ 题目: Given a binary tree, return the inorder traversal of its nodes' values. For example: Given binary tree {1,#,2,3}, ...
分类:其他好文   时间:2015-02-02 23:21:23    阅读次数:294
UVAOJ 12096 The SetStack Computer(STL的运用)
12096 The SetStack Computer Background from Wikipedia: Set theory is a branch ofmathematics created principally by the German mathe-matician Georg Cantor at the end of the 19th century. Initially ...
分类:其他好文   时间:2015-02-02 23:20:26    阅读次数:519
poj 3264 Balanced Lineup RMQ线段树实现
For the daily milking, Farmer John's N cows (1 ≤ N ≤ 50,000) always line up in the same order. One day Farmer John decides to organize a game of Ultimate Frisbee with some of the cows. To keep things simple, he will take a contiguous range of cows from the...
分类:其他好文   时间:2015-02-02 23:19:29    阅读次数:254
LeetCode-Binary Tree Postorder Traversal
题目链接:https://oj.leetcode.com/problems/binary-tree-postorder-traversal/ 题目: Given a binary tree, return the postorder traversal of its nodes' values. For example: Given binary tree {1,#,2,3}, ...
分类:其他好文   时间:2015-02-02 23:22:05    阅读次数:312
研究生生活半年的一些总结
从今天到研究生新生刚入学算起,差不多也有半年的时光了。回想半年的研究生生活,感觉一切都是那么新鲜,好奇。记得刚开始入学的时候,自己很多地方都不适应:上课的氛围,实验室室友的相处,学习的习惯等等。特别要说的是,自己的心态没调整好,结果很多时候都是浑浑噩噩的,一切都是那么的无助!等到过了一学期才慢慢开始适应起来,无论是老师上课的速度/教学方法,亦或者是自己的学习动力,都比刚开始要强上很多!回想这半年,...
分类:其他好文   时间:2015-02-02 23:19:21    阅读次数:353
1891条   1 2 3 4 5 6 ... 112 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!