سافت گذر دانشنامه نرم افزار - دانلود رایگان نرم افزار

همه دسته بندی ها

منو
جستجو
اطلاعیه های مهم سایت اطلاعیه های مهم سایت
💐 میلاد زینت پدر حضرت زینب سلام الله علیها مبارک باد 💐
 
 
  1. میلاد حضرت زهرا سلام الله علیها و روز مادر مبارک باد
  2. سافت گذر لباس نو به تن کرده😍
  3. 🔰جایگزین مناسب Kaspersky خرید لایسنس نود 32
  4. جهت رفع مشکل باز شدن سایت به دلیل بلاک توسط  نود 32 این ویدیو یا این ویدیو(ورژن 9 به بالا) یا راهنمای تصویری را مشاهده کنید
  5. اکانت های بروزرسانی نود32 با قیمت های مناسب به صورت یک ، سه ، شش و دوازده ماهه از اینجا قابل خرید می باشد.

نرم افزار های پرکاربرد

ثبت نام | ورود
Coursera - Functional Programming Principles in Scala

دانلود Coursera - Functional Programming Principles in Scala - فیلم آموزش اصول برنامه‌نویسی تابعی در اسکالا

دانلود فیلم آموزش اصول برنامه‌نویسی تابعی در اسکالا

توضیحات بیشتر

دانـلـود کـنـیـد

آیریک نت
دانلود Coursera - Functional Programming Principles in Scala مشاهده تصاویر بیشتر ...
مشاهده تصاویر بیشتر ...
تعداد مشاهده

12049مشاهده |

768رأی |

امتیاز :3.3

ناشر / تولید کننده:

Coursera

سیستم عامل / حجم فایل:

1/11 GB / تمام نسخه های ویندوز

آخرین بروزرسانی:

اسکالا یکی از برترین بسترهای برنامه‌نویسی تابعی و شیء‌گرا می‌باشد که به کاربران امکان خلق برنامه‌های کارآمد را در یک پروسه‌ی سریع و غنی می‌دهد. برنامه‌نویسی تابعی که در دنیا تحت عنوان Functional Programming شناخته می‌شود بطور فزاینده‌ای در صنعت برنامه‌سازی در حال گسترش است؛ هر کسی نیز مهارت خلق اپلیکیشن‌های استاندارد با آن را ندارد چرا که این مهم حتماً نیازمند آموزش‌های زیربنایی می‌باشد. با توجه کافی و پرداخت عملی به مهارت‌های تدریس شده در این دوره‌ی آموزشی تصویری، بطور مفصل تکنیک‌ها و اصول برنامه‌نویسی تابعی در Scala را یاد خواهید گرفت.

 

محتوای آموزش:

1- درک اصول برنامه‌نویسی تابعی

2- نوشتن برنامه‌های تابعی با استفاده از توابع بازگشتی

3- تطابق الگو و توابع "مرتبه بالاتر"

4- ترکیب برنامه‌نویسی تابعی با آبجکت‌ها و کلاس‌ها

5- مباحث مربوط به Design Immutable Data Structures

6- مباحث مربوط به خواص توابع

7- درک انواع عمومی برای برنامه‌های کاربردی و تابعی

 

تولید کننده: Coursera

زبان: انگلیسی

سطح: متوسط

تعداد ویدئوها: 40 ویدئوی آموزشی بصورت جداگانه

مدرس: Martin Odersky, Professor

 

فهرست کامل سرفصل‌ها و عناوین آموزش:

Getting Started + Functions & Evaluation

Get up and running with Scala on your computer. Complete an example assignment to familiarize yourself with our unique way of submitting assignments. In this week, we'll learn the difference between functional imperative programming. We step through the basics of Scala; covering expressions, evaluation, conditionals, functions, and recursion

Video · Course Introduction

Video · Tools Setup for Linux

Video · Tools Setup for Mac OS X

Video · Tools Setup for Windows

Practice Programming Assignment · Example Assignment

Reading · Tools Setup (Please read)

Reading · Cheat Sheet

Reading · IntelliJ IDEA Tutorial

Reading · Eclipse Tutorial

Reading · SBT tutorial and Submission of Assignments (Please read)

Reading · Learning Resources

Reading · Scala Tutorial

Reading · Scala Style Guide

Video · Lecture 1.1 - Programming Paradigms

Video · Lecture 1.2 - Elements of Programming

Video · Lecture 1.3 - Evaluation Strategies and Termination

Video · Lecture 1.4 - Conditionals and Value Definitions

Video · Lecture 1.5 - Example: square roots with Newton's method

Video · Lecture 1.6 - Blocks and Lexical Scope

Video · Lecture 1.7 - Tail Recursion

Programming Assignment · Recursion


Higher Order Functions

This week, we'll learn about functions as first-class values, and higher order functions. We'll also learn about Scala's syntax and how it's formally defined. Finally, we'll learn about methods, classes, and data abstraction through the design of a data structure for rational numbers

Video · Lecture 2.1 - Higher-Order Functions

