AI智能推荐题库-试题通 AI智能整理导入题库-试题通
×
首页 题库中心 湘雅第五版三基护理 题目详情
CA2B14D032A000016C28124070B0E430
湘雅第五版三基护理
2,526
多选题

24.腹腔双套管灌洗引流的目的是:( )

A
 引流作用
B
 冲洗作用
C
 减少胰液对机体的损害
D
 减少胰腺坏死组织对机体刺激
E
 减少毒素对机体的刺激

答案解析

正确答案:ABCDE

解析:

腹腔双套管灌洗引流的目的是:( ) A. 引流作用 B. 冲洗作用 C. 减少胰液对机体的损<|endoftext|>Transitive Reduction of Binary Relations Consider a directed binary relation $R$ on the set $X$. For this relation, I would like to know what elements in $X$ are transitively related to each other. I could compute the transitive closure of $R$ and then do a search for elements which are connected to each other in the graph representation of the transitive closure. Is there a better way? In particular, can I avoid computing the entire transitive closure? pyotiny 2013-01-07: This can be done more efficiently than computing the entire transitive closure. Since you only care about whether two nodes are in the same equivalence class, you could use a union-find data structure to track this. Initially, each element is in a different equivalence class, and each element is its own parent. Then you perform a depth-first search of $R$, calling the Union function whenever you find that an element is in the same equivalence class as another. The Union function will combine the two equivalence classes into one. Let $n$ be the number of elements in $X$, and let $m$ be the number of pairs in $R$. Using the union-find data structure takes $O(n \log n + m)$ time. The time for union-find is dominated by the $O(n \log n)$ term, because the $O(m)$ term can be absorbed by the $O(n \log n)$ term by using the fact that $m = O(n^2)$. (If $m = O(n)$, then we can use a different data structure such as a hash table instead of union-find to get $O(m + n \log n)$ time.) I believe that the time can be further improved, to $O(n \alpha(n) + m)$ time, where $\alpha(n)$ is the extremely slow-growing inverse Ackermann function. Hopcroft's 1974 paper "An $n \log n$ algorithm for minimizing states in a finite automaton" gives a plan for doing this on the middle of page 262. However, even though the author promises to give more details later, I could not actually find those details later in the paper! The details can be found in Tarjan's 1983 paper "Data structures and network algorithms" on page 113, but it requires a lot of background from the rest of the paper, so it's not an easy read. I believe the details can also be found in Sleator and Tarjan's 1983 paper "A data
题目纠错
湘雅第五版三基护理

扫码进入小程序
随时随地练习

关闭登录弹窗
专为自学备考人员打造
勾选图标
自助导入本地题库
勾选图标
多种刷题考试模式
勾选图标
本地离线答题搜题
勾选图标
扫码考试方便快捷
勾选图标
海量试题每日更新
波浪装饰图
欢迎登录试题通
可以使用以下方式扫码登陆
APP图标
使用APP登录
微信图标
使用微信登录
试题通小程序二维码
联系电话:
400-660-3606
试题通企业微信二维码