Evgenii Legotckoi
Evgenii LegotckoiApril 22, 2019, 2:13 a.m.

AlgorithmsLinked list operations

OTUS, Алгоритм

This article is dedicated to the launch of the course "Algorithms for Developers" from OTUS. I express my gratitude for the support of the resource by this company.

Let's explore what operations can be performed on a linked list.

Two …

Read
Ruslan Polupan
Ruslan PolupanApril 11, 2019, 6:01 a.m.

QtQCheckBox as QTableView delegate

Delegate, qcheckbox, qcheckbox center, QTableView

Good day.
There was a need to use a delegate to display QCheckBox in the table (to select objects from the list for subsequent work with them).
In order to deal with the delegates, I created a small project.
At …

Read
Lila25mila
Lila25milaApril 8, 2019, 3:44 a.m.

AlgorithmsLinked list types - singly linked, doubly linked and circular

Типы связанного списка, алгоритм

There are three common types of linked list.

  • Single linked list
  • doubly linked list
  • Circular linked list

Single linked list

This is the most common. Each node has data and a pointer to the next node.

Where the address of …

Read
Lila25mila
Lila25milaApril 5, 2019, 4:26 a.m.

AlgorithmsLinked list

алгоритм, связанный список, сортировка

In this tutorial, you will learn about the linked list and its applications. You will also learn how to create and perform various linked list operations.


In the Treasure Hunt game, you start by looking for the first clue. When …

Read
Evgenii Legotckoi
Evgenii LegotckoiMarch 25, 2019, 10:32 a.m.

LinuxRecursive setting permissions on all directories and files through the terminal

Bash, bash

Note, not to forget, how quickly through the terminal to set recursively 755 access to directories and 644 files.


Sometimes you have to adjust the access rights to files and directories on the server, well, there when updating, moving. And …

Read
Evgenii Legotckoi
Evgenii LegotckoiMarch 22, 2019, 11:34 a.m.

QtQt - Undocumented QMake - Copying Files

Qt, undocumented, QMake

Qt is quite a large framework and it constantly introduces functionality, which unfortunately either do not have time to document or forget to document.

For example, besides the QQuickItem documentation, I highly recommend watching the sources, or at least the …

Read
Lila25mila
Lila25milaMarch 20, 2019, 6:25 a.m.

AlgorithmsCircular Queue

сортировка, круговая очередь, алгоритмы

The circular queue avoids wasting space in the usual implementation of a queue using arrays.


DeQueue - removing an element from the queue;
FRONT and REAR are two pointers used to keep track of the first and last elements in …

Read
Lila25mila
Lila25milaMarch 15, 2019, 4:22 a.m.

AlgorithmsQueue

очередь, сортировка, Queue, алгоритмы

A queue is a useful data structure in programming. Imagine a queue of tickets outside of a movie theater where the first person to enter the queue is the first person to receive a ticket.


The queue follows the First …

Read
Evgenii Legotckoi
Evgenii LegotckoiMarch 13, 2019, 4:15 a.m.

DjangoHosting for sites. Review of the German provider Fornex

hosting, хостинг

Сегодня мы познакомимся с ещё одним хостингом, который попал в поле моего зрения.

Это европейский хостинг Fornex , который предоставляет следующие услуги:

  • SSD Хостинг
  • Выделенный сервер
  • SSD VPS
  • Бэкап
  • VPN
  • И еще много дополнительных услуг.

Я бы хотел обсудить в …

Read
Lila25mila
Lila25milaMarch 11, 2019, 5:28 a.m.

AlgorithmsStack

алгоритм, стек, сортировка

Stack concept

The stack is a useful data structure in programming. It's like a stack of plates stacked on top of each other.


Think about what you can do with such a bunch of plates:

  • Put a new plate on …
Read
Lila25mila
Lila25milaMarch 6, 2019, 3:49 a.m.

AlgorithmsMerge Sort Algorithm

алгоритм, сортировка слиянием, Merge Sort Algorithm, сортировка

Merge sort is a kind of divide and conquer algorithm in computer programming. It is one of the most popular sorting algorithms and a great way to build confidence in building recursive algorithms.


Divide and Conquer Strategy

Using the Divide …

Read
Lila25mila
Lila25milaMarch 4, 2019, 4:08 a.m.

QtUndocumented QMake

pro, QMake, Qt

Introduction

Qmake is a very powerful "meta-make" system that can be used to generate makefiles for different compilers and platforms from the same qmake project (.pro) file. Documentation for qmake has improved a lot since Qt3, but some information is …

Read
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. 22, 2024, 10:51 p.m.
Django - Tutorial 017. Customize the login page to Django Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
Evgenii Legotckoi
Evgenii LegotckoiNov. 1, 2024, 12:37 a.m.
Django - Lesson 064. How to write a Python Markdown extension Добрый день. Да, можно. Либо через такие же плагины, либо с постобработкой через python библиотеку Beautiful Soup
A
ALO1ZEOct. 19, 2024, 6:19 p.m.
Fb3 file reader on Qt Creator Подскажите как это запустить? Я не шарю в программировании и кодинге. Скачал и установаил Qt, но куча ошибок выдается и не запустить. А очень надо fb3 переконвертировать в html
ИМ
Игорь МаксимовOct. 5, 2024, 5:51 p.m.
Django - Lesson 064. How to write a Python Markdown extension Приветствую Евгений! У меня вопрос. Можно ли вставлять свои классы в разметку редактора markdown? Допустим имея стандартную разметку: <ul> <li></li> <li></l…
d
dblas5July 5, 2024, 9: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, 6: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, 1:11 a.m.
добавить qlineseries в функции Я тут. Работы оень много. Отправил его в бан.
t
tonypeachey1Nov. 15, 2024, 5:04 p.m.
google domain [url=https://google.com/]domain[/url] domain [http://www.example.com link title]
NSProject
NSProjectJune 4, 2022, 1:49 p.m.
Всё ещё разбираюсь с кешем. В следствии прочтения данной статьи. Я принял для себя решение сделать кеширование свойств менеджера модели LikeDislike. И так как установка evileg_core для меня не была возможна, ибо он писался…

Follow us in social networks