Video · Lecture 2.2 - Currying

Video · Lecture 2.3 - Example: Finding Fixed Points

Video · Lecture 2.4 - Scala Syntax Summary

Video · Lecture 2.5 - Functions and Data

Video · Lecture 2.6 - More Fun With Rationals

Video · Lecture 2.7 - Evaluation and Operators

Programming Assignment · Functional Sets

 

Data and Abstraction

This week, we'll cover traits, and we'll learn how to organize classes into hierarchies. We'll cover the hierarchy of standard Scala types, and see how to organize classes and traits into packages. Finally, we'll touch upon the different sorts of polymorphism in Scala

Video · Lecture 3.1 - Class Hierarchies

Video · Lecture 3.2 - How Classes Are Organized

Video · Lecture 3.3 - Polymorphism

Programming Assignment · Object-Oriented Sets

 

Types and Pattern Matching

This week we'll learn about the relationship between functions and objects in Scala; functions *are* objects! We'll zoom in on Scala's type system, covering subtyping and generics, and moving on to more advanced aspects of Scala's type system like variance. Finally, we'll cover Scala's most widely used data structure, Lists, and one of Scala's most powerful tools, pattern matching

Video · Lecture 4.1 - Objects Everywhere

Video · Lecture 4.2 - Functions as Objects

Video · Lecture 4.3 - Subtyping and Generics

Video · Lecture 4.4 - Variance (Optional)

Video · Lecture 4.5 - Decomposition

Video · Lecture 4.6 - Pattern Matching

Video · Lecture 4.7 - Lists

Programming Assignment · Huffman Coding

 

Lists

This week we dive into Lists, the most commonly-used data structure in Scala.

Video · Lecture 5.1 - More Functions on Lists

Video · Lecture 5.2 - Pairs and Tuples

Video · Lecture 5.3 - Implicit Parameters

Video · Lecture 5.4 - Higher-Order List Functions

Video · Lecture 5.5 - Reduction of Lists

Video · Lecture 5.6 - Reasoning About Concat

Video · Lecture 5.7 - A Larger Equational Proof on Lists

 

Collections

After a deep-dive into Lists, this week we'll explore other data structures; vectors, maps, ranges, arrays, and more. We'll dive into Scala's powerful and flexible for-comprehensions for querying data

Video · Lecture 6.1 - Other Collections

Video · Lecture 6.2 - Combinatorial Search and For-Expressions

Video · Lecture 6.3 - Combinatorial Search Example

Video · Lecture 6.4 - Maps

Video · Lecture 6.5 - Putting the Pieces Together

Video · Conclusion

Programming Assignment · Anagrams
اعضای ویژه
VIP Members

لینک های دانلود فقط برای اعضای ویژه فعال هست

با پرداخت فقط 9900 تومان، به لینک های دانلود این صفحه و تمامی صفحات VIP سایت دسترسی خواهید داشت.

پرداخت ریالی عضویت ویژه

لطفا آموزش‌های بیشتری از کورسرا رو قرار بدید. بیشتر در زمینه برنامه نویسی

سلام. خیلی خوبه که آموزش کورسرا رُ قرار دادین. لطفا این روند و ادامه بدین. ممنون.

ماهان شبکه ایرانیان
فهرست نرم افزارهای مرتبط
مشاهده بقیه
هشتگ های مرتبط
سرور آپدیت نود 32
پیشنهاد سافت گذر
Kuassa Efektor PAten Graphic Equalizer v1.0.0

Kuassa Efektor PAten Graphic Equalizer v1.0.0

افزایش کیفیت صدا

Photo Studio PRO 2.7.3.2445 for Android +4.1

Photo Studio PRO 2.7.3.2445 for Android +4.1

افکت گذاری تصاویر

Microsoft Security Essentials 4.10.209.0 Final x86/x64

Microsoft Security Essentials 4.10.209.0 Final x86/x64

آنتی ویروس مایکروسافت سکوریتی اسنشال

Ad Muncher v4.94 Build 34121 Final

Ad Muncher v4.94 Build 34121 Final

نرم افزار حذف تبلیغات مزاحم اینترنتی

بررسی و تحلیل مسائل روز دنیای بین المللی

بررسی و تحلیل مسائل روز دنیای بین المللی

مجله The Nation ژانویه 25 ؛ 2021

Intel Processor Diagnostic Tool 4.1.9.41

Intel Processor Diagnostic Tool 4.1.9.41

تست پردازنده های اینتل

27 بحث مهارتهای کلامی از استاد محمد شجاعی

27 بحث مهارتهای کلامی از استاد محمد شجاعی

استاد شجاعی با موضوع مهارتهای کلامی

مبانی برنامه نویسی به زبان جاوا

مبانی برنامه نویسی به زبان جاوا

آموزش جاوا

White Mirror

White Mirror

آینه‌ی سفید

Totally Reliable Delivery Service

Totally Reliable Delivery Service

شبیه‌ساز خدمات تحویل کالا

