搜索资源列表

  1. ProcessSynchronization

    0下载:
  2. 实现操作系统几个经典问题:生产者消费者,读者写者,哲学家进餐问题.共做一个界面-The realization of the operating system a few classic problems: producers of consumer, readers-writer, philosopher eating problems. Were to do an interface
  3. 所属分类:Internet/网络编程

    • 发布日期:2024-05-04
    • 文件大小:97280
    • 提供者:bark
  1. eat

    0下载:
  2. 哲学家进餐问题,经典的同步问题,是初学者很好的学习材料-Dining philosophers problem, the classical synchronization problem is a very good learning materials for beginners
  3. 所属分类:进程与线程

    • 发布日期:2024-05-04
    • 文件大小:2536448
    • 提供者:linweiyong
  1. philosophereating

    0下载:
  2. 哲学家进餐问题,用C++编写,使用多线程实现,通过五个对话框模拟五个哲学家,很直观.-Dining philosophers problem, using C++ Preparation, the use of multi-threaded realize, through the five dialog simulation five philosophers, very intuitive.
  3. 所属分类:书籍源码

    • 发布日期:2024-05-04
    • 文件大小:1024
    • 提供者:Wang
  1. eating

    0下载:
  2. 操作系统中关于哲学家进餐问题的演示,哲学家左右两边的筷子,分别用一个变量表示,这是一个很经典的问题。该程序在VC环境下运行。-Operating system on the dining philosophers problem presentation, philosophers on both sides of the chopsticks, were used to express a variable, this is a ve
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-04
    • 文件大小:522240
    • 提供者:汪玉玲
  1. philosopher(1.6)

    0下载:
  2. 哲学家进餐问题——Java语言实现 哲学家进餐问题是一个多线程运用的经典例子,涉及到线程同步/互斥,临界区访问问题以及一个避免死锁的解决方法。 有五个哲学家绕着圆桌坐,每个哲学家面前有一盘面,两人之间有一支筷子,这样每个哲学家左右各有一支筷子。 哲学家有2个状态,思考或者拿起筷子吃饭。如果哲学家拿到一只筷子,不能吃饭,直到拿到2只才能吃饭,并且一次只能拿起身边的一支筷子。一旦拿起便不会放下筷子直到把饭吃完,此时才把这
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-04
    • 文件大小:6144
    • 提供者:stone
  1. eating

    0下载:
  2. 模拟哲学家进餐的同步问题,实现一个既没有两邻座同时吃饭,又没有人饿死(永远拿不到一双筷子)的算法-Simulation of synchronous dining philosophers problem, the realization of a neighbor at the same time do not have two meals, and no one starved to death (never get a pair
  3. 所属分类:Windows编程

    • 发布日期:2024-05-04
    • 文件大小:1010688
    • 提供者:梁先生
  1. DiningPhilosophor1

    0下载:
  2. 哲学家进餐问题,课程设计,界面友好,实现功能很好。模拟了同步互斥-Dining philosophers problem, curriculum design, friendly interface and good functionality realize. Simulation of synchronous mutex
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-04
    • 文件大小:550912
    • 提供者:wangmeijuan
  1. dining_philosopher.tar

    0下载:
  2. 哲学家进餐经典算法的pthread多线程实现代码-Classic dining philosophers pthread algorithm to achieve multi-threaded code
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-04
    • 文件大小:1024
    • 提供者:brave_gen
  1. food

    0下载:
  2. 哲学家进餐问题 操作系统的几大代码之一-Dining philosophers problem of operating system, one of several major code
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-04
    • 文件大小:526336
    • 提供者:liuguo
  1. deadlock

    0下载:
  2. 操作系统课程设计:死锁问题。 哲学家进餐问题的解决!!!很好的操作系统大作业!-Operating systems curriculum design: Deadlock problem. Dining philosophers problem! ! ! Very good major operating system!
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-04
    • 文件大小:47104
    • 提供者:张薇薇
  1. philosopher

    0下载:
  2. 哲学家进餐问题是荷兰学者Dijkstra 提出的经典问题之一,它是一个信号量机制问题的应用,在操作系统文化史上具有非常重要的地位。对该问题的剖析有助于学生深刻地理解计算机系统中的资源共享、进程同步、死锁等问题,并能熟练地应用信号量来解决生活中的控制流程,即将生活中的控制流程用形式化的方式表达出来。-Dining philosophers problem is that the Dutch scholars Dijkstra classi
  3. 所属分类:进程与线程

    • 发布日期:2024-05-04
    • 文件大小:40960
    • 提供者:贺美琛
  1. Philosopher

    0下载:
  2. 关于操作系统哲学家进餐的动态演示程序,清晰的分析了死锁发生的情形和修正死锁。-Dining philosophers about the operating system dynamic presentation procedures, a clear analysis of the deadlock situation occurred and amendments to deadlock.
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-04
    • 文件大小:41984
    • 提供者:成炼
  1. Diningphilosophersproblem

    0下载:
  2. 哲学家进餐问题假如所有的哲学家都同时拿起左侧筷子,看到右侧筷子不可用,又都放下左侧筷子, 等一会儿,又同时拿起左侧筷子,如此这般,永远重复。对于这种情况,即所有的程序都在 无限期地运行,但是都无法取得任何进展,即出现饥饿,所有哲学家都吃不上饭。-Dining philosophers problem
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-04
    • 文件大小:4096
    • 提供者:
  1. Diningphilosophersproblem11

    0下载:
  2. 学家进餐问题也是一个经典的同步问题,它是由Dijkstra提出并解决的。哲学家进餐问题是这样的:5个哲学家以思考、吃饭交替进行的方式生活,他们共享一张周围有5把椅子的圆桌,每人一把椅子,在桌子上摆有5个饭碗和5只筷子。当一个哲学家思考时,他不与邻座同事发生联系。当一哲学家饿了,他就试图拿起他左右两边的筷子吃饭。显然,他不能拿起已抓在他的邻座手中的筷子,于是,他可能只拿到一只甚至一只筷子也拿不到。当一个饥饿的哲学家得到了两只筷子,他就可以
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-04
    • 文件大小:1024
    • 提供者:
  1. eating

    0下载:
  2. 哲学家进餐问题:5个哲学家,为着坐,5只筷子,别放在两个的间隔中放着,问他们当如何进餐且不进餐的哲学家也能思考-Problem of Rousseau dine
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-04
    • 文件大小:1039360
    • 提供者:龙洪
  1. DineRun

    0下载:
  2. JAVA实现的哲学家进餐问题,5个哲学家,为着一个圆桌,相互之间放着一只筷子,当哲学家饿了的时候边可拿起,傍边的筷子进餐,完了在放下-Rousseau
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-04
    • 文件大小:2048
    • 提供者:龙洪
  1. lab1

    0下载:
  2. 操作系统中的 哲学家进餐问题 经典算法vc版-Operating system in the dining philosophers problem
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-04
    • 文件大小:2888704
    • 提供者:付炳瑶
  1. zhexuejiajingcangwenti

    0下载:
  2. 哲学家进餐问题 代码精炼 程序优化带有课程设计报告-Code refined dining philosophers problem with the curriculum design process optimization report
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-04
    • 文件大小:63488
    • 提供者:留慧
  1. philosopher

    0下载:
  2. 五位哲学家进餐的问题....VC++编程实现...编辑运行即可- codes in the os experiment
  3. 所属分类:Windows编程

    • 发布日期:2024-05-04
    • 文件大小:2048
    • 提供者:cacasi
  1. philosophesdine

    0下载:
  2. 哲学家进餐问题算法用VC++程序实现,非常经典的程序,很不错的哦。源代码完全开放-Dining Philosophers algorithm uses VC++ program to achieve a very classic procedures, very good oh. Completely open source code
  3. 所属分类:进程与线程

    • 发布日期:2024-05-04
    • 文件大小:519168
    • 提供者:李乐
« 1 2 34 5 6 7 8 9 »

源码中国 www.ymcn.org