Data structures and algorithms
-
The paper will present the design of techniques for building an application for testing and evaluating knowledge in the Data Structures and Algorithms course. This application will be a useful tool for both instructors and students, thereby enhancing the quality of teaching and learning in Information Technology-related subjects.
10p viling 11-10-2024 1 0 Download
-
Timely monitoring the large-scale civil structure is a tedious task demanding expert experience and significant economic resources. Towards a smart monitoring system, this study proposes a hybrid deep learning algorithm aiming for structural damage detection tasks, which not only reduces required resources, including computational complexity, data storage but also has the capability to deal with different damage levels.
12p vifilm 24-09-2024 3 1 Download
-
This study proposes a novel and efficient surrogate model for performing truss analysis based on graph theory and deep learning algorithms, which is applicable for various truss topologies with different load scenarios without requiring retraining as other Deep Learning (DL)-based counterparts.
11p vifaye 20-09-2024 4 1 Download
-
Bài giảng Cấu trúc dữ liệu và giải thuật (Data Structures and Algorithms) - Chương 1: Cấu trúc dữ liệu và giải thuật. Nội dung chính của chương gồm có: Mối quan hệ giữa cấu trúc dữ liệu và giải thuật, các cách diễn đạt giải thuật, thiết kế và đánh giá giải thuật, giải thuật đệ quy. Mời các bạn cùng tham khảo.
42p runthenight09 15-05-2023 15 6 Download
-
Bài giảng Cấu trúc dữ liệu và giải thuật (Data Structures and Algorithms) - Chương 2: Mảng và danh sách. Nội dung chính của chương gồm có: Mảng, danh sách, cấu trúc ngăn xếp (stack), cấu trúc hàng đợi (queue). Mời các bạn cùng tham khảo!
19p runthenight09 15-05-2023 17 6 Download
-
Bài giảng Cấu trúc dữ liệu và giải thuật (Data Structures and Algorithms) - Chương 3: Danh sách liên kết. Nội dung chính của chương gồm có: Giới thiệu về danh sách liên kết, danh sách liên kết đơn, danh sách liên kết vòng, danh sách liên kết kép, cài đặt ngăn xếp và hàng đợi bằng cấu trúc lưu trữ phân tán. Mời các bạn cùng tham khảo!
27p runthenight09 15-05-2023 22 5 Download
-
Bài giảng Cấu trúc dữ liệu và giải thuật (Data Structures and Algorithms) - Chương 0: Giới thiệu môn học. Chương này giới thiệu nội dung chính của môn học Cấu trúc dữ liệu và giải thuật (Data Structures and Algorithms) gồm 9 chương như sau: Chương 1: cấu trúc dữ liệu và giải thuật, chương 2: mảng và danh sách, chương 3: danh sách liên kết, chương 4: cây, chương 5: đồ thị, chương 6: giải thuật sắp xếp, chương 7: giải thuật tìm kiếm. Mời các bạn cùng tham khảo.
3p runthenight09 15-05-2023 7 4 Download
-
Bài giảng Cấu trúc dữ liệu và giải thuật (Data Structures and Algorithms) - Chương 4: Cây. Nội dung chính của chương gồm có: Định nghĩa và khái niệm, cây nhị phân, cây tổng quát, ứng dụng. Mời các bạn cùng tham khảo!
21p runthenight09 15-05-2023 17 4 Download
-
Bài giảng Cấu trúc dữ liệu và giải thuật (Data Structures and Algorithms) - Chương 6: Giải thuật sắp xếp. Nội dung chính của chương gồm có: Sắp xếp chọn (Selection Sort), Sắp xếp chèn (Insert Sort), Sắp xếp nổi bọt (Bubble Sort), Sắp xếp nhanh (Quick Sort), Sắp xếp vun đống (Heap Sort), Sắp xếp trộn (Merge Sort). Mời các bạn cùng tham khảo!
22p runthenight09 15-05-2023 17 4 Download
-
Bài giảng Cấu trúc dữ liệu và giải thuật (Data Structures and Algorithms) - Chương 5: Đồ thị. Nội dung chính của chương gồm có: Các khái niệm, biểu diễn đồ thị, phép duyệt đồ thị, cây khung và cây khung với giá trị cực tiểu, bài toán tìm đường đi ngắn nhất. Mời các bạn cùng tham khảo!
17p runthenight09 15-05-2023 13 3 Download
-
Bài giảng Cấu trúc dữ liệu và giải thuật (Data Structures and Algorithms) - Chương 7: Giải thuật tìm kiếm. Nội dung chính của chương gồm có: Bài toán tìm kiếm, tìm kiếm tuần tự (sequential searching), tìm kiếm nhị phân trên mảng, tìm kiếm nhị phân trên cây. Mời các bạn cùng tham khảo!
13p runthenight09 15-05-2023 14 4 Download
-
Lecture Data Structures: Lesson 26 provide students with knowledge about huffman encoding; to understand Huffman encoding, it is best to use a simple example; encoding the 32-character phrase: "traversing threaded binary trees"; repeat the process down the left and right subtrees;...
30p hanthienngao 15-04-2022 18 2 Download
-
Lecture Data Structures: Lesson 32 provide students with knowledge about heap code in C++; buildheap in linear time; how buildHeap a linear time algorithm; complete binary tree; marking the left edges for height 1 nodes; marking the first left edge and the subsequent right edge for height 2 nodes;...
16p hanthienngao 15-04-2022 16 2 Download
-
Lecture Data Structures: Lesson 31 provide students with knowledge about buildheap; the general algorithm is to place the N keys in an array and consider it to be an unordered binary tree; the following algorithm will build a heap out of N keys;...
16p hanthienngao 15-04-2022 13 1 Download
-
Lecture Data Structures: Lesson 33 provide students with knowledge about priority queue using heap; the selection problem; a faster way is to put the N elements into an array and apply the buildHeap algorithm on this array; disjoint set ADT;...
14p hanthienngao 15-04-2022 19 1 Download
-
Lecture Data Structures: Lesson 40 provide students with knowledge about skip list: formally; skip list: search; repeatedly toss a coin until we get tails, and we denote with i the number of times the coin came up heads; skip list: insertion; randomized algorithms;...
11p hanthienngao 15-04-2022 12 1 Download
-
Lecture Data Structures: Lesson 45 provide students with knowledge about divide and conquer; binary search; mergesort; splits the list in half; mergesorts the two halves; merging animation; mergesort the right half; merge sort and linked lists;...
54p hanthienngao 15-04-2022 13 2 Download
-
The investigation of magnetic field strength variations over subterranean layers may reveal their locations on Earth’s surface and provide physical and geometrical characteristics. Magnetic studies were carried out around Gölcük caldera lake using proton magnetometers to identify subsurface volcanic structures. The acquired data were inverted using four different edge detection algorithms such as analytic signal, tilt angle, theta map, horizontal gradient. Afterwards, the results were used to determine the locations of the anomalous structures.
17p tanmocphong 29-01-2022 14 1 Download
-
Goals of the dissertation: This thesis focuses on studying and developing meta-heuristic optimization methods and combines them with the Artificial Neural Network, which has advantages in approximating data, to build up a new algorithm for solving composite material structural optimization problems.
136p monsterhunterer 20-06-2021 8 2 Download
-
Bài giảng Cấu trúc dữ liệu và giải thuật (Data structures and Algorithms) gồm có 4 chương với những nội dung chi tiết sau: Chương 1 - Cấu trúc dữ liệu và giải thuật, chương 2 - mảng và danh sách, chương 3 - danh sách liên kết, chương 4 - giải thuật sắp xếp và tìm kiếm đơn giản. Mời các bạn cùng tham khảo.
2p tradaviahe16 23-02-2021 44 3 Download