وب سایت تخصصی شرکت فرین
دسته بندی دوره ها

The Complete Erlang Course: From Zero to Expert!

سرفصل های دوره

The modern Erlang course for everyone! Master Erlang with projects, challenges and theory. Many courses in one!


1 - Course Introduction
  • 1 - Introduction to Erlang
  • 2 - Installing Erlang on Linux
  • 3 - Installing Erlang on Windows
  • 4 - Installing Erlang on MacOS
  • 5 - Compiling in Erlang
  • Files.zip

  • 2 - Basic Fundamentals
  • 6 - Numbers
  • 6 - Numbers.pdf
  • 7 - Immutable-Variables.pdf
  • 7 - Inmutable Variables
  • 8 - Atoms
  • 8 - Atoms.pdf
  • 9 - Tuples
  • 9 - Tuples.pdf
  • 10 - Lists
  • 10 - Lists.pdf
  • 11 - Lists-Comprehensions.pdf
  • 11 - List Comprehensions

  • 3 - Modules
  • 12 - Introduction to Modules
  • 12 - Introduction-to-Modules.pdf
  • 13 - Creating Modules

  • 4 - Functions
  • 14 - Pattern Matching
  • 14 - Pattern-Matching.pdf
  • 14 - example.zip
  • 15 - Conditional Statements
  • 15 - Conditional-Statements.pdf
  • 16 - Recursion
  • 16 - Recursion.pdf

  • 5 - Solved Problems Functions
  • 17 - Problem 1 Square Roots and Squares
  • 17 - Problem-1-Functions.pdf
  • 18 - Problem 2 Special Prime Number
  • 18 - Problem-2-Functions.pdf
  • 19 - Problem 3 Stamps
  • 19 - Problem-3-Functions.pdf
  • 20 - Problem 4 Related Sum
  • 20 - Problem-4-Functions.pdf
  • 21 - Problem 5 Polynomial Evaluation
  • 21 - Problem-5-Functions.pdf
  • Files.zip

  • 6 - Solved Problems Lists
  • 22 - Problem 1 Last Element of a List
  • 22 - Problem-1-Lists.pdf
  • 23 - Problem 2 Penultime Object
  • 23 - Problem-2-Lists.pdf
  • 24 - Problem 3 Duplicate Elements
  • Files.zip

  • 7 - Higher Order Functions
  • 25 - Higher-Order-Functions.pdf
  • 25 - Introduction to Higher Order Functions
  • 26 - Anonymous Functions
  • 26 - Anonymous-Functions.pdf

  • 8 - Solved Problems Higher Order Functions
  • 27 - Problem 1 Equality Problem
  • 27 - Problem-1-Higher-Order-Functions.pdf
  • 28 - Problem 2 Product of Elements
  • 28 - Problem-2-Higher-Order-Functions.pdf
  • 29 - Problem 3 Even Result
  • 29 - Problem-3-Higher-Order-Functions.pdf
  • 30 - Problem 4 Infinite Powers of Two
  • 30 - Problem-4-Higher-Order-Functions.pdf
  • 31 - Problem 5 Scalar Product
  • 31 - Problem-5-Higher-Order-Functions.pdf
  • 32 - Problem 6 Flattening of Lists
  • 32 - Problem-6-Higher-Order-Functions.pdf
  • 33 - Problem 7 Length
  • 33 - Problem-7-Higher-Order-Functions.pdf
  • 34 - Problem 8 Reverse
  • 34 - Problem-8-Higher-Order-Functions.pdf
  • 35 - Problem 9 Occurrences
  • 35 - Problem-9-Higher-Order-Functions.pdf
  • 36 - Problem 10 First Word
  • 36 - Problem-10-Higher-Order-Functions.pdf
  • 37 - Problem 11 Conditional Count
  • 37 - Problem-11-Higher-Order-Functions.pdf
  • 38 - Problem 12 Combination of Applications
  • 38 - Problem-12-Higher-Order-Functions.pdf
  • Files.zip

  • 9 - Binary Trees
  • 39 - Introduction to Binary Trees
  • 39 - Introduction-to-Binary-Trees.pdf
  • 40 - Implementation of Binary Trees
  • 40 - Implementation-of-Binary-Trees.pdf
  • 40 - binary-tree.zip

  • 10 - Solved Problems Binary Trees
  • 41 - Problem 1 Size
  • 41 - Problem-1-Binary-Trees.pdf
  • 42 - Problem 2 Height
  • 42 - Problem-2-Binary-Trees.pdf
  • 43 - Problem 3 Equivalent Trees
  • 43 - Problem-3-Binary-Trees.pdf
  • 44 - Problem 4 Isomorphism
  • 44 - Problem-4-Binary-Trees.pdf
  • 45 - Problem 5 Preorder Traversal
  • 45 - Problem-5-Binary-Trees.pdf
  • 46 - Problem 6 Postorder Traversal
  • 46 - Problem-6-Binary-Trees.pdf
  • 47 - Problem 7 Inorder Traversal
  • 47 - Problem-7-Binary-Trees.pdf
  • 48 - Problem 8 Minimum Value
  • 48 - Problem-8-Binary-Trees.pdf
  • 49 - Problem 9 Path Sum
  • 49 - Problem-9-Binary-Trees.pdf
  • Files.zip

  • 11 - Graphs
  • 50 - Introduction to Graphs
  • 50 - Introduction-to-Graphs.pdf
  • 51 - Representation of a Graph
  • 51 - Representation-of-a-Graph.pdf
  • 52 - Implementation of Graphs
  • 52 - Implementation-of-Graphs.pdf
  • 52 - graph.zip

  • 12 - Graph Algorithms Introduction
  • 53 - Introduction to Graph Algorithms
  • 53 - Introduction-to-Graph-Algorithms.pdf
  • 54 - Graph Formalization Reading a Graph
  • 54 - graph1.txt
  • 55 - Graph Formalization Important Functions
  • 55 - Graph-Formalization-Important-Functions.pdf
  • 56 - Graph Formalization Final Implementation
  • 56 - Graph-Formalization-Final-Implementation.pdf
  • 57 - Graph Visualization
  • 57 - Graph-Visualization.pdf
  • Files.zip

  • 13 - Graph Algorithms Depth First Search DFS
  • 58 - Introduction to Depth First Search
  • 59 - DFS-Implementation-First-Steps.pdf
  • 59 - Depth First Search Implementation First Steps
  • 60 - DFS-Implementation-Initialization-of-Data-Structures.pdf
  • 60 - Depth First Search Implementation Data Structures
  • 61 - DFS-Implementation-Algorithm.pdf
  • 61 - Depth First Search Implementation Algorithm
  • 62 - DFS-Implementation-Module-Review.pdf
  • 62 - Depth First Search Implementation Module Review
  • 63 - DFS-Implementation-Graph-Library.pdf
  • 63 - Depth First Search Implementation Graph Library
  • 64 - DFS-Implementation-Final-Result-and-Visualization.pdf
  • 64 - Depth First Search Implementation Final Result and Visualization
  • Files.zip

  • 14 - Dependencies between Modules
  • 65 - Dependencies between Modules
  • 65 - Dependencies-between-Modules.pdf
  • Files.zip

  • 15 - Concurrent Programming
  • 66 - Introduction to Concurrency
  • 66 - Introduction-to-Concurrency.pdf
  • 67 - The Area Server Process
  • 67 - The-Area-Server-Process.pdf
  • 68 - ClientServer Architecture
  • 68 - Client-Server-Architecture.pdf
  • Files.zip
  • 54,900 تومان
    بیش از یک محصول به صورت دانلودی میخواهید؟ محصول را به سبد خرید اضافه کنید.
    خرید دانلودی فوری

    در این روش نیاز به افزودن محصول به سبد خرید و تکمیل اطلاعات نیست و شما پس از وارد کردن ایمیل خود و طی کردن مراحل پرداخت لینک های دریافت محصولات را در ایمیل خود دریافت خواهید کرد.

    ایمیل شما:
    تولید کننده:
    مدرس:
    شناسه: 37983
    حجم: 6994 مگابایت
    مدت زمان: 1006 دقیقه
    تاریخ انتشار: 10 مرداد 1403
    طراحی سایت و خدمات سئو

    54,900 تومان
    افزودن به سبد خرید