-
maopao_youhua
冒泡优化:
如果一个序列是int n[]={1,2,3,4,5,6,7,8,9} , 用正常的冒泡排序需要排8次才行,优化之后1次就好,也就是说序列越接近于正常序列,改进之后的冒泡排序的次数就越少,这样会给一个冒泡排序算法带了很大的效率。
思想:添加一个boolean变量用来判断冒泡是否是已经排好了顺序,如果boolean的值为false,说明是已经排好了,如果boolean的值true,说明没有排好,继续排。(If a sequence is int n [] = {, 1,2,3,4,5,6,7,8,9} need to row 8 times the job after optimization times like normal bubble sort, but alsomeans that the sequence is more close to the normal sequence, improved bubble sort, the less the number, which would give a bubble sort algorithm with a great deal of efficiency.
Idea: add a boolean variable used to determine the bubble whether it is already lined up the order, if the boolean is false, indicating already lined up, if the boolean value of true, did not line up, continue to row.)
- 2012-04-18 00:33:45下载
- 积分:1
-
filesample
有关文件操作的源码,很有使用价值(source code about the file operation, very valuable)
- 2004-11-15 11:23:00下载
- 积分:1
-
GDIPlusDemo
使用GDIPlus显示图片的一个小例子,用的vs2010开发,win7默认自带了gdi+的头文件和lib文件(GDIPlus display the picture of a small example with vs2010 development, win7 default comes with the header files and lib files in gdi+)
- 2012-08-09 14:25:43下载
- 积分:1
-
TreeList
说明: 树形列表控件(Tree List Control)
- 2008-10-09 13:09:45下载
- 积分:1
-
51综合练习
说明: 8051 练习项目,包含串口、定时器、红外遥控、LCD1602、SMI串行总线读写等功能。(8051 exercise items, including serial port, timer, infrared remote control, LCD1602, SMI serial bus reading and writing functions.)
- 2020-06-16 11:20:02下载
- 积分:1
-
w_ipp-sample-jpeg_p_5.0.010
intel的ipp性能库sample code,提供了加速的静态图象处理示例,充分显示了ipp在多核平台下的性能优势(intel performance of ipp library sample code, provided the acceleration of static image processing example, it shows that in multi-core platform ipp performance advantages)
- 2007-08-29 11:12:54下载
- 积分:1
-
showbmp
在C语言下成功实现读取并显示bmp格式的图像。(Successfully read and display BMP format images in C language.)
- 2018-04-03 18:04:56下载
- 积分:1
-
DrawMenuMap
下拉菜单地图,精选ios编程学习源码,很好的参考资料。(The drop-down menu map, select learning IOS programming source code, a good reference.)
- 2013-12-16 21:06:46下载
- 积分:1
-
SI4463收发程序
4463收发程序 SPI 可实现稳定收发 基于STM32F103C8T6(4463 TX RX code MCU IS STM32F103C8T6)
- 2020-11-14 14:49:42下载
- 积分:1
-
C#自动更新服务(本地服务安装)
using System;using System.Collections.Generic;using System.Linq;using System.Text;using Common.WinService;using Common.Log;using System.Threading;using Common.Net;using System.Text.RegularExpressions;namespace Collection.AutoRunner{ //获取学生信息 public class Service_Update_Data : IWindowsService { private ILogWriter _logWriter = null; private const string logCategory = "Services.Info"; private string logInfoSource = "Update_Data"; private const string logErrorCategory = "Services.Error"; private const string logErrorSource = "Update_Data_Error"; private bool BeStop = true; private System.Timers.Timer timer = null; public void Start(Common.Log.ILogWriter logWriter, string gameCode) { gameCode = gameCode.ToUpper(); logInfoSource = gameCode; _logWriter = logWriter; BeStop = false; StartRequestData(); } int stata = 0; private void StartRequestData() { try { #region 配置 //时间频率 var UpdateStudentSpan = ServiceHelper.GetInterval("UpdateData"); //更新学生开始时间 var studentbegintime = ServiceHelper.GetInterval("StudentBeginTime"); //更新学生结束时间 var studentendtime = ServiceHelper.GetInterval("StudentEndTime"); //是否更新学生基本信息:true为更新 false为不更新 var IsUpdateStudnet =Convert.ToBoolean(ServiceHelper.GetSystemConfig("IsUpdateStudnet")); #endregion timer = ServiceHelper.ExcuteByTimer(UpdateStudentSpan, () => { int timeHour = DateTime.Now.Hour; if (timeHour == 3) stata = 0; #region 更新学生基本信息 if (studentbegintime
- 2015-03-11下载
- 积分:1