码迷,mamicode.com
首页 >  
搜索关键字:queue    ( 8888个结果
Printing a Binary Tree in Level Orders
BFS:Is it possible that a solution exists using only one single queue? Yes, you bet. The single queue solution requires two extra counting variables w...
分类:其他好文   时间:2014-10-11 03:37:04    阅读次数:190
循环队列
利用线性表实现队列,为了有效利用空间,将其设计为循环结构,防止假溢出;牺牲一个存储单元以区分队空、队满。 设front队头,rear队尾,N为顺序表大小 队空:rear==front 队满:(rear+1)%N==front #include #define Elemtype int #define N 100 struct Queue { Elemtype data[N]; int ...
分类:其他好文   时间:2014-10-11 01:38:34    阅读次数:360
WCF分布式开发必备知识(1):MSMQ消息队列
本章我们来了解下MSMQ的基本概念和开发过程。MSMQ全称MicroSoft Message Queue,微软消息队列,是在多个不同应用之间实现相互通信的一种异步传输模式,相互通信的应用可以分布于同一台机器上,也可以分布于相连的网络空间的任一位置。它的实现原理是:消息的发送者要把自己想要发送的信息放...
分类:其他好文   时间:2014-10-10 00:35:53    阅读次数:729
uva133 The Dole Queue ( 约瑟夫环的模拟)
题目链接:啊哈哈,选我选我思路是:相当于模拟约瑟夫环,仅仅只是是从顺逆时针同一时候进行的,然后就是顺逆时针走能够编写一个函数,仅仅只是是走的方向的标志变量相反。。还有就是为了(pos+flag+n-1)%n+1的妙用。。。题目:The Dole QueueIn a serious attempt t...
分类:其他好文   时间:2014-10-09 22:35:57    阅读次数:226
【内核研究】处理者_Handler
尽管MessageQueue提供了直接读/写的函数接口,但对于程序员来说,一般不直接读/写消息队列。之前了解到,在Looper.loop()函数中,当取出消息后,会回调msg.target对象的handleMessage()函数,而msg.target的类型正是Handler。 /** * Run the message queue in this thread. Be sure to call * {@link #quit()} to end the loop. ...
分类:其他好文   时间:2014-10-09 16:59:58    阅读次数:243
RabbitMQ 概念与Java例子
RabbitMQ简介目前RabbitMQ是AMQP 0-9-1(高级消息队列协议)的一个实现,使用Erlang语言编写,利用了Erlang的分布式特性。概念介绍:Broker:简单来说就是消息队列服务器实体。Exchange:消息交换机,它指定消息按什么规则,路由到哪个队列。Queue:消息队列载体...
分类:编程语言   时间:2014-10-09 15:14:54    阅读次数:2654
iOS蓝牙4.0开发例子
1建立中心角色#import CBCentralManager *manager; manager = [[CBCentralManager alloc] initWithDelegate:self queue:nil]; 2扫描外设(discover)[manager scanForPer...
分类:移动开发   时间:2014-10-09 14:32:34    阅读次数:212
生产者/消费者问题的Java实现
类似于Java阻塞队列的实现:public class BlockingQueue { private List queue = new LinkedList(); private int limit = 10;//缓冲区大小 public BlockingQueue(int limit){...
分类:编程语言   时间:2014-10-09 02:34:37    阅读次数:197
使用Loadrunner对IBM MQ进行性能测试
一、概述 使用Loadrunner对IBM MQ进行性能测试,需要用到java vuser以及java编码知识。此次先介绍什么是IBM MQ,然后java vuser的使用与配置细节,最后介绍IBM MQ的测试脚本。二、IBM MQ介绍 IBM MQ(IBM Message Queue)...
分类:其他好文   时间:2014-10-08 16:25:05    阅读次数:469
Windows Message Queue
D - Windows Message Queue Time Limit:2000MS Memory Limit:65536KB 64bit IO Format:%lld & %lluSubmit Status Practice ZOJ 2724DescriptionMessage queue is...
分类:Windows程序   时间:2014-10-08 09:31:55    阅读次数:309
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!