ADT串的實現(xiàn):主要包括以下操作:§ copy(s1,s2)把串s1復制到s2 § concat(s,s1,s2)連接S1,S2,結(jié)果放在S中 § DELETE(s,i,j)將串s中從第i個字符開始的連續(xù)j個字符刪除,如果i+j>s.len則一直刪除到串尾 § insert(s,s1,i)將串S1插入串S的第i個字符后
上傳時間: 2013-12-11
上傳用戶:奇奇奔奔
學習類的,深入研究New和DELETE,看后會很收益的:)
標簽:
上傳時間: 2014-01-26
上傳用戶:jichenxi0730
本程序?qū)⒂脩粜畔⒃O計成一個類,使用對象模擬對 象數(shù)據(jù)庫,將用戶信息保存到數(shù)據(jù)文件中。并實現(xiàn)打開 文件,保存文本,添加&刪除用戶信息等功能。 在運行的過程中,用戶須先填上自己的姓名、性別 ,然后選擇自己所在省份、城市。點擊“Add”按鈕, 該用戶信息即可添加進面板左邊的文本區(qū),點擊 “DELETE”時,可刪除該用戶的信息,點擊“Open”可 打開一個文件,點“Prior”可將該用戶信息上移一行, “Next”下移一行,“First”上移至文本區(qū)第一行, “Last”信息下移至最后一行,“Save”保存左邊的文 件為一個文本文檔。
上傳時間: 2015-03-31
上傳用戶:253189838
快速刪除VC,DELPHI的臨時文件。此BAT文件可以在文件夾和驅(qū)動盤右鍵菜單中添加兩個菜單項(DELETE specified files和DELETE specified files extention setup我現(xiàn)在使用的是英文選項,您也可以進行修改),第一次使用時雙擊此BAT文件即可以完成右鍵功能的添加,以后您就可以方便地使用此菜單的功能了。注:您也可以添加其他可刪除的文件擴展名。
標簽: 刪除
上傳時間: 2014-07-01
上傳用戶:pkkkkp
內(nèi)容如下: 1.The history of the computerized database 2.SQL Data Statements--those used to create, manipulate, and retrieve data stored in your database example statements include select, update, insert, and DELETE 3.SQL Schema Statements--those used to create database objects, such as tables, indexes, and constraints 4.How data sets can interact with queries 5.The importance of subqueries 6.Data conversion and manipulation via SQL s built-in functions 7.How conditional logic can be used in Data Statements
標簽: computerized Statements database history
上傳時間: 2015-04-25
上傳用戶:ardager
這是一個比較完整的java語言編寫的文件系統(tǒng)程序,有8個基本功能,要求設計一個N個用戶的文件系統(tǒng),每次用戶可以保存M個文件,用戶在一次運行中只能打開一個文件,對文件必須設置保護措施。且至少有Create,DELETE,Open,Read,Write等命令。
標簽: java 比較 文件系統(tǒng) 語言
上傳時間: 2015-05-01
上傳用戶:戀天使569
This code detects memory leaks in embedded VC++ almost the same way crtdbg does in VC++. At the end of program execution it will display in the debug window if there were any memory leaks and how the memory looks so you can identify where your memory leak occurred. It will display in the debug window a message saying no memory leaks detected if there are no memory leaks. Similar to what crtdbg.h does in VC++. The code detects memory leaks generated with calls to new and DELETE operators in C++. The code doesn t detect memory leaks generated with C functions: malloc, calloc, free, but that can be done in the future. Let me know and I will program it.
標簽: the embedded detects almost
上傳時間: 2015-05-07
上傳用戶:comua
The JICQ is the bureau area which JAVA writes according to "Customer s Machine/Server"(C/S) mode message solid hour correspond by letter tool system, the system adopted the SQL Server2000 of Microsoft company as a backstage database, the system passes a JDBC interview database. The system is divided into the server procedure and customer s procedure two parts, server and customer adoption "Transmission Control Protocol"(TCP), connect a word (Socket) conjunction through a set, the adoption "User Datagram Protocol "(UDP) of the customer s, pass a data report a set to connect a word (DatagramSocket) establishment a conjunction. The system has customer registration, customer to register, increase good friend, DELETE good friend and send out and receive news etc. function.
標簽: according Customer Machine Server
上傳時間: 2014-01-04
上傳用戶:jyycc
本源代碼所設計的文件系統(tǒng),具有建立文件(create)、打開文件(open)、讀文件(read)、寫文件(write)、關(guān)閉文件(close)、撤銷文件(DELETE)等功能。在模擬程序中可從鍵盤上輸入文件操作命令來模擬各用戶程序中所調(diào)用的各種文件操作,用一個結(jié)束命令(end)停止程序的執(zhí)行。
標簽: 源代碼 文件系統(tǒng)
上傳時間: 2013-12-13
上傳用戶:希醬大魔王
//在tc3.0++在運行 //a數(shù)組用于隨機產(chǎn)生1-6數(shù)表示每個方格后面的圖形.用inita()函數(shù)來實現(xiàn) //c數(shù)組用于記錄方格的狀態(tài),用字符L(lock)表示沒有打開的方格 //D(DELETE)表示已消去的方格.O(open)表示打開的方格. //變量m表示按回車鍵的有效次數(shù).也是記憶力參數(shù),越小記憶力越好 //變量xpos,ypos用于表示當前光標所在的位置 //(x1,y1),(x2,y2)用于記錄打開的兩個方格的位置 //judge()函數(shù)用于控制光標范圍,使其不能移出長方形 //win()函數(shù)用于判斷游戲是否過關(guān),通過判斷每個方格是否全是 D 狀態(tài) //xago,yago 用于記錄移動前的位置 //ax,ay表示行列式的行與列,用它們來控制游戲的關(guān)數(shù),ax位于3-6之間,ay位于4-7之間 //z來控制方格后的圖形 //第一關(guān)后面的圖形用1-6代表的圖形.第二關(guān)后面的圖形用0-9十個數(shù)。第三關(guān)后面的圖形用A-O十五個字母, //第四關(guān)后面的圖形用A-T二十一個字母
上傳時間: 2015-06-19
上傳用戶:hgy9473
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1