M是消息传递数目,N进程数量,Msg是传递的消息-module(exe3_2).
-export([start/3,stop/0]).start(M,N,Msg) ->register(ring,spawn(fun()->ring_service(M,N,Msg) end)).stop() -> ring!stop.ring_service(M,N,Msg) ->
Ring=ring_nod...
分类:
系统相关 时间:
2015-04-07 09:44:20
阅读次数:
192
题意:输入n,代表有一个n个节点的环,然后在节点分别填入1到n这n个数,规定,第一个填入的必须是1.0 2 #include 3 #include 4 #include 5 using namespace std; 6 bool prime[43]; 7 bool vis[25]; 8 int to...
分类:
其他好文 时间:
2015-04-03 17:17:33
阅读次数:
195
链接:click here~~
题意:求相交环面积
Matt is a big fan of logo design. Recently he falls in love with logo made up by rings. The following figures are some famous examples you may know.
A ring is a...
分类:
其他好文 时间:
2015-04-01 17:48:38
阅读次数:
142
在linux 中,内核打印语句 printk() 会将内核信息输出到内核信息缓冲区中。内核信息缓冲区是一个环形缓冲区(ring buffer),因此,如果插入的信息过多,就会将之前的信息冲刷掉。printk() 定义了8个消息级别,分为级别0 ~ 7,级别越低(数值越大)的消息越不重要,第0级是紧急...
分类:
系统相关 时间:
2015-03-30 12:45:16
阅读次数:
476
1、 WINCE的网络驱动结构
1.1 WINCE 网络结构
1)WINCE 的NDIS网络接口提供如下能力:
miniport 网卡驱动接口支持802.3(MAC),802.5(RING),IRDA支持广域网动态绑定网卡和Plug and Play支持同一个协议绑定多个网卡支持网卡的MediaSense
2)WINCE的网络结构图
从该通信结构中可以看到,所有的通信协议都使用...
题意:给出n,把从1到n排成一个环,输出相邻两个数的和为素数的序列照着紫书敲的, 大概就是这个地方需要注意下,初始化的时候a[0]=1,然后dfs(1),从第1个位置开始搜 1 #include 2 #include 3 #include 4 #include 5 #include 6...
分类:
其他好文 时间:
2015-03-21 01:04:18
阅读次数:
247
Time Limit: 4000/2000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 30395Accepted Submission(s): 13525Problem Descript...
分类:
其他好文 时间:
2015-03-20 01:18:14
阅读次数:
120
由于目前golang 没有提供泛型机制,所以通用容器实现基本和 c 类似,golang 用 interface{} 做转接, c 用 void * 转接。 ring 包实现循环双向链表: type?Ring?struct???{????
???next,?prev?*Ri...
分类:
其他好文 时间:
2015-03-18 16:10:33
阅读次数:
136
1 #include 2 #include 3 #include 4 #define M 21 5 #define sc(x) scanf("%d",&x) 6 #define pf(x) printf("%d\n",x) 7 #define PF(x) printf("%d ",x) 8 #de....
分类:
其他好文 时间:
2015-03-11 16:22:04
阅读次数:
222
初次接触回溯法,觉得真是很好用,可以减少很多不必要的枚举。
cur变量表示进行到的当前第cur+1个数。 作为A【】的下标出现。
#include
using namespace std;
int n,vis[20],isp[100],A[30],maxn=0;
void dfs(int cur) {
if(cur==n&&isp[A[0]+A[n-1]]){
for(...
分类:
其他好文 时间:
2015-03-10 17:24:11
阅读次数:
139