Tagged articles
93 articles
Page 1 of 1
Lisa Notes
Lisa Notes
Mar 19, 2026 · Fundamentals

Understanding Java Arrays: Concepts, Features, and Usage

This note explains why Java introduces arrays, defines arrays as collections of same‑type variables, demonstrates the limitation of using individual variables for many items, and outlines six key characteristics of Java arrays, including fixed length, zero‑based indexing, and default values.

ArraysData StructuresJava
0 likes · 5 min read
Understanding Java Arrays: Concepts, Features, and Usage
php Courses
php Courses
Jan 16, 2026 · Backend Development

How to Count Array Elements, Unique Values, and Occurrences in PHP

This guide explains how to use PHP's count(), array_count_values(), and array_filter() functions, along with loops, to count total elements, distinct values, and specific element occurrences in an array, providing clear code examples for each method.

Arraysarray functionscounting
0 likes · 4 min read
How to Count Array Elements, Unique Values, and Occurrences in PHP
Linux Tech Enthusiast
Linux Tech Enthusiast
Jan 15, 2026 · Fundamentals

Master Linux Shell Scripting: From Basics to Real‑World Projects

This article provides a step‑by‑step guide to Linux shell scripting, covering the definition of a shell, common shells, naming rules, environment and user variables, control‑flow statements, functions, arrays, and several practical scripts such as a Hello World program, service checks, system backup, information collection, and one‑click LNMP deployment.

ArraysAutomationControl Flow
0 likes · 23 min read
Master Linux Shell Scripting: From Basics to Real‑World Projects
php Courses
php Courses
Jan 4, 2026 · Backend Development

Mastering PHP’s array_search(): Usage, Edge Cases, and Best Practices

This guide explains PHP’s array_search() function, covering its syntax, practical examples for finding values in indexed arrays, handling missing elements, strict versus loose comparison nuances, and limitations when working with associative arrays, helping developers use it efficiently.

ArraysPHParray_search
0 likes · 5 min read
Mastering PHP’s array_search(): Usage, Edge Cases, and Best Practices
php Courses
php Courses
Dec 22, 2025 · Backend Development

Master PHP’s array_flip(): Swap Keys and Values with Ease

This guide explains how PHP's array_flip() function swaps array keys and values, details its syntax, parameters, return behavior, and provides three practical code examples demonstrating usage with associative, fruit‑color, and numeric‑indexed arrays, including important caveats.

Arraysarray_flipkey-value swap
0 likes · 4 min read
Master PHP’s array_flip(): Swap Keys and Values with Ease
php Courses
php Courses
Dec 1, 2025 · Backend Development

Master PHP’s array_merge: Combine Arrays Effortlessly with Real Examples

This tutorial explains PHP’s array_merge function, showing its simple syntax and providing clear code examples for merging two arrays, multiple arrays, and associative arrays, while highlighting how keys are handled and why the function is essential for flexible data manipulation.

ArraysBackendPHP
0 likes · 4 min read
Master PHP’s array_merge: Combine Arrays Effortlessly with Real Examples
php Courses
php Courses
Sep 19, 2025 · Backend Development

Master PHP Functions: Define, Pass, Loop, and Return Arrays

This guide explains how to define, pass, iterate over, and return arrays within PHP functions, covering array creation with array(), parameter passing, traversal using both for and foreach loops, and returning modified arrays, complete with full code examples for each step.

ArraysBackend DevelopmentCode Tutorial
0 likes · 5 min read
Master PHP Functions: Define, Pass, Loop, and Return Arrays
php Courses
php Courses
Jul 14, 2025 · Backend Development

Master PHP’s file() Function: Read Files into Arrays Effortlessly

This guide explains how PHP’s file() function reads an entire file into an array, details its syntax and parameters, demonstrates basic and flag‑enhanced usage with code examples, and highlights important considerations such as automatic newline removal for efficient backend development.

ArraysFilePHP
0 likes · 4 min read
Master PHP’s file() Function: Read Files into Arrays Effortlessly
Open Source Tech Hub
Open Source Tech Hub
Jul 9, 2025 · Backend Development

Master Essential PHP Array Functions for Cleaner Code

This guide walks PHP developers through eight essential array functions—array_map, array_walk, array_reduce, array_filter, array_merge, array_keys, array_values, array_unique, and array_combine—explaining their purpose, usage, and providing clear code examples to help manage and transform data efficiently.

