当前位置:
首页 资源下载
搜索资源 - container s-function
搜索资源列表
-
0下载:
Objective
This topic describes how to create a windowed application that will share the display with other applications.
Requirements
Brew® MP windowed applications need to be written differently than traditional Brew MP applications.
-
-
1下载:
此源程序为解决一维集装箱装载问题,但是为二维和三维算法提供了很好的思路。-This source code to solve one-dimensional container loading problem, but for the two-dimensional and three-dimensional algorithm provides a very good idea.
-
-
1下载:
最优装载方案
成绩: 0 / 折扣: 0.8
试设计一个用队列式分支限界法搜索子集空间树的函数。该函数的参数包括结点可行性判定函数和上界函数等必要的函数,并将此函数用于解装载问题。
装载问题描述如下:有一批共n个集装箱要装上艘载重量为c的轮船,其中集装箱i的重量为wi 。找出一种最优装载方案,将轮船尽可能装满,即在装载体积不受限制的情况下,将尽可能重的集装箱装上轮船。
输入:第一行有2个正整数n和c。n是集装箱数,c是轮船的载重量
接下来的1行中有n个正整数,表示集装箱的重量
-
-
0下载:
Sure, the STL has iterators, algorithms, and function objects, but for most C++ programmers, it s the containers that stand out. More powerful and flexible than arrays, they grow (and often shrink) dynamically, manage their own memory, keep track of
-
-
0下载:
泛型函数:
总结:使用标准模板库 (STL)
C++标准库提供了更为安全,更为灵活的数据集处理方式。
STL的最主要的两个特点:数据结构和算法的分离,非面向对象本质。
访问对象是通过象指针一样的迭代器实现的;容器是象链表,矢量之类的数据结构,并按模板方式提供;
算法是函数模板,用于操作容器中的数据。由于STL以模板为基础,所以能用于任何数据类型和结构。-Generic function: Summary: Using the Standard Template Library
-
-
0下载:
Spring框架的作用和好处
Spring框架提供了一个容器,该容器可以管理应用程序的组件,还提供了IoC和AoP机制,实现组件之间解耦,提高程序结构的灵活性,增强系统的可维护和可扩展性。
在SSH整合开发中,利用Spring管理Service、DAO等组件,利用IoC机制实现Action和Service,Service和DAO之间低耦合调用。利用AoP机制实现事务管理、以及共通功能的切入等。
功能是整合,好处是解耦。-The role and benefits of the
-