Evgenii Legotckoi
Evgenii LegotckoiJuly 8, 2017, 5:31 a.m.

C++ - Tutorial 006. Structures

Одним из первых шагов в построении новых типов данных является организация данных в структуре, объединяющая несколько различных переменных с разными типами данных. Объявления структуры с помощью ключевого слова struct .

Например, объявим структуру Vector , в котором будет храниться указатель на начало массива элементов типа double и переменная с количеством этих элементов.

struct Vector {
    int sz;       // Number of elements
    double∗ elem; // Pointer to elements
};

A variable of type Vector can be declared in the code as follows:

Vector v;

However, this declaration is not useful in itself, since it is necessary to initialize this structure with some array of elements with a given number of elements. We can do this with the following function.

void vector_init(Vector& v, int s)
{
    v.elem = new double[s]; // Allocating memory for an array of elements
    v.sz = s;
}

In this function, a reference to the Vector object and the number of elements that need to initialize this vector are passed as arguments. Since an object of type Vector is passed as a non-constant object, then we can modify it.

The new operator allocates memory in a so-called free storage (dynamic memory or a simple heap).

The simple use of Vector looks like this:

double read_and_sum(int s)
    // Reading integers from standard input to return their sum, consider s positive
{
    Vector v;
    vector_init(v,s); // Allocate memory for s elements for v
    for (int i=0; i!=s; ++i)
        cin>>v.elem[i]; // Read data into an array of elements

    double sum = 0;
    for (int i=0; i!=s; ++i)
        sum+=v.elem[i];  // Summarize all the elements
    return sum;
}

There is still a long way to go before the Vector becomes flexible and elegant, like a vector from a standard library.

To access the structure elements, you can use the dot ( dot . ) If access using a name or link is used, or -> if access is through a pointer. For example:

void f(Vector v, Vector& rv, Vector∗ pv)
{
    int i1 = v.sz; // access through name
    int i2 = rv.sz; // access through reference
    int i4 = pv−>sz; // access through pointer
}
We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

Comments

Only authorized users can post comments.
Please, Log in or Sign up
AD

C ++ - Test 004. Pointers, Arrays and Loops

  • Result:50points,
  • Rating points-4
m

C ++ - Test 004. Pointers, Arrays and Loops

  • Result:80points,
  • Rating points4
m

C ++ - Test 004. Pointers, Arrays and Loops

  • Result:20points,
  • Rating points-10
Last comments
ИМ
Игорь МаксимовNov. 23, 2024, 12:51 a.m.
Django - Tutorial 017. Customize the login page to Django Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
Evgenii Legotckoi
Evgenii LegotckoiNov. 1, 2024, 2:37 a.m.
Django - Lesson 064. How to write a Python Markdown extension Добрый день. Да, можно. Либо через такие же плагины, либо с постобработкой через python библиотеку Beautiful Soup
A
ALO1ZEOct. 19, 2024, 8:19 p.m.
Fb3 file reader on Qt Creator Подскажите как это запустить? Я не шарю в программировании и кодинге. Скачал и установаил Qt, но куча ошибок выдается и не запустить. А очень надо fb3 переконвертировать в html
ИМ
Игорь МаксимовOct. 5, 2024, 7:51 p.m.
Django - Lesson 064. How to write a Python Markdown extension Приветствую Евгений! У меня вопрос. Можно ли вставлять свои классы в разметку редактора markdown? Допустим имея стандартную разметку: <ul> <li></li> <li></l…
d
dblas5July 5, 2024, 11:02 p.m.
QML - Lesson 016. SQLite database and the working with it in QML Qt Здравствуйте, возникает такая проблема (я новичок): ApplicationWindow неизвестный элемент. (М300) для TextField и Button аналогично. Могу предположить, что из-за более новой верси…
Now discuss on the forum
m
moogoNov. 22, 2024, 8:17 p.m.
Mosquito Spray System Effective Mosquito Systems for Backyard | Eco-Friendly Misting Control Device & Repellent Spray - Moogo ; Upgrade your backyard with our mosquito-repellent device! Our misters conce…
Evgenii Legotckoi
Evgenii LegotckoiJune 25, 2024, 3:11 a.m.
добавить qlineseries в функции Я тут. Работы оень много. Отправил его в бан.
t
tonypeachey1Nov. 15, 2024, 7:04 p.m.
google domain [url=https://google.com/]domain[/url] domain [http://www.example.com link title]
NSProject
NSProjectJune 4, 2022, 3:49 p.m.
Всё ещё разбираюсь с кешем. В следствии прочтения данной статьи. Я принял для себя решение сделать кеширование свойств менеджера модели LikeDislike. И так как установка evileg_core для меня не была возможна, ибо он писался…

Follow us in social networks