ArraysPHPfunctions
0 likes · 6 min read
Master Essential PHP Array Functions for Cleaner Code
php Courses
php Courses
Jul 9, 2025 · Backend Development

Master PHP’s array_pop: Quickly Remove the Last Element from an Array

This tutorial explains how the PHP function array_pop() removes and returns the last element of an array, demonstrates its usage with clear code examples, and discusses best practices such as preserving the original array and removing multiple elements.

ArraysBackend Developmentarray_pop
0 likes · 3 min read
Master PHP’s array_pop: Quickly Remove the Last Element from an Array
php Courses
php Courses
Jul 7, 2025 · Backend Development

7 Advanced PHP Array Techniques Every Developer Should Master

This article presents seven professional PHP array tricks—including destructuring, spread operator merging, column extraction, advanced filtering, reduction, key existence checks, and batch mapping—to boost coding efficiency, readability, and modern backend development practices.

Advanced TechniquesArraysCode Optimization
0 likes · 6 min read
7 Advanced PHP Array Techniques Every Developer Should Master
php Courses
php Courses
May 29, 2025 · Fundamentals

Understanding Go Composite Data Types: Arrays, Slices, Maps, and Structs

This article provides a comprehensive guide to Go's four main composite data types—arrays, slices, maps, and structs—explaining their definitions, initialization, operations, characteristics, and best‑practice recommendations for effective Go programming in software development.

ArraysComposite TypesGo
0 likes · 10 min read
Understanding Go Composite Data Types: Arrays, Slices, Maps, and Structs
Java Captain
Java Captain
Apr 29, 2025 · Fundamentals

How to Directly Output Arrays, Traverse Strings, and Read Keyboard Input in Java

This article demonstrates how to print an int array using Arrays.toString, presents two methods for iterating over a string—via toCharArray and charAt—and explains proper usage of Scanner methods to read tokens, lines, and integers from the console, including handling of newline characters.

ArraysJavaString Traversal
0 likes · 3 min read
How to Directly Output Arrays, Traverse Strings, and Read Keyboard Input in Java
php Courses
php Courses
Apr 15, 2025 · Backend Development

How to Use PHP’s array_reverse Function to Reverse Array Elements

This article explains the PHP array_reverse function, detailing its syntax, parameters, and usage with examples that demonstrate reversing a simple array, preserving keys, and displaying both original and reversed arrays, providing developers with a clear guide for handling array order in PHP.

ArraysPHPTutorial
0 likes · 5 min read
How to Use PHP’s array_reverse Function to Reverse Array Elements
php Courses
php Courses
Feb 25, 2025 · Backend Development

PHP Arrays: Creation, Access, Manipulation, Traversal, and Common Functions

This article provides a comprehensive guide to PHP arrays, covering how to create them with array() or short syntax, initialize numeric arrays with range(), convert variables using compact(), and demonstrates accessing, adding, modifying, deleting, traversing with loops, and using built‑in functions, while also introducing related data structures.

ArraysBackend DevelopmentCode Examples
0 likes · 5 min read
PHP Arrays: Creation, Access, Manipulation, Traversal, and Common Functions
php Courses
php Courses
Nov 8, 2024 · Backend Development

Using PHP array_merge() to Combine Arrays

This article explains the PHP array_merge() function, its syntax, and provides clear examples of merging indexed and associative arrays, demonstrating how multiple arrays can be combined into a new array with key overwriting behavior for duplicates.

ArraysCode ExamplePHP
0 likes · 4 min read
Using PHP array_merge() to Combine Arrays
php Courses
php Courses
Oct 21, 2024 · Backend Development

Using PHP array_push to Add Elements to an Array

This article explains how the PHP array_push function can append one or multiple elements to the end of an array, shows step‑by‑step code examples for single and multiple element insertion, and demonstrates the resulting array length and contents.

ArraysBackendPHP
0 likes · 3 min read
Using PHP array_push to Add Elements to an Array
IT Services Circle
IT Services Circle
Sep 17, 2024 · Frontend Development

Why [] == ![] in JavaScript: Understanding Loose Equality and Its Pitfalls

This article explains the surprising result of the JavaScript expression [] == ![], detailing how empty arrays are truthy, how they are coerced to strings and numbers during loose equality comparison, and why using strict equality (===) or TypeScript avoids such confusing behavior.