InfiniteSkills - Learning Microsoft Word 2013 Training Video

InfiniteSkills - Learning Microsoft Word 2013 Training Video

فیلم آموزش مایکروسافت وُرد 2013

تاریخ خط و خطاطان

تاریخ خط و خطاطان

تاریخچه خطاطی

SMS Scheduler PRO 7.5.3 for Android +2.3

SMS Scheduler PRO 7.5.3 for Android +2.3

ارسال پیامک خودکار

6 جلسه اخلاق نیکو از حجت الاسلام والمسلمین سید حسین هاشمی نژاد

6 جلسه اخلاق نیکو از حجت الاسلام والمسلمین سید حسین هاشمی نژاد

حاج آقا سید حسین هاشمی نژاد با موضوع اخلاق نیکو

Modern Combat Versus 1.17.32 for Android +4.0.3

Modern Combat Versus 1.17.32 for Android +4.0.3

مادرن کامبت

PDF-XChange Pro 10.4.4.392 / Editor Plus + Portable

PDF-XChange Pro 10.4.4.392 / Editor Plus + Portable

پی دی اف ایکس چنج ادیتور پلاس

Microsoft Windows 8.1 Pro VL / Enterprise With Update 3 MSDN  x86/x64

Microsoft Windows 8.1 Pro VL / Enterprise With Update 3 MSDN x86/x64

نسخه نهایی از ویندوز 8.1 یا Windows Blue

Udemy - Python for Data Science and Machine Learning Bootcamp

Udemy - Python for Data Science and Machine Learning Bootcamp

دوره آموزش علم داده و یادگیری ماشین در پایتون

تخریب البقیع فی الوثائق و المستندات

تخریب البقیع فی الوثائق و المستندات

قبرستان بقیع و بقعه‌های آن

Autodesk Maya 2014 Essentials

Autodesk Maya 2014 Essentials

اتودسک مایا 2014

Adobe Photoshop Lightroom Classic 2019 8.4.1.10 + Portable / 2.4.1 / macOS

Adobe Photoshop Lightroom Classic 2019 8.4.1.10 + Portable / 2.4.1 / macOS

ادوب فوتوشاپ لایتروم کلاسیک 2019

GridinSoft Anti-Malware 4.2.54.5598

GridinSoft Anti-Malware 4.2.54.5598

حذف تروجان آنتی مالور

Lynda - Data-Driven Presentations with Excel and PowerPoint

Lynda - Data-Driven Presentations with Excel and PowerPoint

فیلم آموزش شرکت لیندا در مورد آماده‌سازی و ارائه‌ های بهینه‌ی داده‌‌-محور با استفاده از اکسل و پاورپوینت

Gladiator

Gladiator

گلادیاتور

Ziggurat

Ziggurat

زیگورات

Venom 2018

Venom 2018

ونوم

Programming Windows 8 Apps

Programming Windows 8 Apps

برنامه نویسی ویندوز 8

NiGHTS Into Dreams

NiGHTS Into Dreams

رویای شبانه - نسخه کامپیوتر (HD)

چالش های مدیران ارگان و سازمان ها

چالش های مدیران ارگان و سازمان ها

نگرشی برچالش های مدیران سازمان ها در قرن بیست و یکم

Lane Splitter 5.1.0 for Android

Lane Splitter 5.1.0 for Android

بازی موتور سواری پرسرعت

مجموعه عکس ماشین

مجموعه عکس ماشین

دانلود عکس پس زمینه زیبای ماشین

Medicine Information 2.0 for Android

Medicine Information 2.0 for Android

نرم افزار اطلاعات دارویی به همراه دسته بندی و شیوه مصرف

سخنرانی حجت الاسلام ناصر رفیعی با موضوع رابطه ی امام حسین علیه السلام با قرآن

سخنرانی حجت الاسلام ناصر رفیعی با موضوع رابطه ی امام حسین علیه السلام با قرآن

سخنرانی رابطه ی امام حسین علیه السلام با قرآن با ناصر رفیعی

Cross DJ 3.5.4 for Android +4.1

Cross DJ 3.5.4 for Android +4.1

دی جی اندروید

King Oddball v1.2.5.3

King Oddball v1.2.5.3

پادشاه عجیب و غریب

Tapet 6.23 for Android +4.1

Tapet 6.23 for Android +4.1

ساخت تصویر زمینه

Perfectly Clear WorkBench 4.6.0.2626 (x64) Multilingual

Perfectly Clear WorkBench 4.6.0.2626 (x64) Multilingual

پلاگین اصلاح خودکار عکس در فتوشاپ

Global Mapper Pro 25.1.1 Build 030624

Global Mapper Pro 25.1.1 Build 030624

برنامه نقشه برداری گلوبال مپر

امنیت اطلاعات چیست؟

امنیت اطلاعات چیست؟

امنیت اطلاعات چیست؟

آنتروپی مثبت

آنتروپی مثبت

سیستم باز

خبرنامه

با عضویت در خبرنامه، زودتر از همه باخبر باش!