Prog Reference
前往频道在 Telegram
Tags: #cpp #csharp, #asp, #wpf #book #android #java #js, #node #game, #gd #py, #python, #django
显示更多1 126
订阅者
无数据24 小时
+37 天
-230 天
帖子存档
1 126
📕 Flutter and Dart: Up and Running: Build native apps for both iOS and Android using a single codebase (2023)
#Dart #Flutter
📥 Download or see more information here!
👉 @c_books
1 126
📕 Rust for C++ Programmers: Learn how to embed Rust in C/C++ with ease (2023)
#Rust #Cpp
📥 Download or see more information here!
👉 @c_books
1 126
My simple solution to today's question 49. Group anagrams in LeetCode:
class Solution {
public:
string hash(string s){
string res('*',29);
for(char c:s)
res[c-97]++;
return res;
}
vector<vector<string>> groupAnagrams(vector<string>& strs) {
vector<vector<string>> res;
unordered_map<string,vector<string>> mp;
for(int i=0;i<strs.size();i++){
mp[hash(strs[i])].push_back(strs[i]);
}
for(auto v:mp)
res.push_back(v.second);
return res;
}
};1 126
1 126
1 126
Learn WinUI 3.0: Leverage the power of WinUI, the future of native Windows application development
🎫Access Library Channel
Download
#csharp #winui
@c_books
1 126
📚Practical Design Patterns for Java
Developers
✍️Bruno Souza
🎫Access Library Channel
Download
#java #en
@c_books
1 126
📚Tiny Python Projects 2020
✍️: Ken Youens-Clark
🎫Access Library Channel
Download
#python #en
@c_books
1 126
📚Introduction to Algorithms
✍️: Thomas Cormen
🎫Access Library Channel
Download
#algorithms #english
@c_books
1 126
📚Clean Code Principles and Patterns: A Software Practitioner’s Handbook (2023)
✍️Petri Silén
🎫Access Library Channel
Download
@c_books
1 126
📚Clean Code with C#: Refactor your legacy C# code base and improve application performance using best practices (2023)
🎫Access Library Channel
Download
#csharp #cs
@c_books
1 126
📚Improve Java Coding: Best Practices for Effective Coding (2023)
Sar Maroof
🎫Access Library Channel
Download
#java #jar
@c_books
1 126
📚Modern TypeScript: A Practical Guide to Accelerate Your Development Velocity (2023)
Ben Beattie-Hood
🎫Access Library Channel
Download
#ts
@c_books
1 126
📚Next.js: Navigating the Future of Web Development (2023)
Frahaan Hussain
🎫Access Library Channel
Download
#js #next #web
@c_books
1 126
📚Algorithms and Data Structures for OOP With C# (2023)
✍️Theophilus Edet
🎫Access Library Channel
Download
#csharp #oop #ds
@c_books
1 126
📚PHP Serverless Programming (2023)
Ronald C. Sheffield
🎫Access Library Channel
Download
#php
@c_books
1 126
Repost from C/C++ Programming
📕 Modern C
📅 2020
🖋 Jens Gustedt
📃 390 pages
⚡️ #Beginner #Intermediate
🗒 This book covers:
- Getting started
- The principal structure of a program
- Everything is about control
- Expressing computations
- Basic values and data
- Derived data types
- Functions
- C library functions
- Style
- Organization and documentation
- The C memory model
- Storage and More involved processing and IO
- Performance and Threads
- Atomic access and memory consistency and more...
📌 This book focuses on the new and unique features of modern C programming. The book is based on the latest C standards and offers an up-to-date perspective on this tried-and-true language.
🏷Access Library Channel
📥DOWNLOAD THE BOOK
👉 @cpp_programming_books
1 126
Repost from C/C++ Programming
📕 Starting out with C++ From Control Structures through Objects
📅 2014
🖋 Tony Gaddis
📃 1200+ pages
⚡️ #Beginner #Intermediate
🗒 This book covers:
- Introduction to C++
- Expressions and Interactivity
- Making Decisions
- Loops and Files
- Searching and Sorting Arrays
- Pointers
- Characters, C-Strings, and More About the
string Class
- Advanced File Operations
- Inheritance, Polymorphism, and Virtual Functions
- Exceptions, Templates, and the Standard Template
Library (STL)
- Linked Lists, Stacks and Queues, Recursion, Binary Trees and more
📌 Provides a gentle introduction with a focus on practical applications and avoiding overwhelming theoretical concepts.
🏷Access Library Channel
📥DOWNLOAD THE BOOK
👉 @cpp_programming_books1 126