ArraysJavaScriptLoose Equality
0 likes · 4 min read
Why [] == ![] in JavaScript: Understanding Loose Equality and Its Pitfalls
php Courses
php Courses
Aug 8, 2024 · Backend Development

Using PHP's array_flip() Function to Swap Keys and Values

This article explains PHP's array_flip() function, detailing its syntax, behavior with duplicate values, and practical uses such as reversing associative arrays and looking up keys by value, illustrated with clear code examples and output demonstrations.

ArraysBackendarray_flip
0 likes · 4 min read
Using PHP's array_flip() Function to Swap Keys and Values
Linux Cloud Computing Practice
Linux Cloud Computing Practice
Aug 7, 2024 · Operations

Master Shell Scripting: Core Commands, Variables, Loops, and Functions Explained

This comprehensive guide walks you through the fundamentals of Linux shell scripting, covering why it matters, essential prerequisites, variable handling, string manipulation, arithmetic operations, condition testing, control structures like if/else, for/while loops, functions, case statements, and array usage, all with clear examples and practical code snippets.

ArraysAutomationBash
0 likes · 34 min read
Master Shell Scripting: Core Commands, Variables, Loops, and Functions Explained
php Courses
php Courses
Jul 31, 2024 · Backend Development

Understanding PHP 7.3 array_key_first(): Syntax, Usage, and Examples

PHP 7.3 introduced the array_key_first() function, which returns the first key of an array or null if empty; this article explains its syntax, demonstrates usage with examples, compares it to older approaches, and outlines scenarios such as retrieving the first key and checking for empty arrays.

ArraysBackend Developmentarray_key_first
0 likes · 4 min read
Understanding PHP 7.3 array_key_first(): Syntax, Usage, and Examples
php Courses
php Courses
Jul 29, 2024 · Backend Development

Using PHP’s array_unique() Function to Extract Unique Values

This article explains PHP’s built-in array_unique() function, detailing its syntax, behavior, and flags, and demonstrates how to remove duplicate values from arrays with practical code examples and real-world use cases such as data cleaning, input validation, and aggregation.

ArraysBackendarray_unique
0 likes · 6 min read
Using PHP’s array_unique() Function to Extract Unique Values
php Courses
php Courses
Jul 10, 2024 · Backend Development

Using PHP’s array_flip() Function to Swap Keys and Values

This article explains PHP’s array_flip() function, detailing its syntax, behavior with duplicate values, and demonstrating practical examples such as swapping keys and values in associative arrays and using the flipped array for lookups, while highlighting its benefits for code simplicity and efficiency.

ArraysBackend DevelopmentCode Example
0 likes · 4 min read
Using PHP’s array_flip() Function to Swap Keys and Values
php Courses
php Courses
Jun 26, 2024 · Backend Development

Using PHP's array_replace_recursive() to Recursively Merge Arrays

This article explains the PHP function array_replace_recursive(), showing its syntax, behavior, and examples of how it recursively merges multiple arrays while handling key conflicts and offering guidance on when to use it versus array_merge_recursive().

ArraysBackendPHP
0 likes · 4 min read
Using PHP's array_replace_recursive() to Recursively Merge Arrays
php Courses
php Courses
Jun 17, 2024 · Backend Development

Using PHP's array_reverse() Function to Reverse Arrays

This article explains the PHP array_reverse() function, its syntax, optional preserve_keys parameter, and provides multiple code examples demonstrating how to reverse indexed and associative arrays and combine the function with sort() for more complex array manipulations.

ArraysBackendCode Examples
0 likes · 3 min read
Using PHP's array_reverse() Function to Reverse Arrays
php Courses
php Courses
Jun 4, 2024 · Backend Development

Using PHP array_merge() to Combine Arrays: Syntax, Examples, and Tips

This article explains the PHP array_merge() function, covering its simple syntax, how it merges multiple indexed and associative arrays, and provides three practical code examples demonstrating merging two arrays, multiple arrays, and associative arrays with key overwriting.

ArraysPHParray merge
0 likes · 4 min read
Using PHP array_merge() to Combine Arrays: Syntax, Examples, and Tips
php Courses
php Courses
May 16, 2024 · Backend Development

Using PHP’s array_search() Function to Find Keys in an Array

