Skip to content

Instantly share code, notes, and snippets.

View albow-net's full-sized avatar

あるぼう albow-net

View GitHub Profile
@albow-net
albow-net / array_test.swift
Last active August 22, 2017 07:07
配列の読み書き速度測定用ソースコード
func test_array( N:Int, num:Int ) -> Int {
// 長さNの配列を用意し0で初期化
var array = Array<Int>(repeating:0,count:N)
// 各要素にnumを代入
for i in 0..<N {
array[i] = num
}
// 各要素の和を計算
@albow-net
albow-net / array_test.cpp
Created August 18, 2017 03:47
配列の読み書き速度測定用ソースコード
#include <iostream>
#include <vector>
#include <string>
int test_array( const int N, const int num ) {
// 長さNの配列を用意
int *array = new int[N];
int sum = 0;
// 0で初期化