-
目的:
试验多核CPU上排序算法的效率,比较单任务和多任务并行排序算法的差距
内容:
快速排序算法...
目的:
试验多核CPU上排序算法的效率,比较单任务和多任务并行排序算法的差距
内容:
快速排序算法
-Objective: To test multi-core CPU on the efficiency of sorting algorithm to compare single-mission and multi-mission of the gap between the parallel sorting algorithms Content: Quick Sort Algorithm
- 2022-02-13 04:05:26下载
- 积分:1
-
Build like a kind of form excel, is primarily a windows operating system, the fo...
生成像excel那样的表格,主要是一个演示如何在windows操作系统下面利用vc进行界面编程的scroll功能的使用-Build like a kind of form excel, is primarily a windows operating system, the following demonstrates how to use vc for interface programming using the scroll function
- 2022-04-24 15:16:02下载
- 积分:1
-
Winform仿360安全卫士界面风格
应用背景项目名称:[精仿]360安全卫士-10.30更新(CSkin Demo)
界面库版本号:10.30 最新版本
下载内容:
精仿360安全卫士源码一份,
可引用至工具箱最新版CSkin.dll一份
实现功能:
1.发光标题。
2.直角边框和阴影。
3.360安全卫士主界面模仿。
4.多系统支持,不需要win8系统,即可实现win8风格的360。
5.自定义控件的美化使用。关键技术界面库更新文档:
CC2013-10.30
1.由于SkinForm名字太多人使用,界面库命名正式改为CSkin.dll,官网www.cskin.net。
2.SkinTabControl标签中添加菜单箭头,可点击展开菜单。
3.SkinTabControl添加标签关闭按钮。
4.修复部分中文乱码问题。
5.优化好友列表右键菜单。
6.将窗体自定义系统按钮改为集合模式,可添加无数个自定义系统按钮。自定义系统按钮事件中可以 e.参数 来判断。
7.增加360安全卫士-DEMO案例。
8.增加SkinAnimatorImg控件,用于支持位图动画的播放。如360的动态logo。
9.各种细节BUG优化。
CC2013-10.11
1.添加SkinTabControlEx,加入更加自定义的美化属性和动画效果。
2.添加SkinAnimator,通用动画控件。
3.添加Html编辑器控件
4.修复SkinButton图标和文本相对位置的BUG
- 2022-08-16 23:52:56下载
- 积分:1
-
包含了书中介绍的所有实例的源程序文件,共计200个,给出的所有程序实例均在Microsoft Visual C++ 6.0开发环境中调试通过。...
包含了书中介绍的所有实例的源程序文件,共计200个,给出的所有程序实例均在Microsoft Visual C++ 6.0开发环境中调试通过。-The book contains all the examples presented in the source file, for a total of 200 examples of all the procedures are given in the Microsoft Visual C++ 6.0 development environment through testing.
- 2023-08-26 15:10:03下载
- 积分:1
-
民航订票系统,是使用c语言编写的,大二下学期的上机实习作业,请参考~...
民航订票系统,是使用c语言编写的,大二下学期的上机实习作业,请参考~-CAD booking system is the use of language c prepared in the next semester sophomore on the plane internship operations, please refer to
- 2022-10-05 11:35:03下载
- 积分:1
-
renowned Cleveland ergodic process
著名的骑士遍历程序-renowned Cleveland ergodic process
- 2022-01-25 23:37:23下载
- 积分:1
-
Determine the background of an image, llowing extract foreground objects
Determine the background of an image, llowing extract foreground objects
- 2022-02-21 09:08:00下载
- 积分:1
-
用C语言编写的约瑟夫环等问题.用链式存储实现!
用C语言编写的约瑟夫环等问题.用链式存储实现!-C language of Josephus and other issues. Chain store used to achieve!
- 2022-01-26 06:44:01下载
- 积分:1
-
- 2022-06-02 11:07:28下载
- 积分:1
-
QT编写的C++贪吃蛇小游戏
游戏通过按键控制
部分代码:
#include "gamewidget.h"
#define ROW 13
#define COL 16
#define UP 0
#define DOWN 1
#define LEFT 2
#define RIGHT 3
GameWidget::GameWidget(QWidget *parent)
:QWidget(parent)
{
this->setAutoFillBackground(true);//覆盖
this->resize(480,270);
this->setWindowIcon(QIcon("img/icon.jpg"));
this->setWindowTitle("贪吃蛇");
QPalette palette;
palette.setBrush(QPalette::Background,QBrush((QPixmap)"img/bjt.png"));
this->setPalette(palette);
//按扭区
leftbtn=new QPushButton(this);
leftbtn->setIcon((QIcon)"img/zuo.png");
leftbtn->setIconSize(QSize(40,40));
leftbtn->setGeometry(QRect(340,180,40,40));
leftbtn->setFlat(true);
rightbtn=new QPushButton(this);
rightbtn->setIcon((QIcon)"img/you.png");
rightbtn->setIconSize(QSize(40,40));
rightbtn->setGeometry(QRect(430,180,40,40));
rightbtn->setFlat(true
- 2022-03-21 19:09:00下载
- 积分:1