This article explains PHP's array_search() function, detailing its purpose, prototype, parameters, return values, and provides clear code examples demonstrating how to locate keys of specific values in associative arrays, including handling of strict type comparison and cases where the value is absent.

ArraysBackendPHP
0 likes · 4 min read
Using PHP’s array_search() Function to Find Keys in an Array
php Courses
php Courses
May 14, 2024 · Backend Development

Using PHP's file() Function to Read File Contents into an Array

This article explains PHP's file() function, detailing its syntax, parameters, and usage examples for reading a file into an array, including how to handle flags such as FILE_IGNORE_NEW_LINES to control line endings.

ArraysBackendFile Reading
0 likes · 4 min read
Using PHP's file() Function to Read File Contents into an Array
php Courses
php Courses
Apr 30, 2024 · Backend Development

Using PHP array_push() to Append Elements to an Array

This tutorial explains the PHP array_push() function, its syntax, parameter details, and demonstrates how to add single or multiple elements to an array while retrieving the new array length, complete with code examples and expected output.

ArraysBackendPHP
0 likes · 4 min read
Using PHP array_push() to Append Elements to an Array
Su San Talks Tech
Su San Talks Tech
Apr 14, 2024 · Backend Development

Avoid These 3 Common Pitfalls When Using Arrays.asList in Java

This article explains three hidden traps when converting arrays to lists with Arrays.asList—issues with primitive arrays, unsupported add/remove operations, and shared‑array side effects—and provides practical solutions using wrapper types, streams, or creating a new ArrayList.

ArraysBackendPitfalls
0 likes · 5 min read
Avoid These 3 Common Pitfalls When Using Arrays.asList in Java
php Courses
php Courses
Apr 8, 2024 · Backend Development

Using PHP array_push to Append Elements to an Array

This article explains how to use PHP's built-in array_push function to append one or multiple elements to the end of an array, provides clear code examples for single and multiple element insertion, and demonstrates the resulting array length and contents.

ArraysPHPTutorial
0 likes · 3 min read
Using PHP array_push to Append Elements to an Array
Liangxu Linux
Liangxu Linux
Mar 20, 2024 · Fundamentals

Master the 7 Essential Data Structures: When and Why to Use Them

Explore the seven core data structures—arrays, queues, stacks, linked lists, trees, graphs, and hash tables—detailing their real‑world analogies, typical use cases, strengths, and drawbacks, so you can choose the right structure for efficient, reliable software design.

Arraysgraphshash table
0 likes · 8 min read
Master the 7 Essential Data Structures: When and Why to Use Them
Open Source Linux
Open Source Linux
Mar 18, 2024 · Fundamentals

Unlock C Programming Fundamentals: From Hello World to Advanced Structures

This comprehensive tutorial walks you through the essentials of C programming, covering everything from the classic Hello World program and basic syntax to data types, operators, control structures, functions, recursion, arrays, strings, and multi‑dimensional arrays, complete with clear code examples and visual diagrams.

ArraysC programmingControl structures
0 likes · 35 min read
Unlock C Programming Fundamentals: From Hello World to Advanced Structures
php Courses
php Courses
Feb 22, 2024 · Backend Development

Using PHP's array_values() Function to Reindex Arrays

This article explains PHP's array_values() function, showing how it returns a new array with sequential numeric keys for both indexed and associative arrays, includes practical code examples, demonstrates that the returned array is a copy, and discusses typical use cases.

ArraysPHParray_values
0 likes · 4 min read
Using PHP's array_values() Function to Reindex Arrays
php Courses
php Courses
Feb 20, 2024 · Backend Development

Using PHP's file() Function to Read Files into an Array

This article explains how to use PHP's built‑in file() function to read a text file into an array, demonstrates handling of newline characters, and shows how optional flags like FILE_IGNORE_NEW_LINES and FILE_SKIP_EMPTY_LINES can control line retention and empty‑line skipping.

ArraysPHPfile function
0 likes · 4 min read
Using PHP's file() Function to Read Files into an Array
IT Services Circle
IT Services Circle
Feb 14, 2024 · Fundamentals

Linked List Fundamentals: Memory Representation and Comparison with Arrays

This article explains the fundamental concepts of linked lists, contrasting them with arrays through memory allocation analogies, illustrating how linked lists provide dynamic, non‑contiguous storage, their node structure, advantages, disadvantages, and practical implementation considerations across programming languages.

