Giter Site home page Giter Site logo

rafaelfigueredog / staticarrayinc Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 5 KB

The Array module provides basic functionality for a static array in C. It includes functions to initialize, append, get and set elements in the array.

C 100.00%
array cprogramming-language data-structures

staticarrayinc's Introduction

Static Array Module in C:

The Array module provides basic functionality for a static array in C. It includes functions to initialize, append, get and set elements in the array.

Overview

The Array struct represents the static array, and it has two fields:

elements: an array of integers that stores the values of the elements. size: an integer that indicates the number of elements currently in the array.

Basic Operations

The code provides four methods to interact with the array:

  1. init: initializes the array by setting its size to 0.
  2. append: adds an element to the end of the array, if there is space available.
  3. get: returns the value of the element at the specified index, or -1 if the index is out of bounds.
  4. set: sets the value of the element at the specified index to the given value, if the index is in bounds.

Usage

To use this code, you first need to include the "array.h" header file in your source file. Then, you can create an instance of the Array struct and use its methods to manipulate the array.

Here's an example of how to use the code:

#include "array.h"
#include <stdio.h>

int main() {
    Array arr;
    init(&arr);

    append(&arr, 1);
    append(&arr, 2);
    append(&arr, 3);

    for (int i = 0; i < arr.size; i++) {
        printf("%d ", get(&arr, i));
    }
    printf("\n");

    set(&arr, 1, 4);

    for (int i = 0; i < arr.size; i++) {
        printf("%d ", get(&arr, i));
    }
    printf("\n");

    return 0;
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.