速記 兩個程序模擬模態視窗

2021-05-09 05:52:52 字數 529 閱讀 8248

begin

waitforinputidle(hprocess, infinite);

setwindowlong(handle, gwl_hwndparent, self.handle);

enablewindow(self.handle, false);

//windowlist := disabletaskwindows(hprocess);

msgwaitforsingleobject(hprocess);

enablewindow(self.handle, true);

// enabletaskwindows(windowlist);

end;

setforegroundwindow(self.handle);

// sendmessage(self.handle, wm_syscommand,

// sc_minimize

// , 0);

//sendmessage(self.handle, wm_activate,1 , 0);

7 兩個棧模擬佇列,兩個佇列模擬棧

利用兩個棧模擬佇列 stack1,stack2 首先向stack1當中放入資料,如果需要輸出資料,從stack2中delete資料,如果stack2為空,就把stack1中資料匯入stack2 include static.h include include templateclass cquue ...

兩個棧模擬佇列

演算法導論上的課後題 兩個棧模擬佇列 這個原來做過 一般是這樣 我看網上大概都是這種解法 原來棧空 a b null null 1,2,3入站的時候入a a b 3 null 2 null 1 null 出戰的時候先進b 然後pop b 在調過來進a a b null 1 null 2 null 3...

兩個棧模擬乙個佇列 兩個佇列模擬乙個棧

解題思路 插入操作在stack1中進行,刪除操作在stack2中進行,如果stack2為空,則將stack1中的所有元素轉移到stack2中。include include includeusing namespace std template class cqueue 建構函式 template ...