Arraysalgorithmlinked list
0 likes · 7 min read
Linked List Fundamentals: Memory Representation and Comparison with Arrays
php Courses
php Courses
Jan 30, 2024 · Backend Development

Understanding PHP 7.3 array_key_first() Function: Syntax, Usage, and Examples

PHP 7.3 introduces the array_key_first() function, which returns the first key of an array or null if empty; this article explains its syntax, provides code examples for retrieving the first key and checking for empty arrays, and highlights usage considerations and potential pitfalls.

ArraysBackendPHP
0 likes · 3 min read
Understanding PHP 7.3 array_key_first() Function: Syntax, Usage, and Examples
php Courses
php Courses
Jan 29, 2024 · Backend Development

How to Use PHP shuffle() to Randomly Sort Arrays and Generate Random Numbers

This article explains the PHP shuffle() function, demonstrates how to create arrays, use shuffle() to randomize their elements, display the results, and shows additional uses such as generating random numbers with range() and shuffle(), providing clear code examples throughout.

ArraysBackendPHP
0 likes · 4 min read
How to Use PHP shuffle() to Randomly Sort Arrays and Generate Random Numbers
php Courses
php Courses
Jan 5, 2024 · Backend Development

Understanding PHP count() and sizeof() Functions: Differences, Usage, and Tips

This article explains the PHP count() and sizeof() functions, clarifying that they are aliases with identical behavior, showing basic usage examples, discussing when to prefer one over the other, and offering performance notes, recursive counting, and object handling tips for developers.

ArraysBackendPHP
0 likes · 4 min read
Understanding PHP count() and sizeof() Functions: Differences, Usage, and Tips
php Courses
php Courses
Dec 18, 2023 · Backend Development

Understanding PHP Variables and Data Types

This article provides a comprehensive overview of PHP variables and its eight basic data types—including scalars, compound, and special types—explaining declaration rules, naming best practices, dynamic variables, strings, integers, floats, booleans, arrays, and objects to help beginners start programming with PHP.

ArraysData TypesObjects
0 likes · 15 min read
Understanding PHP Variables and Data Types
php Courses
php Courses
Nov 13, 2023 · Backend Development

Using PHP array_push() to Add Elements to an Array

This tutorial explains the PHP array_push() function, its syntax, parameters, return behavior, error handling, and provides clear code examples showing how to append single or multiple elements to an array, including an alternative bracket syntax.

ArraysCode ExamplePHP
0 likes · 5 min read
Using PHP array_push() to Add Elements to an Array
php Courses
php Courses
Nov 7, 2023 · Backend Development

Using array_key_exists() to Check for Keys in PHP Arrays

This article explains how to use PHP's built-in array_key_exists() function to determine whether a specified key exists in associative arrays, indexed arrays, or object properties, providing syntax details and practical code examples for both associative and indexed arrays.

ArraysPHParray_key_exists
0 likes · 4 min read
Using array_key_exists() to Check for Keys in PHP Arrays
IT Services Circle
IT Services Circle
Sep 22, 2023 · Fundamentals

Overview of Common Data Structures and Algorithms

This article reviews essential data structures such as arrays, linked lists, stacks, queues, hash tables, and trees, explains their characteristics and trade‑offs, and introduces fundamental algorithm categories including sorting, searching, greedy, divide‑and‑conquer, and dynamic programming, with useful visualization links.

AlgorithmsArraysSorting
0 likes · 8 min read
Overview of Common Data Structures and Algorithms
Open Source Linux
Open Source Linux
Sep 1, 2023 · Fundamentals

Mastering C Pointers: From Basics to Advanced Function Passing

This article explains the fundamentals of C pointer variables, covering their memory layout, declaration, initialization, pointer arithmetic with arrays, passing pointers between functions, and using arrays as function parameters, illustrated with clear code examples and diagrams.

ArraysCMemory
0 likes · 8 min read
Mastering C Pointers: From Basics to Advanced Function Passing
php Courses
php Courses
Aug 22, 2023 · Backend Development

Handling Undefined Index Errors in PHP

This article explains why PHP throws "Undefined Index" errors when accessing non‑existent array keys or object properties and demonstrates practical solutions using isset(), array_key_exists(), and property_exists() with clear code examples.

