CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - array class
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - array class - List
[
Software Engineering
]
c_zhizhen
DL : 0
c语言中的指针专题 一、数组的指针、指针数组以及指向指针的指针 二、函数指针、函数的指针参数以及返回指针的函数 三、类成员的指针 -c language pointer thematic one, the array pointer, pointer array, as well as indicators point to the second pointer, function pointer, function pointer parameters and return a function pointer III class member pointer
Date
: 2026-01-19
Size
: 14kb
User
:
yellow
[
Software Engineering
]
Calculatorcode
DL : 0
Java程序计算器是:图形界面与数学计算相结合。图形界面的实现:考虑到按钮多而易混的问题,就选择了用数组来完成实现,在数字进行运算时,考虑的我们一般的计算器都是通过按按钮显示数字的,所以要有个类来获得按钮上的数字,由此可知还需要一个获得按钮上的运算符号,获得数字和运算符号上的按钮是放在链表里的,通过链表的节点不同来识别是数字还是运算符号,一般是第一个节点里存放的数字是第一个参加运算的数,第二个是放的运算符号,第三个是放的第二个参加运算的数,程序设计的优点是:条理清晰,容易理解,容易修改。这样设计的缺点是:不能很好的体现java的面向对象的特点。-Calculator Java program are: a graphical interface with a combination of mathematical calculations. Implementation of the graphical interface: buttons, taking into account the many questions and易混, on the choice of finish with the array to achieve, to carry out operations in the figure, the Administration will consider all our ordinary calculator by pressing the button to show the figure, so there must be a Class to get the button on the figure, can be seen also required to receive the button on the operator symbols, figures and symbols on the button operations on the list are in, and through the node list to identify a number of different computing or symbols generally is the first storage node in the figure is the first take part in several operations, the second is putting the symbol of the operator, the third place are the second take part in several operations, the merits of program design are: the clarity of easy to understand, easy to modify. Disadvantage of this design are: jav
Date
: 2026-01-19
Size
: 9kb
User
:
邓彭成
[
Software Engineering
]
HuWeiBianchengGuifanPeixunYulianxi
DL : 0
华为软件编程规范培训实例与练习 一、逻辑类代码问题 1、变量/指针在使用前就必须初始化 2、防止指针/数组操作越界... -Huawei software programming examples and exercises a standardized training, the logic class code problem 1, the variable/pointer must be initialized before use 2, to prevent the pointer/array of operating cross-border ...
Date
: 2026-01-19
Size
: 345kb
User
:
newuserid
[
Software Engineering
]
java
DL : 0
java基础的PPT,包含源代码,对有关类.输入输出.界面设计.数组应用等作了详细介绍-java-based PPT, contains the source code for the class. input and output. interface design. array of applications are described in detail
Date
: 2026-01-19
Size
: 539kb
User
:
艾枫
[
Software Engineering
]
3
DL : 0
/编写一个程序,输入N个学生数据,包括学号、姓名、成绩,要求输出这些学生数据并计算平均分。 //要求: //设计一个学生类Stud,除了包括no(学号)、name(姓名)和deg(成绩)数据成员外,有两个静态变量 // sum和num,分别存放总分和人数,另有两个普通成员函数setdata()和disp(),分别用于给数据成 // 员赋值和输出数据成员的值,另有一个静态成员函数avg(),它用于计算平均分。在main()函数中 // 定义了一个对象数组用于存储输入的学生数据。-/ Write a program, enter N student data, including Student ID, name, accomplishments, these students require the output data and calculate the average.// Requirements:// design a class of students Stud, in addition, including no (Student ID), name (name), and deg (results) data members, there are two static variables// sum and num, respectively, the total score and the number of storage , and another two ordinary member functions setdata () and disp (), respectively, to the data used as// staff assignment and the members of the value of the output data, while a static member function avg (), it is used to calculate the average. In the main () function// define an array of objects used to store student data input.
Date
: 2026-01-19
Size
: 1kb
User
:
钟文
[
Software Engineering
]
vcPP
DL : 0
数组得类模板设计之:实现功能PushBack(Tt)向数组中追加元素。 -Class template array was designed: to achieve functional PushBack (Tt) added to the array elements.
Date
: 2026-01-19
Size
: 4kb
User
:
丁辉
[
Software Engineering
]
fortran.rar
DL : 0
Fortran矩阵 在FORTRAN 90中,陣列的使用方法有很大的改進,增加許多新的功能:然而我們上課所應用的g77沒有支援這些新功能,所以在本章中有關陣列的介紹仍以FORTRAN 77為根據,本章所介紹的方法在FORTRAN 90中仍然可以使用,Fortran matrix in FORTRAN 90, use of the array is a considerable improvement, adding many new features: class applications, however g77 does not support these new features, so in this chapter about the introduction of the array is still FORTRAN 77 according to , the method described in this chapter can still use the FORTRAN 90
Date
: 2026-01-19
Size
: 54kb
User
:
rocky
[
Software Engineering
]
cPP
DL : 0
C++学习资料 包括C++动态数组 C++类模版和链表结构-C++ learning materials including C++ dynamic array C++ of class template and linked list structure
Date
: 2026-01-19
Size
: 3.36mb
User
:
KK
[
Software Engineering
]
Polynomial
DL : 0
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 (*=).
Date
: 2026-01-19
Size
: 4.45mb
User
:
howard
[
Software Engineering
]
C
DL : 0
1.1 C基础知识 1 1.2 函数与头文件 2 1.3 C预处理器 3 1.4 将一个字符转换为long型 4 1.5 strcpy函数 4 1.6 assert用法 5 1.7 itoa函数和atoi函数 6 1.8 strcmp函数实现 8 1.9 strcpy函数实现 9 1.10 memcpy函数实现 10 1.11 memcpy和memmove函数的实现 11 1.12 strcat函数实现 13 1.13 使用库函数atoi,将char *→int 13 1.14 使用库函数itoa,将int→char * 14 1.15 不使用库函数,将int→char * 14 1.16 不使用库函数,将char *→int 15 1.17 求两个整数的最大公约数 16 1.18 Little_endian or Big_endian 17 1.19 sizeof与strlen的区别 19 1.20 实现String类的BIG_FOUR 19 1.21 struct和union的区别 20 1.22 char字符变量与int整型数据 22 1.23 字,字节,字符,比特 23 1.24 空格、空字符、字符数组结束符的区别 25-1.1 C Basics 1 1.2 Functions and header files 2 1.3 C preprocessor 3 1.4 will be a long-type characters into four 1.5 strcpy function 4 1.6 assert usage 5 1.7 itoa function and atoi function 6 1.8 strcmp function to achieve 8 1.9 strcpy function to achieve 9 1.10 memcpy function to achieve 10 Achieve 11 1.11 memcpy and memmove function 1.12 strcat function to achieve 13 1.13 using the library function atoi, the char* → int 13 1.14 using the library function itoa, the int → char* 14 1.15 does not use the library function, int → char* 14 1.16 does not use the library function, char* → int 15 1.17 find the greatest common divisor of two integers 16 1.18 Little_endian or Big_endian 17 Difference 1.19 sizeof and strlen 19 1.20 realize BIG_FOUR String class 19 Difference 1.21 struct and union of 20 1.22 char and int integer variable character data 22 1.23 word, byte, character, bit 23 Difference 1.24 spaces, null characters, character array termi
Date
: 2026-01-19
Size
: 139kb
User
:
唐进
[
Software Engineering
]
ExtendsDemo
DL : 0
* 继承关系 * 1.子类继承父类的属性和方法,父类的属性和方法被所有子类共享 * 2.子类多种多样,子类是多态的 * 业务案例:四格方块(Tetromino)有七种(I,J,L,S,Z,T,O) * 实现方式: * 利用继承关系实现,其中四格方块是父类,七种方块是 * 子类,在父类定义四格数组的属性,子类就自动继承了 * 四格属性。 * 定义四格方块类(Tetronimo),属性:4格子,方法:下落 * 子类型继承4格方块类的属性和方法 * 子类型每个方块都不同,所以要在子类添加构造器以便以初始化格子位置-* Inheritance* properties and methods 1. subclass inherits the parent class, properties and methods of the parent class is shared by all subclasses* 2. subclass diverse subclass is polymorphic* Business case: four grid squares ( Tetromino) There are seven (I, J, L, S, Z, T, O)* implementations:* use inheritance to achieve, which is the parent class four grid squares or seven square is* a subclass is defined in the parent class Properties fourfold array subclass automatically inherits* fourfold property.* Define a four-frame box type (Tetronimo), attribute: 4 lattice method: Drop* subtype inherits the properties and methods of the class* 4 grid squares subtype each box is different, so you want to add to the subclass constructor to initialize grid position
Date
: 2026-01-19
Size
: 1kb
User
:
Kevin
[
Software Engineering
]
ojbyhw
DL : 0
1.本文代码仅保证在visual studio 2005上运行通过! 2.高亮的题目为华为机试第三题左右难度。 3.本文的字符串基本运用C++里的string类,很少使用常规字符数组形式。 华为华东地区笔试/机试必备考题库。 -1. This code is only guaranteed in visual studio 2005 run through! 2. Highlight entitled Huawei third question about the difficulty of the test machine. 3. In this paper, the basic use of a string in C++ string class, rarely used in the form of a conventional array of characters. Huawei East written/exam test machine test necessary.
Date
: 2026-01-19
Size
: 46kb
User
:
s
[
Software Engineering
]
C_Sharp_-Part-2---Class-Dan-Array
DL : 0
learning Array on C#
Date
: 2026-01-19
Size
: 202kb
User
:
harry
[
Software Engineering
]
wygey
DL : 0
通过虚拟阵元进行DOA估计,包含优化类的几个简单示例程序,部分实现了追踪测速迭代松弛算法。- Conducted through virtual array DOA estimation, Optimization class contains several simple sample programs, Partially achieved tracking speed iterative relaxation algorithm.
Date
: 2026-01-19
Size
: 4kb
User
:
赵士胜
[
Software Engineering
]
jvfbt
DL : 0
汽车课设货车Matlab驱动力图程序,本程序的性能已经达到较高水平,相控阵天线的方向图(切比雪夫加权)。- Car class-based truck driver trying to Matlab program, The performance of the program has reached a high level, Phased array antenna pattern (Chebyshev weights).
Date
: 2026-01-19
Size
: 3kb
User
:
王丹
[
Software Engineering
]
kfcyp
DL : 0
包含优化类的几个简单示例程序,实现了对10个数字音的识别,阵列信号处理的高分辨率估计。- Optimization class contains several simple sample programs, To achieve the recognition of 10 digital sound, High-resolution array signal processing estimates.
Date
: 2026-01-19
Size
: 4kb
User
:
张帅华
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.