-
Polynomial
Develop class Polynomial. The internal representation of a Polynomial is an array of terms. Each term contains a coefficient and an exponent. The term
2x4
has the coefficient 2 and the exponent 4. Develop a complete class containing proper constructor and destructor functions as well as set and get functions. The class should also provide the following overloaded operator capabilities:
Overload the addition operator (+) to add two Polynomials.
Overload the subtraction operator (-) to subtract two Polynomials.
Overload the assignment operator to assign one Polynomial to another.
Overload the multiplication operator (*) to multiply two Polynomials.
Overload the addition assignment operator (+=), subtraction assignment operator (-=), and multiplication assignment operator (*=).
- 2013-05-05 21:59:33下载
- 积分:1
-
Bluepilling-the-Xen.pdf
Bluepilling the Xen
Hypervisor
Joanna Rutkowska & Alexander Tereshkin
Invisible Things Lab
- 2014-10-24 05:30:35下载
- 积分:1
-
eluosifangkuai
这是一款基于C#语言的模拟俄罗斯方块的源码,游戏背景及关卡都可以自己设置(This is a simulation language based on C# source code for Tetris, the game background and can set up their own checkpoints)
- 2011-05-29 00:43:49下载
- 积分:1
-
实体类互相赋值
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace GPS.Common
{
///
/// BeanUtils提供用于拷贝对象中的具体字段的值的方法
///
public class BeanUtils
{
///
/// 把源对象里的各个字段的内容直接赋值给目标对象(只是字段复制,两个对象的字段名和类型都必须一致)
///
/// 目标对象
/// 源对象
public static void CopyObject( object src,ref object dest)
{
&
- 2022-10-20 05:35:03下载
- 积分:1
-
HalconDemo
迈德威视相机SDK的Demo应用程序,基于windows C#编程开发(Ahmed Weishi camera SDK Demo program)
- 2020-11-26 09:29:31下载
- 积分:1
-
zuixiaoshengchengshu
最小生成树,分克鲁斯卡尔和Prim两种方法,离散数学程序之一。(Minimum Spanning Tree, Kruskal and Prim points two ways, one of discrete mathematics procedures.)
- 2008-06-03 21:38:21下载
- 积分:1
-
IDAPro
IDA反汇编软件的中文帮助手册,对IDA初步接触者有很大帮助。好不容易找到的IDA的中文帮助手册,希望能给大家带来帮助。(IDA disassembler software, the Chinese help manual for IDA initial contact of much help. IDA finally found the Chinese to help manual, want to give us some help.)
- 2020-07-02 16:00:02下载
- 积分:1
-
4x4keyboardscan
C语言编程,4X4键盘扫描程序,可以直接使用到51单片机中(C language programming, 4X4 keyboard scanner can be used directly in the 51 SCM)
- 2009-04-30 14:56:43下载
- 积分:1
-
STM32_HMC5883_Lib
HMC5883L STM32驱动代码,采用I2C总线进行通信的。(HMC5883L STM32 driver code, using the I2C bus communication.)
- 2014-01-08 23:03:30下载
- 积分:1
-
VPNClient
软件名称:VPN客户端软件
版本号:1.0
开发环境:VS2010
开发语言:C++
功能描述:
1、一键式创建VPN连接
2、自动选择VPN类型(PPTP、L2TP、SSTP、IKEv2)
3、断线重拨
*完美支持WINXP、WIN7、WIN2003
*采用SkinH做界面,看上去很帅。
————————–华丽的分割线————————————————-
网上有很多VPN客户端源代码,但是普遍存在问题,例如在WINXP下运行正常,但是到WIN7下就会报错,各种问题层出不穷,所以我对代码进行了改良。(Software Name: VPN client software version number: 1.0 development environment: VS2010 development languages: C++ Description: 1, one button to create a VPN connection 2, automatically select the type of VPN (PPTP, L2TP, SSTP, IKEv2) 3, reconnection dial* perfect support WINXP, WIN7, WIN2003* using SkinH do interface looks very handsome.--------- Gorgeous split line----------------- There are many online VPN client source code, but common problems, such as running under normal WINXP But the next error will WIN7 various problems emerging, so I modified the code of the.)
- 2014-06-19 11:28:55下载
- 积分:1