ArraysError Handlingobject-properties
0 likes · 4 min read
Handling Undefined Index Errors in PHP
php Courses
php Courses
Aug 5, 2023 · Backend Development

How to Use PHP's array_unshift() to Prepend Elements to an Array

This article explains the PHP array_unshift() function, its syntax, and how to prepend single or multiple values—including other arrays—to the beginning of an array, with code examples and practical usage tips, while warning about its in‑place modification behavior.

ArraysPHParray_unshift
0 likes · 4 min read
How to Use PHP's array_unshift() to Prepend Elements to an Array
php Courses
php Courses
Jul 18, 2023 · Backend Development

Understanding and Using PHP's array_merge() Function

This article explains PHP's array_merge() function, its syntax, provides multiple code examples for merging two or more arrays, and highlights key considerations such as key overwriting when duplicate keys are present in PHP.

ArraysCode ExamplesPHP
0 likes · 3 min read
Understanding and Using PHP's array_merge() Function
php Courses
php Courses
Jun 27, 2023 · Backend Development

Comprehensive Guide to PHP foreach Loop with Examples

This article thoroughly explains PHP's foreach loop syntax, demonstrates its use with indexed, associative, and multidimensional arrays, and provides complete code examples showing how to access values and keys in each scenario.

/loopArraysBackend
0 likes · 6 min read
Comprehensive Guide to PHP foreach Loop with Examples
AI Cyberspace
AI Cyberspace
Mar 1, 2023 · Fundamentals

Master C Arrays, Pointers, and Strings: From Basics to Advanced Tricks

This comprehensive guide explains C arrays, their ordered and indexable nature, how to define, initialize, and access both one‑dimensional and multidimensional arrays, explores pointer arrays and array pointers, demonstrates passing arrays to functions, returning array pointers, and covers essential string handling functions such as strcpy, strlen, strcmp, and strncmp.

ArraysCStrings
0 likes · 21 min read
Master C Arrays, Pointers, and Strings: From Basics to Advanced Tricks
Liangxu Linux
Liangxu Linux
Feb 15, 2023 · Fundamentals

5 Common Bash Variable Mistakes and How to Avoid Them

This guide shares five practical tips to prevent frequent Bash variable errors—such as spacing around the equals sign, array syntax, quoting rules, command substitution, and naming conflicts with environment variables—helping developers write reliable shell scripts.

ArraysBashVariables
0 likes · 5 min read
5 Common Bash Variable Mistakes and How to Avoid Them
Liangxu Linux
Liangxu Linux
Nov 29, 2022 · Fundamentals

Master C Pointers: From Basics to Multi‑Level and Array Techniques

This guide explains C pointers, covering their definition, basic syntax, pointer arithmetic, multi‑level pointers, the relationship between pointers and multi‑dimensional arrays, and the distinction between array pointers and pointer arrays, supplemented with clear code examples and visual analogies.

ArraysCMemory Management
0 likes · 12 min read
Master C Pointers: From Basics to Multi‑Level and Array Techniques
Yiche Technology
Yiche Technology
Jul 14, 2022 · Fundamentals

Delve Go Debugger: Installation, Usage, and Command Reference

This article provides a comprehensive guide to installing and using Delve, the Go‑language source‑level debugger, covering installation methods, command‑line interface, debugging workflows, and practical examples for arrays, slices, and goroutines for developers.

ArraysDelveGo
0 likes · 21 min read
Delve Go Debugger: Installation, Usage, and Command Reference
ITPUB
ITPUB
May 26, 2022 · Operations

Master Shell Scripting: From Basics to Advanced Techniques

This comprehensive guide introduces shell programming fundamentals, demonstrates how to write, execute, and manage scripts, explains variables, strings, parameters, arithmetic, control structures, functions, arrays, and file inclusion, and provides practical code examples for Linux environments.

ArraysBashControl Flow
0 likes · 23 min read
Master Shell Scripting: From Basics to Advanced Techniques
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Oct 14, 2021 · Fundamentals

Introduction to Data Structures and Algorithms: Basics, Sorting, and Advanced Structures

This article introduces the fundamentals of data structures and algorithms, covering basic structures such as arrays and linked lists, common sorting algorithms, advanced structures like B+ trees and red‑black trees, explains Big O notation, and provides Java code examples for dynamic arrays, linked lists, queues, and stacks.

