码迷,mamicode.com
首页 >  
搜索关键字:lis    ( 17068个结果
编程思想之递归
我之前写过关于递归算法的博文,但作为编程思想系列的文章不得不再对它进行进一步深入的剖析。由于它是一种简单、经常使用又重要的一种编程思想。什么叫递归?举一个通俗的样例:有一个8俩重的苹果要你切成重量相等的若干份。每一份的重量不能大于1俩。你肯定会想到这样做:1.第一刀先把一个苹果切成重量均等的2份A1 ...
分类:其他好文   时间:2017-07-04 14:51:09    阅读次数:99
Observer(观察者模式)
某个对象可以被设置为是可观察的,只要通过某种方式允许其他对象注册为观察者。每当被观察的对象改变时,会发送信息给观察者。 _observers as $obs) $obs->onChanged($this, $name); } public function addObserver($observer... ...
分类:其他好文   时间:2017-07-04 14:50:00    阅读次数:104
SAP PI入门
本教程的目的是让读者理解:SAP Process Intergration(以下简称SAP PI)是什么。我们不需要探究课题的本质,但是会讨论SAP PI的架构和不同特点。本文只会覆盖到PI的基本特点,而不是讨论全部。 本文链接:http://www.cnblogs.com/hhelibeb/p/7 ...
分类:其他好文   时间:2017-07-04 14:48:33    阅读次数:275
Mongo基础 索引的使用
MongoDB中的索引和其他数据库索引类似,也是使用B-Tree结构。mongodb的索引是在collection级别上的,并且支持在任何列或者集合内的文档的子列中创建索引。 所有的MongoDB集合默认都有一个唯一索引在字段“_id”上,如果应用程序没有为 “_id”列定义一个值,MongoDB将 ...
分类:其他好文   时间:2017-07-04 14:44:10    阅读次数:276
angular过滤器
<!doctype html><html lang="en" ng-app="myApp"><head> <meta charset="UTF-8" /> <title>Document</title></head><body> <div ng-controller="studentControll ...
分类:其他好文   时间:2017-07-04 14:40:31    阅读次数:220
javascript异步上传图片文件
html: <form action="url" enctype="multipart/form-data" id="myform" method="post"> <input accept="image/*" id="addfile" type="file" /> </form> <form ac ...
分类:编程语言   时间:2017-07-04 13:34:57    阅读次数:281
_DataStructure_C_Impl:图的遍历
#include<stdio.h> #include<stdlib.h> #include<string.h> //图的邻接表类型定义 typedef char VertexType[4]; typedef char InfoPtr; typedef int VRType; #define INFI ...
分类:其他好文   时间:2017-07-04 13:33:13    阅读次数:243
TCP原理
1 # http 2 # smtp 3 # dns 4 # ftp:下载上传文件 5 # ssh 6 # snmp 7 # dhcp 8 # icmp ping :网络层 (其他都是在传输层之上 都是应用层 ) 9 10 # 数据的交换: 收/发两个步骤 11 # OSI七层模型: 12 # 物理层... ...
分类:其他好文   时间:2017-07-04 13:32:16    阅读次数:243
Application Framework层介绍
http://write.blog.csdn.net/postedithttp://write.blog.csdn.net/postedithttp://write.blog.csdn.net/postedit Activity Manager 用来管理应用程序生命周期并提供经常使用的导航回退功能。 ...
分类:移动开发   时间:2017-07-04 13:25:12    阅读次数:218
phpfpm和nginx设置开机自动启动
## 添加执行权限 chmod a+x /etc/init.d/nginx chmod a+x /etc/init.d/php-fpm ## 加入服务 chkconfig --add nginx chkconfig --add php-fpm ## 开机自启 chkconfig nginx on c ...
分类:Web程序   时间:2017-07-04 13:15:06    阅读次数:201
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!