码迷,mamicode.com
首页 >  
搜索关键字:har    ( 17693个结果
Buy the Ticket(卡特兰数+递推高精度)
Buy the Ticket Problem Description The \\\\\\\"Harry Potter and the Goblet of Fire\\\\\\\" will be on show in the next few days. As a crazy fan of Har ...
分类:其他好文   时间:2016-12-07 22:34:36    阅读次数:256
栈与递归实例
1.#include <stdio.h>void reverse(char* s){ if( (s != NULL) && (*s != '\0') ) { reverse(s + 1); printf(" %c", *s); }}int main(){ reverse("12345"); prin ...
分类:其他好文   时间:2016-12-07 20:28:25    阅读次数:140
Circuit Breaker模式
Circuit Breaker模式会处理一些需要一定时间来重连远程服务和远端资源的错误。该模式可以提高一个应用的稳定性和弹性。问题在类似于云的分布式环境中,当一个应用需要执行一些访问远程资源或者是远端...
分类:其他好文   时间:2016-12-07 14:27:49    阅读次数:251
PHP session
PHP Session PHP session 变量用于存储关于用户会话(session)的信息,或者更改用户会话(session)的设置。Session 变量存储单一用户的信息,并且对于应用程序中的所有页面都是可用的。 PHP Session 变量 您在计算机上操作某个应用程序时,您打开它,做些更 ...
分类:Web程序   时间:2016-12-07 13:52:59    阅读次数:165
栈的的顺序实例SeqStack实现
1.#include <stdio.h>#include <stdlib.h>#include "SeqStack.h"/* run this program using the console pauser or add your own getch, system("pause") or inp ...
分类:其他好文   时间:2016-12-07 13:46:23    阅读次数:172
PHP练习
<?php function table($row,$col,$c){ $str= "<table border=1>"; for ($i=0; $i <$row ; $i++) { //$i表示行 0~9 $color=$i % 2==0?"#ffffff":$c;//三元运算符 $i % 2== ...
分类:Web程序   时间:2016-12-07 13:42:00    阅读次数:254
栈的的语法匹配实现
1.#include <stdio.h>#include <malloc.h>#include "LinkList.h"typedef struct _tag_LinkList{ LinkListNode header; int length;} TLinkList;LinkList* LinkLi ...
分类:其他好文   时间:2016-12-07 13:35:00    阅读次数:223
在不使用额外数据结构和储存空间的情况下,翻转一个给定的字符串
1 import java.util.*; 2 3 public class Reverse { 4 public String reverseString(String iniString) { 5 char []initchar=iniString.toCharArray(); 6 int le ...
分类:其他好文   时间:2016-12-07 13:15:27    阅读次数:307
JavaScript中的两种事件流
JavaScript中的两种事件流 事件流描述的是从页面中接收事件的顺序。提出事件流概念的正是IE和Netscape,但是前者提出的是我们常用的事件冒泡流,而后者提出的是事件捕获流。 第一部分:事件冒泡 即事件开始由最具体的元素接收,然后逐级向上传播到较为不具体的节点(文档)。 下面举一个简单的例子 ...
分类:编程语言   时间:2016-12-07 09:46:30    阅读次数:387
c++ 双向链表
代码 ...
分类:编程语言   时间:2016-12-07 09:38:32    阅读次数:144
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!