AlgorithmsArraysBig O
0 likes · 15 min read
Introduction to Data Structures and Algorithms: Basics, Sorting, and Advanced Structures
High Availability Architecture
High Availability Architecture
Feb 1, 2021 · Fundamentals

Java Buffer Types vs Native Arrays: Which Is Faster?

The article compares Java native arrays and Buffer types such as IntBuffer, showing through benchmarks that native arrays are typically over four times faster than Buffers, and discusses the memory management, performance trade‑offs, and practical implications of using each abstraction.

ArraysBenchmarkBuffers
0 likes · 5 min read
Java Buffer Types vs Native Arrays: Which Is Faster?
IT Xianyu
IT Xianyu
Dec 30, 2020 · Fundamentals

Quick Introduction to 8 Common Data Structures

This article provides a concise overview of eight essential data structures—arrays, linked lists, stacks, queues, hash tables, trees, heaps, and graphs—explaining their definitions, core operations, and typical applications in software development and computer science.

AlgorithmsArraysData Structures
0 likes · 12 min read
Quick Introduction to 8 Common Data Structures
Laravel Tech Community
Laravel Tech Community
Nov 8, 2020 · Backend Development

array_keys() – Returns All or Selected Keys of an Array (PHP)

This article explains the PHP array_keys() function, detailing its purpose of returning numeric or string keys from an input array, describing optional parameters search_value and strict, and providing multiple code examples that illustrate basic usage, filtered key retrieval, and handling of associative arrays.

ArraysBackendarray_keys
0 likes · 3 min read
array_keys() – Returns All or Selected Keys of an Array (PHP)
Python Crawling & Data Mining
Python Crawling & Data Mining
Oct 26, 2020 · Fundamentals

Master Go Arrays: Definitions, Initialization, and Traversal Explained

This article introduces Go arrays, covering their definition as contiguous fixed-length collections of identical types, demonstrates various declaration syntaxes, shows how to initialize arrays with explicit values or automatic length inference, explains traversal techniques using for loops and range, and explores multidimensional arrays with practical code examples.

ArraysGoInitialization
0 likes · 7 min read
Master Go Arrays: Definitions, Initialization, and Traversal Explained
Sohu Tech Products
Sohu Tech Products
Oct 14, 2020 · Fundamentals

Understanding JavaScript Arrays and Objects: Operations and Big O Complexity

This article explains when to use JavaScript arrays versus objects by describing their memory layout, common operations such as adding, removing, and searching elements, and analyzing each operation's time complexity using Big O notation, while also covering hash collisions and practical performance considerations.

ArraysBig OData Structures
0 likes · 12 min read
Understanding JavaScript Arrays and Objects: Operations and Big O Complexity
Big Data Technology & Architecture
Big Data Technology & Architecture
Mar 11, 2019 · Fundamentals

Scala Array Basics: Declaration, Operations, and Methods

This article introduces Scala arrays, covering their declaration, element access, multidimensional arrays, common operations such as iteration, summation, finding maximum values, concatenation, range creation, and a comprehensive list of array methods, all illustrated with clear code examples.

ArraysCode ExamplesData Structures
0 likes · 10 min read
Scala Array Basics: Declaration, Operations, and Methods
Tencent Cloud Developer
Tencent Cloud Developer
Sep 19, 2018 · Artificial Intelligence

Data Structures Related to Machine Learning Algorithms

The article explains that machine‑learning programs rely on the same fundamental data structures as other software—especially arrays for linear algebra—but mastering their implementation, dynamic behavior, and alternatives such as linked lists, trees, heaps, stacks, queues, and hash maps is crucial for scaling and optimizing complex AI tasks.

ArraysData Structuresalgorithm implementation
0 likes · 11 min read
Data Structures Related to Machine Learning Algorithms
MaGe Linux Operations
MaGe Linux Operations
Mar 7, 2017 · Fundamentals

Master Shell Variables: From Basics to Advanced Tricks

This article introduces the fundamentals of shell variables, covering local and environment variables, naming rules, assignment syntax, common reference methods, numeric operations, arrays (including multidimensional techniques using eval), and special parameters, providing practical examples and essential commands for effective Bash scripting.

ArraysBashEnvironment
0 likes · 10 min read
Master Shell Variables: From Basics to Advanced Tricks