試驗要求: 已知A,B和C為三個遞增有序的線性表,現要求對A表作如下操作:刪去那些既在B表中出現又在C表中出現的元素。 (1) 各線性表采用順序存儲結構; (2) 題中任一線性表中的元素值可以相同。 2.線性表中的元素為實數,線性表的長度元素由用戶輸入. 3.試驗執行的命令包括:構造線性表LA,LB,LC.在LA中查找并刪除既在B表中出現又在C表中出現的元素.輸出刪除后LA的結果.
標簽:
上傳時間: 2016-03-24
上傳用戶:xieguodong1234
華恒科技 HHCF5249-R3 技術手冊 第一章 產品簡介 第二章 軟件系統 第三章 硬件系統 第四章 機械特性 第五章 底板的硬件設計 第六章 售后服務及技術支持 附錄 附錄A 初始化 附錄B LINUX 常見術語 附錄C 常用LINUX 命令 附錄D GCC 與GDB 附錄E MAKEFILE 附錄F UCLINUX 系統分析 uClinux 簡介 uClinux 小型化的做法 uClinux 的開發環境 uClinux 的內存管理 工具及內核 附錄G 圖形界面(GUI)接口函數API 附錄H 參考資料
上傳時間: 2013-12-24
上傳用戶:a6697238
Swfdec still is development software, but has also followed a rigid no-crashes-allowed policy. I believe it s stable enough now to be installed as a default plugin for people that can live with occasional crashes of their browser. But don t blame me if it does crash. File a bug at https://bugs.freedesktop.org/enter_bug.cgi?product=swfdec
標簽: no-crashes-allowed development followed software
上傳時間: 2016-04-14
上傳用戶:franktu
1) Write a function reverse(A) which takes a matrix A of arbitrary dimensions as input and returns a matrix B consisting of the columns of A in reverse order. Thus for example, if A = 1 2 3 then B = 3 2 1 4 5 6 6 5 4 7 8 9 9 8 7 Write a main program to call reverse(A) for the matrix A = magic(5). Print to the screen both A and reverse(A). 2) Write a program which accepts an input k from the keyboard, and which prints out the smallest fibonacci number that is at least as large as k. The program should also print out its position in the fibonacci sequence. Here is a sample of input and output: Enter k>0: 100 144 is the smallest fibonacci number greater than or equal to 100. It is the 12th fibonacci number.
標簽: dimensions arbitrary function reverse
上傳時間: 2016-04-16
上傳用戶:waitingfy
The LM628/LM629 are dedicated motion-control processors designed for use with a variety of DC and brushless DC servo motors
標簽: motion-control processors dedicated designed
上傳時間: 2014-01-23
上傳用戶:aa17807091
Implement the following integer methods: a) Method celsius returns the Celsius equivalent of a Fahrenheit calculation celsius = 5.0 / 9.0 * ( fahrenheit - 32 ) b) Method fahrenheit returns the Fahrenheit equivalent of a Celsius the calculation fahrenheit = 9.0 / 5.0 * celsius + 32 c) Use the methods from parts (a) and (b) to write an application either to enter a Fahrenheit temperature and display the Celsius or to enter a Celsius temperature and display the Fahrenheit equivalent.
標簽: equivalent Implement the following
上傳時間: 2014-01-19
上傳用戶:jackgao
除法器的設計本文所采用的除法原理是:對于八位無符號被除數A,先對A轉換成高八位是0低八位是A的數C,在時鐘脈沖的每個上升沿C 向左移動一位,最后一位補零,同時判斷C的高八位是否大于除數B,如是則C的高八位減去B,同時進行移位操作,將C的第二位置1。否則,繼續移位操作。經過八個周期后,所得到的C的高八位為余數,第八位為商。從圖(1)可清楚地看出此除法器的工作原理。此除法器主要包括比較器、減法器、移位器、控制器等模塊。
上傳時間: 2014-11-23
上傳用戶:皇族傳媒
A.增強采集功能,包括酷6,Mofile,優酷,56,土豆,新浪播客,六間房,偶偶,目前最強大的采集系統 B.修正了56白屏和土豆白屏的問題 C.增加了Bokecc播客的播放插件,酷6視頻的播放插件,Mofile視頻的播放插件 D.增加了后臺的數據管理,使其能夠按找播放器類型進行排序,以便于找到想要的數據 E.修正采集電視劇時,當天沒更新數據時發生的錯誤
上傳時間: 2013-12-13
上傳用戶:JIUSHICHEN
用AT89S51單片機的P0.0/AD0-P0.7/AD7端口接數碼管的a-h端,8位數碼管的S1-S8通過74LS138譯碼器的Y0-Y7來控制選通每個數碼管的位選端。AT89S51單片機的P1.0-P1.2控制74LS138的A,B,C端子。在8位數碼管上從右向左循環顯示“12345678”。能夠比較平滑地看到拉幕的效果。
上傳時間: 2016-06-17
上傳用戶:wanghui2438
這是編譯原理的一個實驗, 是把一個正則表達式轉化為不確定有窮自動機NFA的算法程序,朋興趣的朋友可以下載來看看哦。 一個正則表達式就是由普通字符(例如字符 a 到 z)以及特殊字符(稱為元字符)組成的文字模式。該模式描述在查找文字主體時匹配的一個或多個字符串。正則表達式作為一個模板,將某個字符模式與所搜索的字符串進行匹配。 本實例的符號包括: 1. 基本正則表達式, 如ab 2. 重復, 如a* 3. 在各項中選擇, 如a|b 使用時在Convert的Reg Exp中點擊輸入正則表達式, 然后單擊Convert->to NFA就可以了。
上傳時間: 2016-06-22
上傳用戶:wangchong