搜索资源列表
BigIntMultiplication
- 大整数乘法例子代码 /* 递归边界,如果是1位二进制数与1位二进制数相乘,则可以直接计算 */ /*累计做1位二进制乘法运算的次数*/ /* return (X*Y) */ /* 计算n的值 */ /* 把X和Y拆分开来,令X=A*2^(n/2)+B, 左移位运算,mod = 1<<(n/2) */ /* 计算XY=AC*2^n+(AD+CB)*2^(n/2)+BD */ /* 计算A*C,再向左移n位 */ /* 递归计算A*D */ /* 递
openreports-0.8.0
- The ability to create groups of reports, and grant users access to reports by group. The ability to generate reports as PDF, XLS, HTML, and CSV files. The ability to generate bar, pie and xy charts for inclusion in reports. The ability to schedule an
xy
- java下载器,可实现下载、暂停等功能,有新建对话框,能实现多线程下载-java download, enables downloads, pause function, a new dialog box, to achieve multi-threaded downloads
dashu
- 大数乘法,设x和y都是n位的二进制整数,计算他们乘积xy,吧整数x和y各分2段-Multiplication of large numbers, let x and y are n-bit binary integer, calculate their product xy, it integers x and y sub-paragraph 2
JFreeChart_XYseries-_JSP
- 运用jfreechart开发图表,本实例是XY极坐标图的开发,内附注释,手把手教程,完美解决中文乱码、中文标题‘口口口’!-To use jfreechart to develop a chart, this example is the development of a XY polar diagram, containing notes. Step by step tutorial, the perfect solution to the Chinese garbled, especiall
graphic_easyexample
- example to make various types of graphs, such as xy graphs, pie charts and more. The instructions are in the folder
google-get-xy
- google map api address to xy
xy
- 结合MyEclipse开发平台和MySQL数据库对用户登录注册,新闻发布,查询做一个小型的系统-Combined with MyEclipse development platform and MySQL for user login register, press releases, queries do a small system
xy
- 实验目的:掌握使用基本控件和合适布局管理器进行界面设计的方法,掌握简单的事件处理方法。能根据要求设计出美观界面并实现所要求功能。 实验内容:实现成绩的查询和排序。具体要求如下:使用JTabbedPane,建立三个选项卡“成绩输入”、“成绩查询”、“成绩排序” ① 成绩输入:从界面上输入学生的学号和成绩,点击“确认”按钮进行保存。 ②