CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - columns
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Sub Category
assembly language
SCSI-ASPI
ELanguage
Disk Tools
Speech/Voice recognition/combine
Editor
Anti-virus
MultiLanguage
MPI
source in ebook
Delphi VCL
OS Develop
MiddleWare
MacOS develop
LabView
e-language
python
Search - columns - List
[
Other
]
scrl
DL : 0
This dialog-based application shows how to use the CListCtrl::Scroll() member. It subclasses a list view control which is in report mode, and forces the control to \"snap\" its horizontal scrolling to the exact start of each column. The code shows how to retrieve the count of columns in the control, and also demonstrates how to find information about each column. This is a VC++ 5.0 project. Differences from a stock AppWizard dialog-based application are marked with //SAMPLE comments.
Date
: 2008-10-13
Size
: 13.6kb
User
:
陈伟
[
Other
]
job_find
DL : 0
本程序的功能如下: 1)本程序完全采用jsp脚本技术 2)后台管理,可以对栏目进行设置,添加、删除、修改栏目和专题的功能 3)可以对添加的记录进行添加、删除、编辑的功能 4)前台可以自动生成栏目,默认为选择前十的栏目 5)前台显示当天的下载爬行和总的下载排行 6)前台能够显示数据的统计 7)本程度的美化做得已经很好了,几乎拿来过来就能用 8)可以进行注册、登陆、搜索的功能-the functions of the procedures are as follows : 1) the procedure completely jsp scripting 2) background and management will be set up for the columns, add, delete, modify columns and features three themes) can add to the record to add, delete, edit function 4) before Taiwan can automatically generate columns, the default choice for the first 10 columns 5) shows prospects of the day and the total download crawling download ranked 6) outlook to the statistical data shows 7) the extent of the landscaping has been done well, can be almost used up eight) can be registered, landing , the search function
Date
: 2008-10-13
Size
: 68.86kb
User
:
阮高鹏
[
Other
]
lbbs0430
DL : 0
乐学迷你BBS(lbbs) v1.5 Build 0430 界面简单清爽,全文本,普通用户级及超级用户级别区分,快速发贴、回贴,可自定义论坛栏目,管理员可以对贴子加“精”,置顶,对贴子进行编辑、删除及在栏目间移动,用户可以编辑自己发布及回复的贴子,管理员可以使用HTML代码维护数据库,页面执行时间显示,按标题搜索,Enlish Only栏目仅限发布英文内容,后台管理用户SQL代码执行功能,回复序号显示,方便查看. 超级用户:admin 初始密码:admin-music school mini BBS (lbbs) v1.5 Build 0430 interface simple and comfortable. the full text of the ordinary user-level and user-level super distinction, rapid sent, unidentified, since the definition of the Forum column, administrators can increase the posting "excellent", the set-top, posting edit, delete the columns and between mobile, users can edit their release and return of postings, administrators can use HTML code maintenance of the database, pages implementation time, the search by title, Enlish Only columns published in English only, background management user SQL code enforcement, and a return to the serial number, user-friendly. Super users : admin initial Password : admin
Date
: 2008-10-13
Size
: 180.91kb
User
:
wangcy
[
Other
]
sparsematric.cpp
DL : 0
十字链表是这样构成的:用链表模拟矩阵的行(或者列,这可以根据个人喜好来定),然后,再构造代表列的链表,将每一行中的元素节点插入到对应的列中去。书中为了少存几个表头节点,将行和列的表头节点合并到了一起——实际只是省了几个指针域,如果行和列数不等,多余的数据域就把这点省出的空间又给用了。这点小动作让我着实废了半天劲,个人感觉,优点不大,缺点不少,不如老老实实写得象个十字链表,让人也好看一些,这是教科书,目的是教学。实在看得晕的人,参阅C版的这部分内容,很清晰。我也不会画图,打个比方吧:这个十字链表的逻辑结构就像是一个围棋盘(没见过,你就想一下苍蝇拍,这个总见过吧),而非零元就好像是在棋盘上放的棋子,总共占的空间就是,确定那些线的表头节点和那些棋子代表的非零元节点。最后,我们用一个指针指向这个棋盘,这个指针就代表了这个稀疏矩阵-Crusaders is the form : Chain Simulation matrix rows (or out, This can be based on individual preferences to be), and then constructed on behalf of the chain out, Each line of the elements inserted into the node corresponding to the series. To book a few small depositors table first node, out of line and the first node table to merge together -- the reality is that a number of indicators provincial jurisdictions, if the number of rows and columns ranging, redundant data domain put this province has granted the use of the space. This little trick I did waste a half-day efforts, personal feeling, not merit, a lot of shortcomings, written as honestly as cross chain, some people are good looking, which is the textbook, and the purpose of teaching. Really see the halo, see the C version of this
Date
: 2008-10-13
Size
: 1.82kb
User
:
weiran
[
Other
]
2快速转置
DL : 0
这是一个可以实现一个任意矩阵的行和列的快速转换的小程序,大家请指教-can achieve an arbitrary matrix of rows and columns of small rapid conversion process, please enlighten
Date
: 2008-10-13
Size
: 1.43kb
User
:
阿亮
[
Other
]
Uniform Generator
DL : 0
Uniform Generator Computer simulations often require random numbers. One way to generate pseudo-random numbers is via a function of the form where `` " is the modulus operator. Such a function will generate pseudo-random numbers (seed) between 0 and MOD-1. One problem with functions of this form is that they will always generate the same pattern over and over. In order to minimize this effect, selecting the STEP and MOD values carefully can result in a uniform distribution of all values between (and including) 0 and MOD-1. For example, if STEP = 3 and MOD = 5, the function will generate the series of pseudo-random numbers 0, 3, 1, 4, 2 in a repeating cycle. In this example, all of the numbers between and including 0 and MOD-1 will be generated every MOD iterations of the function. Note that by the nature of the function to generate the same seed(x+1) every time seed(x) occurs means that if a function will generate all the numbers between 0 and MOD-1, it will generate pseudo-random numbers uniformly with every MOD iterations. If STEP = 15 and MOD = 20, the function generates the series 0, 15, 10, 5 (or any other repeating series if the initial seed is other than 0). This is a poor selection of STEP and MOD because no initial seed will generate all of the numbers from 0 and MOD-1. Your program will determine if choices of STEP and MOD will generate a uniform distribution of pseudo-random numbers. Input Each line of input will contain a pair of integers for STEP and MOD in that order ( ). Output For each line of input, your program should print the STEP value right- justified in columns 1 through 10, the MOD value right-justified in columns 11 through 20 and either ``Good Choice" or ``Bad Choice" left-justified starting in column 25. The ``Good Choice" message should be printed when the selection of STEP and MOD will generate all the numbers between and including 0 and MOD-1 when MOD numbers are generated. Otherwise, your program should print the message ``Bad Choice". After each output test set, your program should print exactly one blank line. Sample Input 3 5 15 20 63923 99999 Sample Output 3 5 Good Choice 15 20 Bad Choice 63923 99999 Good Choice
Date
: 2009-04-30
Size
: 360byte
User
:
samurai1x4kyo@126.com
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.