Basic data structures
-
Lecture Data Structures: Lesson 39 provide students with knowledge about searching an array: binary search; binary search – C++ code; binary search efficiency; overcome basic limitations of previous lists; fast searching of sorted chain; skip list representation;...
17p hanthienngao 15-04-2022 11 1 Download
-
Bài giảng Cấu trúc dữ liệu và giải thuật: Các khái niệm cơ bản có nội dung trình bày về kiểu dữ liệu (data type), kiểu dữ liệu cơ bản (basic data type), kiểu dữ liệu có cấu trúc (structured data type), kiểu dữ liệu trừu tượng (ADT – abstract data type),... Mời các bạn cùng tham khảo chi tiết nội dung bài giảng!
23p bachdangky 16-09-2021 46 3 Download
-
This chapter presents the following content: Basic definitions, example of a database, typical DBMS functionality, main characteristics of the database approach, database users, workers behind the scene,...
12p nanhankhuoctai10 23-07-2020 25 4 Download
-
This chapter presents the following content: Cubic spline interpolation, multidimensional interpolation, curve fitting, linear regression, polynomial regression, the polyval function, the interactive fitting tools, basic curve fitting, curve fitting toolbox, numerical integration.
32p nanhankhuoctai10 23-07-2020 27 2 Download
-
Chapter 3 - Structured Query Language. After completing this unit, you should be able to: Learn basic SQL statements for creating database structures, learn SQL statements to add data to a database, learn basic SQL SELECT statements and options for processing a single table, learn basic SQL SELECT statements for processing multiple tables with subqueries,...
46p tangtuy17 11-07-2016 45 2 Download
-
This chapter summarize the operation of Ethernet as defined for 100/1000 Mbps LANs in the IEEE 802.3 standard. Explain the functions that enable a switch to forward Ethernet frames in a LAN. Configure a switch for operation in a network designed to support voice, video, and data transmissions. Configure basic security on a switch that will operate in a network designed to support voice, video, and data transmissions.
163p youcanletgo_01 04-01-2016 61 5 Download
-
Chapter 4 (Part II) - Enhanced Entity-Relationship and UML modeling include contens as: Fundamental principle of modeling, basic process of modeling, add constraints - structural/ semantic,...
29p kiepnaybinhyen_04 15-12-2015 75 2 Download
-
Objectives of Chapter 6: To review a short history of DES; to define the basic structure of DES; to describe the details of building elements of DES; to describe the round keys generation process; to analyze DES.
11p levuphongqn 18-08-2015 59 3 Download
-
Bài giảng Cấu trúc dữ liệu & thuật toán - Chương 3: Các cấu trúc dữ liệu cơ bản (Basic data structures) giới thiệu về các khái niệm, mảng, danh sách, ngăn xếp và hàng đợi. Bài giảng do Nguyễn Đức Nghĩa thực hiện. Mời bạn đọc cùng tham khảo.
0p khangduybk 17-12-2014 491 166 Download
-
OpenCV (Open Source Computer Vision Library: http://opencv.org) is an open-source BSD-licensed library that includes several hundreds of computer vision algorithms. The document describes the so-called OpenCV 2.x API, which is essentially a C++ API, as opposite to the C-based OpenCV 1.x API. The latter is described in opencv1x.pdf. OpenCV has a modular structure, which means that the package includes several shared or static libraries.
819p hongphuoc8912 05-08-2013 494 249 Download
-
Experimental autoimmune encephalomyelitis can be induced in susceptible animals by immunodominant deter-minants of myelin basic protein (MBP). To characterize the molecular features of antigenic sites important for designing experimental autoimmune encephalomyelitis suppressing molecules, we report structural studies, based on NMR experimental data in conjunction with molecular dynamic simulations, of the potent linear dodecapeptide epitope of guinea pig MBP, Gln74-Lys75-Ser76-Gln77-Arg78-Ser79-Gln80-Asp81-Glu82-Asn83-Pro84-Val85 [MBP(74–85)], and its antagonist analogue Ala81MBP(74–85)....
15p awards 05-04-2013 54 3 Download
-
Stack ADTDEFINITION: A Stackof elements of type T is a finite sequence of elements of T, in which all insertions and deletions are restricted to one end, called the top. Stackis a Last In -First Out (LIFO) data structure.Basic operations: •Construct a stack, leaving it empty. •Pushan element. •Popan element. •Top an element.
31p trinh02 28-01-2013 83 5 Download
-
A Student’s Guide to the Study, Practice, and Tools of Modern Mathematics provides an accessible introduction to the world of mathematics. It offers tips on how to study and write mathematics as well as how to use various mathematical tools, from LaTeX and Beamer to Mathematica® and Maple™ to MATLAB® and R. Along with a color insert, the text includes exercises and challenges to stimulate creativity and improve problem solving abilities.
83p rose_12 06-12-2012 66 7 Download
-
Lexicographic Search Trees: Tries Multiway Trees B-Tree, B*-Tree, B+-Tree Red-Black Trees (BST and B-Tree) 2-d Tree, k-d Tree 1 .Basic Concepts 2 .Basic Concepts 3 .Trees
44p unknownno30 14-11-2012 54 4 Download
-
Binary Heap. Min-heap. Max-heap. Efficient implementation of heap ADT: use of array Basic heap algorithms: ReheapUp, ReheapDown, Insert Heap, Delete Heap, Built Heap d-heaps Heap Applications: Select Algorithm Priority Queues Heap sort Advanced implementations of heaps: use of pointers Leftist heap Skew heap Binomial queues
41p unknownno30 14-11-2012 77 2 Download
-
Tham khảo bài thuyết trình 'cse faculty - chapter 7 tree', công nghệ thông tin, kỹ thuật lập trình phục vụ nhu cầu học tập, nghiên cứu và làm việc hiệu quả
90p unknownno30 14-11-2012 59 3 Download
-
Contiguous Stack Applications of Stack .Linear List Concepts LIFO (Stack) .Stack ADT DEFINITION: A Stack of elements of type T is a finite sequence of elements of T, in which all insertions and deletions are restricted to one end, called the top. Stack is a Last In - First Out (LIFO) data structure. Basic operations: • Construct a stack, leaving it empty. • Push an element. • Pop an element. • Top an element.
31p unknownno30 14-11-2012 59 5 Download
-
What is an algorithm? The logical steps to solve a problem. What is a program? Program = Data structures + Algorithms (Niklaus Wirth) The most common tool to define algorithms. • English-like representation of the code required for an algorithm. Pseudocode = English + Code relaxed syntax being instructions using easy to read basic control structures (sequential, conditional, iterative)
49p unknownno30 14-11-2012 79 3 Download
-
Data Model: A set of concepts to describe the structure of a database, and certain constraints that the database should obey. Data Model Operations: Operations for specifying database retrievals and updates by referring to the concepts of the data model. Operations on the data model may include basic operations and user-defined operations.
34p thienthanoze 12-11-2012 102 10 Download
-
Model Test 1 LISTENING COMPREHENSION Part I: Picture Directions: In your test book, you will see a picture. On the compact disc, you will hear four statements. Choose the statement that most closely matches the picture and fill in the corresponding oval on your answer sheet. 1. Look at the picture marked number 1 in your test book. (A) The doctor is examining a patient. (B) The technician is working. √ (C) The chesmist is setting the meter. (D) The expert is logging new data. 2. Look at the picture marked number 2 in your test book. (A) Sympathy is visible in their faces. (B)...
18p peheo_4 20-09-2012 113 35 Download