blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
3d9c511c83a70f75d8a9adc6f8eebb149090bd93
3b03c07a24801cbe367200c02da9f572e43cd7f4
/test/PolinomTestkit.cpp
0cf18a47500ebc74249faa8fc4f54232013c08bf
[]
no_license
left841/mp2-lab5-poly
06b3243ef2653127e1dc243374a7534dcfe6367c
dc2113e86d0ec144e718a69075d54d9ff32aeeda
refs/heads/master
2020-04-23T04:32:16.608088
2019-03-02T16:46:46
2019-03-02T16:46:46
170,910,639
0
0
null
2019-02-15T18:31:14
2019-02-15T18:31:14
null
UTF-8
C++
false
false
5,095
cpp
#include "gtest.h" #include "TDatList.h" #include "THeadRing.h" #include "TPolinom.h" TEST(TDatList, crate_object) { ASSERT_NO_THROW(TDatList a); } TEST(TDatList, insertions) { TDatList a; EXPECT_NO_THROW(a.InsFirst()); EXPECT_NO_THROW(a.InsLast()); EXPECT_NO_THROW(a.InsCurrent()); } TEST(TDatLis...
[ "catasd@yandex.ru" ]
catasd@yandex.ru
e85c5afdb045164688b3bb5e069fabbc2542b42e
ab42c02052925b4d54df32f787e95c02ef8e9834
/dsacpp-src/src/PQ/PQ_Test.cpp
2ad1398e6262ca48ba6b5f2d70bef94da6bcb7d8
[]
no_license
cybernagle/tsinghua-datastructure
11cf0c6dec81ad57ef0034335734e63973f9f42b
92214c6ae784f7e115670e7418b8c797d0debfc2
refs/heads/main
2023-08-15T23:08:03.777607
2021-10-11T01:55:21
2021-10-11T01:55:21
null
0
0
null
null
null
null
GB18030
C++
false
false
3,092
cpp
/****************************************************************************************** * Data Structures in C++ * ISBN: 7-302-33064-6 & 7-302-33065-3 & 7-302-29652-2 & 7-302-26883-3 * Junhui DENG, deng@tsinghua.edu.cn * Computer Science & Technology, Tsinghua University * Copyright (c) 2003-2021. All rights r...
[ "nagle.zhang@sap.com" ]
nagle.zhang@sap.com
581167147740239931a2cd7fe28d595e068618d0
c10d172280086d0e9c63d5675c4d03faf3d52c1e
/Foundational/Prime Numbers/DIVISORINC.cpp
d3b9ca1a225ad895269a50b91bd8fdc4f03a1558
[]
no_license
arundprabhu/Competitive-Coding
77b51a81909bc43b5b4fd884953937d3e4eb0f39
da9fc9fdc5dc3aacb992576ffe86db4112147df5
refs/heads/master
2022-02-22T10:10:33.152219
2019-10-08T13:29:56
2019-10-08T13:29:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,030
cpp
#include <bits/stdc++.h> using namespace std; typedef long long int lli; #define fastio ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0) template<typename T> T gcd(T a, T b){return(b?__gcd(a,b):a);} template <typename T> T lcm(T a, T b){return (a*b)/gcd(a,b); } class DivisorInc{ public: int countO...
[ "arundprabhu01@gmail.com" ]
arundprabhu01@gmail.com
248a0b3c748f875ddf05efc6612b39edb982e30d
32c7d6ddef3b3bda3ff406c7a688a88ab9015f15
/Contest 5/bai14.cpp
24b2b84fa774f475f14ed0291c69bd881737c632
[]
no_license
thanh2811/Data-Structure-and-Algorithms---PTIT
cdbeddc3417862bc0d6377e11dfa80d8480bc53f
e2fe4ad74317179124b3f7310ccef651ca9c0557
refs/heads/master
2023-05-29T17:37:04.488167
2021-06-17T05:16:01
2021-06-17T05:16:01
250,430,544
1
0
null
null
null
null
UTF-8
C++
false
false
576
cpp
#include<bits/stdc++.h> using namespace std; typedef long long ll; #define For(i,a,b) for(int i=a;i<=b;i++) void Res(){ int n; string s; cin>>n>>s; int f[n+10][n+10]; For(i,0,n) For(j,0,n) f[i][j]=0; for(int i=1;i<=n;i++){ for(int j=1;j<=n;j++){ if(s[i-1]==s[j-1] && i!=j)...
[ "toilathanh.2k@gmail.com" ]
toilathanh.2k@gmail.com
dad396b1090e84723ea35844446b94968a0a651f
6210d2a257f9e017bdba1892b8ffeeafb61bec5b
/Game Engine/CircularBuffer/CircularBuffer/main.cpp
abec11486b69e33fbcb4bf4478ed69a835df345c
[]
no_license
Jonhiew98/OpenGL
f9417c36a3ef67b3a1dcea0725e36f3a3d658a14
8494363c1ae71b71da665b96af0caf16b24b7242
refs/heads/master
2020-09-08T07:12:02.928573
2019-11-12T17:51:07
2019-11-12T17:51:07
221,054,386
0
0
null
null
null
null
UTF-8
C++
false
false
413
cpp
// CircularBuffer.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include "pch.h" #include <iostream> #include "CircularBuffer.h" using namespace std; int main() { CircularBuffer cb; MyType value = 3; cout << "Size of buffer: " << cb.getSize() << endl; cout << cb.getAt...
[ "0118562@kdu-online.com" ]
0118562@kdu-online.com
cd3d53973e1d0c2fa24af454caf8e20ef1017666
8448de53a91d6e2ac638290baf8e8cf6b2115322
/easyMule/src/UILayer/PPgTweaks.h
30fd04652d0a068acb2b4ef8afd0862fa78b4e35
[]
no_license
tempbottle/archive-code
0986e3e8dc689eedfb79adbbbbc51f6582f02d51
4a0b65fa026d868a018dddd14d5ed20e6c6044c6
refs/heads/master
2020-12-25T15:29:37.601713
2015-08-11T16:26:14
2015-08-11T16:26:14
null
0
0
null
null
null
null
GB18030
C++
false
false
7,471
h
/* * $Id: PPgTweaks.h 19524 2010-05-20 10:09:21Z dgkang $ * * this file is part of easyMule * Copyright (C)2002-2008 VeryCD Dev Team ( strEmail.Format("%s@%s", "emuledev", "verycd.com") / http: * www.easymule.org ) * * This program is free software; you can redistribute it and/or * modify it under the t...
[ "V.E.O@TOM.COM" ]
V.E.O@TOM.COM
e477bc1171c363af76e0d87b39bb3371a423c3bd
582800479621691ada9914c8dcae052e8d6884f2
/ui_mainwindow.h
8cc5fb2e6ab30857771dda9acd796b6eeeb83bc2
[]
no_license
ksmadhu/QTwebtest.github.io
b28dfe3bbf180465df86e93b826d5e60876afbb4
48a193c487172cfe016cc0aa73a6a2c526639e5a
refs/heads/master
2022-09-09T14:00:35.669876
2020-05-27T17:56:10
2020-05-27T17:56:10
267,377,523
0
0
null
null
null
null
UTF-8
C++
false
false
2,785
h
/******************************************************************************** ** Form generated from reading UI file 'mainwindow.ui' ** ** Created by: Qt User Interface Compiler version 5.13.2 ** ** WARNING! All changes made in this file will be lost when recompiling UI file! ***************************************...
[ "ksmadhu01@gmail.com" ]
ksmadhu01@gmail.com
4ecd9b30da8fcd0ccf1d220a0e6394fd1ff853b8
f79a54357c5c4eca55ea6b8cb58c8d115b93d733
/TriglavPlugInSDK/TriglavPlugInSDK.hh
9c279cdd74ace9302bf38fa14c7d0bfbec5578ab
[]
no_license
tempura-sukiyaki/cspsdkxx
e4cbb5f326966bd1fadf33fed0be60a19ca34657
b1ee27c432363c7ea89ece28425cf27becc989af
refs/heads/master
2021-08-23T15:57:52.908196
2017-12-05T14:51:45
2017-12-05T14:51:45
112,853,568
4
0
null
null
null
null
UTF-8
C++
false
false
80,693
hh
/// \file triglavpluginsdk.hh /// /// \copyright (C) 2017 tempura-sukiyaki /// #ifndef cspsdkxx_triglavpluginsdk_trigravpluginsdk_hh_ #define cspsdkxx_triglavpluginsdk_trigravpluginsdk_hh_ #if !defined( TP_ASSERT ) # include <cassert> # define TP_ASSERT( condition ) assert( condition ) #endif // !defined( TP_ASSERT )...
[ "10625603+tempura-sukiyaki@users.noreply.github.com" ]
10625603+tempura-sukiyaki@users.noreply.github.com
beb29a582cee92ed3b0aa565505880581364cc79
4424eb0c6d2666a37bbe5b9d6b3550ca11d51729
/SerialPrograms/Source/NintendoSwitch/Framework/SingleSwitchProgram.h
b4e6d71718694af9ffa663794fe699072f18373f
[ "LicenseRef-scancode-proprietary-license", "MIT" ]
permissive
ercdndrs/Arduino-Source
cd87e4036f0e36c3dd0180448293721be95cc654
c0490f0f06aaa38759aa8f11def9e1349e551679
refs/heads/main
2023-05-05T07:43:52.845481
2021-05-24T02:27:25
2021-05-24T02:27:25
369,910,477
0
0
MIT
2021-05-22T21:39:34
2021-05-22T21:39:33
null
UTF-8
C++
false
false
2,059
h
/* Single Switch Program Template * * From: https://github.com/PokemonAutomation/Arduino-Source * */ #ifndef PokemonAutomation_SingleSwitchProgram_H #define PokemonAutomation_SingleSwitchProgram_H #include "CommonFramework/Tools/ProgramEnvironment.h" #include "CommonFramework/Tools/ConsoleHandle.h" #...
[ "a-yee@u.northwestern.edu" ]
a-yee@u.northwestern.edu
3ed3e2cb2b863bdd11eee665c552e02659601b33
91a882547e393d4c4946a6c2c99186b5f72122dd
/Source/XPSP1/NT/multimedia/directx/dplay/dplay/dplog/stdafx.cpp
af2cd5f83348865df7a220a2d32e9a6ee83ac1e2
[]
no_license
IAmAnubhavSaini/cryptoAlgorithm-nt5src
94f9b46f101b983954ac6e453d0cf8d02aa76fc7
d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2
refs/heads/master
2023-09-02T10:14:14.795579
2021-11-20T13:47:06
2021-11-20T13:47:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
284
cpp
// stdafx.cpp : source file that includes just the standard includes // DPLOG.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information #include "stdafx.h" // TODO: reference any additional headers you need in STDAFX.H // and not in this file
[ "support@cryptoalgo.cf" ]
support@cryptoalgo.cf
75b19389a8fd716d6560f9bb21bc33a36ca6f378
d63676b2bdaded08f7e9e905087e2c10051b5476
/clu/InputSource/MultipleInputSource.h
f1a3d1bf387249afe289e3d84e35934c69a2a336
[ "MIT" ]
permissive
ShaiRoitman/clu
9e39f8edcedde5bb97e2253d0ec91b897d2b910d
c8816455a78ed70d1885fa23f6442d1d2a823a16
refs/heads/master
2021-11-03T00:26:50.125205
2021-09-12T12:39:30
2021-09-12T12:39:30
77,403,581
0
0
null
null
null
null
UTF-8
C++
false
false
417
h
#include "InputSource.h" #include <list> class MultipleInputSource : public clu::InputSource { public: MultipleInputSource(); virtual ~MultipleInputSource(); virtual void AddInputSource(clu::InputSource* input); virtual void Read(); virtual void GetLine(std::string& line); virtual bool IsEOF(); protected: std::...
[ "Shai@Roitman.info" ]
Shai@Roitman.info
3ffb6c9e0ee06c6e8fa53dbbc2ed00ed50d05dba
81656d3215fb79831eb87300b5fba1daabe51279
/SynEdit/Source/hpp/Win64/Debug/SynHighlighterXML.hpp
79801396ebecd24d8fba75742c9135a28a20d855
[]
no_license
Dmitry-Shweikus/delphi-10-sources
63bb65bc5721251604b7d1884685450eebee283d
0dd2c477582bf98ce2ee0c29683bb53be0289e8d
refs/heads/master
2020-04-09T04:35:21.455284
2018-12-02T09:20:39
2018-12-02T09:20:39
160,029,206
1
1
null
null
null
null
UTF-8
C++
false
false
6,891
hpp
// CodeGear C++Builder // Copyright (c) 1995, 2016 by Embarcadero Technologies, Inc. // All rights reserved // (DO NOT EDIT: machine generated header) 'SynHighlighterXML.pas' rev: 31.00 (Windows) #ifndef SynhighlighterxmlHPP #define SynhighlighterxmlHPP #pragma delphiheader begin #pragma option push #pragma option ...
[ "dmitry.shweikus@gmail.com" ]
dmitry.shweikus@gmail.com
c79dc8ddf1f7a62ef03b039de8ef5b84ddd93e43
55d560fe6678a3edc9232ef14de8fafd7b7ece12
/libs/dll/example/tutorial8/refcounting_api.hpp
4fa35b9fe1b438d6779bcfbe65784d2ed3dc4daa
[ "BSL-1.0" ]
permissive
stardog-union/boost
ec3abeeef1b45389228df031bf25b470d3d123c5
caa4a540db892caa92e5346e0094c63dea51cbfb
refs/heads/stardog/develop
2021-06-25T02:15:10.697006
2020-11-17T19:50:35
2020-11-17T19:50:35
148,681,713
0
0
BSL-1.0
2020-11-17T19:50:36
2018-09-13T18:38:54
C++
UTF-8
C++
false
false
2,375
hpp
// Copyright 2014 Renato Tegon Forti, Antony Polukhin. // Copyright 2015-2017 Antony Polukhin. // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt // or copy at http://www.boost.org/LICENSE_1_0.txt) //[plugcpp_my_plugin_refcounting_api #include "../tutoria...
[ "james.pack@stardog.com" ]
james.pack@stardog.com
38972f474c2f90e36dd0dec2d7fcd7435b314d05
5df66b7c0cf0241831ea7d8345aa4102f77eba03
/Carberp Botnet/source - absource/pro/all source/BJWJ/include/content/txIXPathObject.h
f408f0b4078b39547f26b46e987c43a8a798bccc
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
bengalm/fireroothacker
e8f20ae69f4246fc4fe8c48bbb107318f7a79265
ceb71ba972caca198524fe91a45d1e53b80401f6
refs/heads/main
2023-04-02T03:00:41.437494
2021-04-06T00:26:28
2021-04-06T00:26:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,397
h
/* * DO NOT EDIT. THIS FILE IS GENERATED FROM e:/builds/moz2_slave/mozilla-1.9.1-win32-xulrunner/build/content/xslt/public/txIXPathObject.idl */ #ifndef __gen_txIXPathObject_h__ #define __gen_txIXPathObject_h__ #ifndef __gen_domstubs_h__ #include "domstubs.h" #endif /* For IDL files that don't want to include ro...
[ "ludi@ps.ac.cn" ]
ludi@ps.ac.cn
fef45a4abb98e3c1fdfb396fdc81c31dee2c4a9c
cf8ddfc720bf6451c4ef4fa01684327431db1919
/SDK/ARKSurvivalEvolved_StructureTurretRocket_classes.hpp
0c7f675da5d23b17ed824eb20f717bb81897a9b6
[ "MIT" ]
permissive
git-Charlie/ARK-SDK
75337684b11e7b9f668da1f15e8054052a3b600f
c38ca9925309516b2093ad8c3a70ed9489e1d573
refs/heads/master
2023-06-20T06:30:33.550123
2021-07-11T13:41:45
2021-07-11T13:41:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,002
hpp
#pragma once // ARKSurvivalEvolved (329.9) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "ARKSurvivalEvolved_StructureTurretRocket_structs.hpp" namespace sdk { //--------------------------------------------------------------------------- //Classes //---------------------------------------------------...
[ "sergey.2bite@gmail.com" ]
sergey.2bite@gmail.com
73ad7e59ee39faa05f81ac76ed0f63f3b46dcdba
230b7714d61bbbc9a75dd9adc487706dffbf301e
/chrome/browser/android/webapk/webapk_post_share_target_navigator.cc
6398a1519761a7c721406b7df9d445b5eef85952
[ "BSD-3-Clause" ]
permissive
byte4byte/cloudretro
efe4f8275f267e553ba82068c91ed801d02637a7
4d6e047d4726c1d3d1d119dfb55c8b0f29f6b39a
refs/heads/master
2023-02-22T02:59:29.357795
2021-01-25T02:32:24
2021-01-25T02:32:24
197,294,750
1
2
BSD-3-Clause
2019-09-11T19:35:45
2019-07-17T01:48:48
null
UTF-8
C++
false
false
8,117
cc
// Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/android/webapk/webapk_post_share_target_navigator.h" #include <jni.h> #include <sstream> #include "base/android/jni_array.h" #...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
0802c53d5734068de175e39054a9410dedea2715
c846589fb651d8c05b4c120b330c5775b403940c
/lidar_closest_distance_detector/include/registration.h
6ead73b29f8a7e2dfbe4e642bf0321d2b93bbf52
[ "MIT" ]
permissive
Tutorgaming/lidar_closest_distance_detector
ec3de9196cf9f5812c6776526e83377dec513890
5d794ebbdd8f598ab45f571d9fde7e56c9494747
refs/heads/master
2022-03-11T01:20:49.079608
2019-08-11T14:58:13
2019-08-11T14:58:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,339
h
/* * Copyright Dynamic Robotic Systems (DYROS) Laboratory, Seoul National University. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain th...
[ "gyurse@gmail.com" ]
gyurse@gmail.com
1a1f2c61cfc540a4c75c141813fa547d98195fa9
30bdd8ab897e056f0fb2f9937dcf2f608c1fd06a
/Implementation/2787.cpp
788ad9e6246e4f46ffe2e5bf2b199af8b0a0d04c
[]
no_license
thegamer1907/Code_Analysis
0a2bb97a9fb5faf01d983c223d9715eb419b7519
48079e399321b585efc8a2c6a84c25e2e7a22a61
refs/heads/master
2020-05-27T01:20:55.921937
2019-11-20T11:15:11
2019-11-20T11:15:11
188,403,594
2
1
null
null
null
null
UTF-8
C++
false
false
915
cpp
#include <bits/stdc++.h> #define ff first #define ss second using namespace std; #define MP make_pair #define PB push_back #define ll long long #define int long long #define f(i,x,n) for(int i=x;i<n;i++) #define mod 1000000007 int a[100001],b[5]; int32_t main() { ios_base::sync_with_stdio(...
[ "mukeshchugani10@gmail.com" ]
mukeshchugani10@gmail.com
9e20c524adf1a106e4725196ff8e044be6effff0
551bf641d097e873666b689fe04900abfb811b98
/Basics of programming/Laba №11/Task 2-8/Task 2-8.cpp
b6ffc47f657f5fc039cd4781ec9de03455ded990
[]
no_license
TheOctan/Labs-in-cpp
71b6ff2fa96e4cb717e6a3dd354e2a005244ce7f
5b16fc766e07cfb29e7e3dc9261645205d3388e4
refs/heads/master
2020-03-28T04:30:19.890716
2018-09-06T19:48:39
2018-09-06T19:48:39
null
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
1,906
cpp
#include<iostream> #include<ctime> #include<cstdlib> using namespace std; void fillMatrixA2(int**A, int n); void outputMatrix2(int**A, int n); int sumOfMatrix2(int**A, int n, int x, int y); void fillMatrixB2(int**B, int**A, int n); int main() { cout << "Task 2-8\n"; srand(time(NULL)); int n; cout << "Input size ...
[ "kanatush.tim@gmail.com" ]
kanatush.tim@gmail.com
59babafc6d776769a06b3a74de89b9274a59bdf1
36579e820f5c07cd1fe796abc777f23f32efeb10
/src/components/viz/service/main/viz_main_impl.h
c7823692f599e3ef601cdd36d346128257dc7213
[ "BSD-3-Clause" ]
permissive
sokolovp/BraveMining
089ea9940ee6e6cb8108b106198e66c62049d27b
7040cdee80f6f7176bea0e92f8f3435abce3e0ae
refs/heads/master
2020-03-20T00:52:22.001918
2018-06-12T11:33:31
2018-06-12T11:33:31
137,058,944
0
1
null
null
null
null
UTF-8
C++
false
false
5,548
h
// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_VIZ_SERVICE_MAIN_VIZ_MAIN_IMPL_H_ #define COMPONENTS_VIZ_SERVICE_MAIN_VIZ_MAIN_IMPL_H_ #include "base/power_monitor/power_monitor.h" #...
[ "sokolov.p@gmail.com" ]
sokolov.p@gmail.com
38cefe7f19d0b511e7230129055e1c381f8c88c8
8ade3d20f78abfa461af79cd346882beaca07edc
/universal/OpenRPT/wrtembed/coloreditor.h
ad369b75b7df1fce70159e8eefc6ff1b8c762415
[]
no_license
eboladev/smarterp
337867fa215eb6042cdfdb894b8cbd2e766b98c3
94e7af29485885fb3f1e9a900dea54903a817b0a
refs/heads/master
2020-12-29T00:55:51.144001
2014-05-30T05:07:22
2014-05-30T05:07:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,454
h
/* * OpenRPT report writer and rendering engine * Copyright (C) 2001-2011 by OpenMFG, LLC * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or ...
[ "joejoshw@gmail.com" ]
joejoshw@gmail.com
635c1a1cb2ac9ea533668284a32a771f605b832e
dd6147bf9433298a64bbceb7fdccaa4cc477fba6
/7304/Nguyen_Duyen/Lab2/main.cpp
0c8880e7cfe0792a84f331d7a2489c67c877e420
[]
no_license
moevm/oop
64a89677879341a3e8e91ba6d719ab598dcabb49
faffa7e14003b13c658ccf8853d6189b51ee30e6
refs/heads/master
2023-03-16T15:48:35.226647
2020-06-08T16:16:31
2020-06-08T16:16:31
85,785,460
42
304
null
2023-03-06T23:46:08
2017-03-22T04:37:01
C++
UTF-8
C++
false
false
5,109
cpp
#include <iostream> #include "Shape.h" //Variant 12 Квадрат - Пятиконечная звезда - Правильный пятиугольник using namespace std; int Shape::id; class Square : public Shape { private: double a; public: Square(double a, Point cent, double angle, Color& c):a(a), Shape(cent, angle, c) { peaks.push_back(Point(cent.g...
[ "duyenpam@gmail.com" ]
duyenpam@gmail.com
a4b700c0aaec34b0f0200abc70d6c4a4dc2faba0
532e70076f9dbb5f70cdb1474e57a6d00f101abf
/usaco_Prime Cryptarithm.cpp
9233f5f4b26d9653aad590f28d9194d26b185703
[]
no_license
SakhawatCoU/Code
9e0f46b76fd2cd626fc5aeb08046dad50a4ddc37
da8384fcf2d779101acc2b6d34d8f47b6bafc8de
refs/heads/master
2020-04-05T03:21:26.190649
2016-06-28T19:49:15
2016-06-28T19:49:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,856
cpp
/* ID: mohamma107 LANG: C++ TASK: crypt1 */ #include <bits/stdc++.h> using namespace std ; #define forln(i,a,n) for(int i=a ; i<n ; i++) #define foren(i,a,n) for(int i=a ; i<=n ; i++) #define forg0(i,a,n) for(int i=a ; i>0 ; i--) #define fore0(i,a,n) for(int i=a ; i>=0 ; i--) #define pb push_back #define pp pop_bac...
[ "nazimsust@gmail.com" ]
nazimsust@gmail.com
bc4b306c1636cece7e4d20060c3d485bc411b6af
4cd9cf94e373877034ff9b90af8be566ad42c6b7
/libnaucrates/include/naucrates/dxl/operators/CDXLLogicalSelect.h
deb30043128babc78171a2dba2ca8d9d4b45e8cb
[ "Apache-2.0" ]
permissive
ppmht/gporca
6a912edac14b52d67636f6d51c90ef3b63f41304
7131e3e134e6e608f7e9fef9152a8b5d71e6a59e
refs/heads/master
2020-03-15T16:06:19.229839
2018-05-04T19:16:11
2018-05-04T19:17:14
132,228,406
1
0
null
null
null
null
UTF-8
C++
false
false
1,703
h
//--------------------------------------------------------------------------- // Greenplum Database // Copyright (C) 2011 Greenplum, Inc. // // @filename: // CDXLLogicalSelect.h // // @doc: // Class for representing DXL logical select operators // //------------------------------------------------------------------...
[ "eshen@pivotal.io" ]
eshen@pivotal.io
30c4f5b0322aedbbbd2ba38f850e8df9dd86b09e
3b9b4049a8e7d38b49e07bb752780b2f1d792851
/src/third_party/skia/src/core/SkTLList.h
48e81bdac1803fb18082101e77d7e58654447048
[ "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0", "BSD-3-Clause", "LicenseRef-scancode-proprietary-license", "LicenseRef-scancode-public-domain" ]
permissive
webosce/chromium53
f8e745e91363586aee9620c609aacf15b3261540
9171447efcf0bb393d41d1dc877c7c13c46d8e38
refs/heads/webosce
2020-03-26T23:08:14.416858
2018-08-23T08:35:17
2018-09-20T14:25:18
145,513,343
0
2
Apache-2.0
2019-08-21T22:44:55
2018-08-21T05:52:31
null
UTF-8
C++
false
false
11,207
h
/* * Copyright 2012 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkTLList_DEFINED #define SkTLList_DEFINED #include "SkTInternalLList.h" #include "SkTypes.h" #include <utility> /** Doubly-linked list of objects. The objects' lifet...
[ "changhyeok.bae@lge.com" ]
changhyeok.bae@lge.com
89c85ae13990001e270f6b9b10f435bb945ee9e5
29dc3d0844fdc2a45bf84a310a6b5db81276b958
/all projects and labs/circular_queue_linked_list/aditya queue.cpp
023588cf3cfb6ba6b7e749a5842b55bafd8b4267
[]
no_license
Mayurpotdar14/Information-Structure-Projects
ab01359550b25e8f8b876ddeeba3fc03c134412f
7926f47b07f1bc7608d94111b372937f4bb36ba4
refs/heads/master
2021-05-09T01:22:20.260252
2018-02-01T06:39:09
2018-02-01T06:39:09
119,794,467
0
0
null
null
null
null
UTF-8
C++
false
false
3,073
cpp
/** Filename : llist_queue.cpp Name : Maharshi Aditya Pothani ID : 5051028 Date : March 30, 2016 Professor : Dr. Mingon Kang Program : To Implement Queue using Linked List **/ #include <iostream> //Linked List structure typedef struct Node { int nData; // data struct Node *pNext; // pointer to t...
[ "mayurpotdar@github.com" ]
mayurpotdar@github.com
73f7163dc793e16c8d5751b045dff507268d1c6c
e5808d1b4c66c08b0bd232453dfb1675d38cc635
/ver1.cpp
c7470c0bed1d37096ab0e1f5d3bf06b94aa49b2f
[]
no_license
cdrann/OPPlab2
f6e640e41792ad0a8fd102a29b3fd9d9fdb05c50
a1e16bc69582963cd8839d8708af9557c54f6d9e
refs/heads/master
2023-02-27T23:09:20.241642
2021-02-09T07:48:07
2021-02-09T07:48:07
337,329,488
0
0
null
null
null
null
UTF-8
C++
false
false
4,074
cpp
// // Created by Admin on 11.05.2020. // #include <iostream> #include <stdio.h> #include <stdlib.h> #include <math.h> #include <time.h> #include <omp.h> using namespace std; #define N 15000 #define eps 1e-6 void matrMul(double* A, double* x, double* xnew) { #pragma omp parallel for //schedule (static)=(//type) ...
[ "a.redko@g.nsu.ru" ]
a.redko@g.nsu.ru
9271bb195f06f7e891d1a3a22f88558eb579fc35
e27d9e460c374473e692f58013ca692934347ef1
/drafts/quickSpectrogram_2/libraries/liblsl/external/lslboost/mpl/aux_/preprocessor/params.hpp
796ac50c5d602e2c8865934be4c09bd31a038adc
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
thoughtworksarts/Dual_Brains
84a0edf69d95299021daf4af9311aed5724a2e84
a7a6586b91a280950693b427d8269bd68bf8a7ab
refs/heads/master
2021-09-18T15:50:51.397078
2018-07-16T23:20:18
2018-07-16T23:20:18
119,759,649
3
0
null
2018-07-16T23:14:34
2018-02-01T00:09:16
HTML
UTF-8
C++
false
false
2,120
hpp
#ifndef BOOST_MPL_AUX_PREPROCESSOR_PARAMS_HPP_INCLUDED #define BOOST_MPL_AUX_PREPROCESSOR_PARAMS_HPP_INCLUDED // Copyright Aleksey Gurtovoy 2000-2004 // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.lslboost.org/LICENSE_1_0.t...
[ "gabriel.ibagon@gmail.com" ]
gabriel.ibagon@gmail.com
3bc25d65c917e9ea7ba17f2fcf1ef9fc668180a5
c9cdb8772eb74c832b703624f6395f1e8b84c09e
/CCore/src/tree/RBTreeUpLink.cpp
808675d9098fceee6f47d8e9f5e1a0d5fcf0b050
[ "BSL-1.0" ]
permissive
SergeyStrukov/CCore
70799f40d0ecfec75ab9298f60e7396413931800
509bd439ae5621603f9fbe8e8b3ca03721ac283b
refs/heads/master
2021-01-17T17:01:19.899215
2015-08-12T18:41:25
2015-08-12T18:41:25
3,891,233
6
1
null
null
null
null
UTF-8
C++
false
false
581
cpp
/* RBTreeUpLink.cpp */ //---------------------------------------------------------------------------------------- // // Project: CCore 1.02 // // Tag: General // // License: Boost Software License - Version 1.0 - August 17th, 2003 // // see http://www.boost.org/LICENSE_1_0.txt or the local copy...
[ "sshimnick@hotmail.com" ]
sshimnick@hotmail.com
a8a9403409fecf08cbe5d28fe937e4d525e3b57e
d6a32749afe28a0e86e5521bac0dedac417a9b08
/CondCore/SiStripPlugins/plugins/SiStripBadStrip_PayloadInspector.cc
105e871516b8ec8c0d5fdfbd62ec52c66ebac8df
[ "Apache-2.0" ]
permissive
raspereza/cmssw
d19fc781e238260f1c42dffafe4d68dd95593066
c72da2936d57a5c68e43b9182d7546b95a546365
refs/heads/master
2021-01-23T20:11:52.520072
2017-09-06T16:03:05
2017-09-06T16:03:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
18,950
cc
/*! \file SiStripBadStrip_PayloadInspector \Payload Inspector Plugin for SiStrip Bad Strip \author M. Musich \version $Revision: 1.0 $ \date $Date: 2017/08/14 14:37:22 $ */ #include "CondCore/Utilities/interface/PayloadInspectorModule.h" #include "CondCore/Utilities/interface/PayloadInspector.h" #include "Co...
[ "marco.musich@cern.ch" ]
marco.musich@cern.ch
1f64a611e4937247e5e71a4a677abddcadb3978d
4484d88a5c9305e6092932a5e4cd79f4d84862ef
/abc/181/181c.cpp
d0ba314ff61e021b6634ad60324455811a3f1c2f
[]
no_license
kumastry/atcoder
44dd20b9e784ecc2c92b772ef31fd84e007eb8cd
076360ece55bd918a3bd60f8a7ac3c69dd1044e9
refs/heads/main
2023-07-13T06:44:42.296796
2021-08-12T18:36:27
2021-08-12T18:36:27
325,573,728
0
0
null
null
null
null
UTF-8
C++
false
false
1,834
cpp
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <numeric> #include <cmath> #include <iomanip> #include <cstdio> #include <set> #include <map> #include <list> #include <cstdlib> #include <queue> #include <stack> #include <bitset> using namespace std; #define MOD 1000000007 #define...
[ "chma19063@g.nihon-u.ac.jp" ]
chma19063@g.nihon-u.ac.jp
85b5251564a7f07d5d5bbef706bc6c80d076d28d
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/git/gumtree/git_new_hunk_723.cpp
5b0dbf7997185c499ea242a3c52b6e4a8ba2bee4
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
618
cpp
} /* skip "objects\n" at end */ if (okay) { struct strbuf target = STRBUF_INIT; strbuf_add(&target, base, serverlen); strbuf_add(&target, data + i, posn - i - 7); if (is_alternate_allowed(target.buf)) { warning("adding alternate object store: %s", target.buf); newalt = xmalloc(...
[ "993273596@qq.com" ]
993273596@qq.com
04ddad5b766392c29e403d8c637aa49c42b6bcd3
3f80995105edf67cb6004ba1767b58d9f2d86fc0
/change.cpp
7f9a420a76ff8b19e0d99afc57b92e1691482a29
[ "MIT" ]
permissive
andrewlkraft/coding-puzzles-2
673ea21baaf3f3b089a4111c9ab2013634d57cdb
ae037dded5c3ec07a7aa65cda32bc837e8a1e304
refs/heads/master
2022-09-11T11:55:36.626249
2020-05-31T02:53:07
2020-05-31T02:53:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
905
cpp
#include <iostream> #include <vector> #include <algorithm> using namespace std; struct testcase { int p; vector<int> coins; }; struct collection { int amt, num; collection operator+ (const collection& other) { collection c; c.amt = this->amt + other.amt; c.num = this->num + other.num; return c; } colle...
[ "43654559+AndrewKraft@users.noreply.github.com" ]
43654559+AndrewKraft@users.noreply.github.com
d674e43e2ddd2adb5031e9914056ae77ccce2266
fe75ab418adfd723f48b8eafc80515c9fd913395
/LeetCode/0119. Pascal's Triangle II.cpp
29e8326fa54c8f92edffa2b92e7c36675fe2e748
[]
no_license
AshkenSC/Programming-Practice
d029e9d901f51ef750ed4089f10c1f16783d2695
98e20c63ce1590deda6761ff2f9c8c37f3fb3c4a
refs/heads/master
2021-07-20T06:41:12.673248
2021-06-25T15:44:06
2021-06-25T15:44:06
127,313,792
0
0
null
null
null
null
UTF-8
C++
false
false
733
cpp
/* 119. Pascal's Triangle II 给定一个非负索引 k,其中 k ≤ 33,返回杨辉三角的第 k 行。 */ class Solution { public: vector<int> getRow(int rowIndex) { vector<vector<int>> result; result.push_back(vector<int>(1, 1)); for (int i = 2; i <= rowIndex + 1; i++) { vector<int> row(i); row[0] = ...
[ "393940378@qq.com" ]
393940378@qq.com
67f3f3c792f34af64f900f3c8ec9ba43a3e5a47b
e0115fd58d9ce6cdbbfc0401339e04f0e6e933b7
/JuggleSoftApp/Scripts Arduino/Reception_de_donnees/Reception_de_donnees.ino
752ee17afd8dd8e1d3fb046ee13b24bc9097036d
[]
no_license
YvesTAGNY/JuggleSoftApp
6110b55f9df01b6bff752259e24b515b76c084f6
96a449689c9dc005abef058557311e8ad356cec0
refs/heads/master
2021-01-02T22:38:53.083904
2017-05-18T15:55:23
2017-05-18T15:55:23
78,734,997
0
1
null
2017-06-04T10:29:58
2017-01-12T10:41:21
Java
UTF-8
C++
false
false
700
ino
/*Constantes identifiant les LED*/ #define LED_B 10 #define LED_R 9 /*Buffeur de reception de données*/ char dataRecvL[2]; void setup() { pinMode(LED_B, OUTPUT); pinMode(LED_R, OUTPUT); Serial.begin(9600); } void loop() { if(Serial.available()){ dataRecvL[0] = Serial.read(); dataRecv...
[ "yves.tagny@yahoo.fr" ]
yves.tagny@yahoo.fr
99ad341cc565519623debe0ec29b94d1a52a06e0
01ba077291810cac5f18c84af51775b6b099cc92
/src/qt/sendcoinsdialog.cpp
827567ff5d4c106fd4fc6a25f8de387a18447b80
[ "MIT" ]
permissive
genterium-project/gentarium
01b1fcfec5f46c428f195fc1fc7f9040a29f7698
7c7fa9548f1cefaa46808013a2eb046b14d7b6c9
refs/heads/master
2020-03-23T12:32:12.090316
2018-11-15T14:59:36
2018-11-15T14:59:36
141,565,050
9
9
MIT
2018-11-15T12:51:35
2018-07-19T10:39:46
C++
UTF-8
C++
false
false
37,068
cpp
// Copyright (c) 2011-2015 The Bitcoin Core developers // Copyright (c) 2014-2017 The Dаsh Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "sendcoinsdialog.h" #include "ui_sendcoinsdialog.h" #include "a...
[ "dimonk280894@gmail.com" ]
dimonk280894@gmail.com
cf51ed83c7042414f507e3116d9ad39b009ddd14
d0c44dd3da2ef8c0ff835982a437946cbf4d2940
/cmake-build-debug/programs_tiling/function14408/function14408_schedule_9/function14408_schedule_9_wrapper.cpp
d2f5e267b6097865f35042bf4a761bf9130d277e
[]
no_license
IsraMekki/tiramisu_code_generator
8b3f1d63cff62ba9f5242c019058d5a3119184a3
5a259d8e244af452e5301126683fa4320c2047a3
refs/heads/master
2020-04-29T17:27:57.987172
2019-04-23T16:50:32
2019-04-23T16:50:32
176,297,755
1
2
null
null
null
null
UTF-8
C++
false
false
854
cpp
#include "Halide.h" #include "function14408_schedule_9_wrapper.h" #include "tiramisu/utils.h" #include <cstdlib> #include <iostream> #include <time.h> #include <fstream> #include <chrono> #define MAX_RAND 200 int main(int, char **){Halide::Buffer<int32_t> buf0(256, 2048, 64); init_buffer(buf0, (int32_t)0); ...
[ "ei_mekki@esi.dz" ]
ei_mekki@esi.dz
53ca678364364b787524c267cfb2420de69c351a
1df0f2dd40099cdc146dc82ee353e7ea4e563af2
/cinchona/brt/window.cpp
eb7b382dd30bcc245df4831e66c0146e85151f31
[]
no_license
chuckbruno/aphid
1d0b2637414a03feee91b4c8909dd5d421d229d4
f07c216f3fda0798ee3f96cd9decb35719098b01
refs/heads/master
2021-01-01T18:10:17.713198
2017-07-25T02:37:15
2017-07-25T02:37:15
98,267,729
0
1
null
2017-07-25T05:30:27
2017-07-25T05:30:27
null
UTF-8
C++
false
false
507
cpp
#include <QtGui> #include "widget.h" #include "window.h" Window::Window() { QDateTime local(QDateTime::currentDateTime()); qDebug() << "local time is:" << local; srand (local.toTime_t() ); glWidget = new GLWidget(this); setCentralWidget(glWidget); setWindowTitle(tr("Bend Roll Twist")); } Window::...
[ "zhangmdev@gmail.com" ]
zhangmdev@gmail.com
781ea03bfebb45225c1d81b596dd7b883d479b0e
eba5ec4ee324edfa5a0f377c6f948cffb9dee1d8
/components/mus/ws/window_tree_unittest.cc
399a38ca2fad39709ba8b982afc3b6f7da24ef65
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference", "BSD-2-Clause-Views" ]
permissive
bopopescu/Monarch
2c1e636da3995d1f20df48561db97fd0d8f9317b
4f8ee8e6dda3669f734866e4999db173c5ec5aef
refs/heads/master
2021-06-16T11:42:58.246734
2017-03-25T04:02:04
2017-03-25T04:02:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
18,706
cc
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include <string> #include <vector> #include "base/message_loop/message_loop.h" #include "components/mus/public/cpp/types.h" #include "components/mus/pub...
[ "danrwhitcomb@gmail.com" ]
danrwhitcomb@gmail.com
c8471f65bb1968908c5c9c93edefbe42bade8c63
f1ca98a59ee919332a7936ac7770625dd3774270
/MAIN.cpp
225259a6a48ac20ae5b167db231113b4ef4004b3
[]
no_license
edslas/vtronics-flat-test
06eaf34445dd3349a2bce4c3284ef7615fae6d56
6e3f07d50fd688f7848424a0de950189feb0dc5f
refs/heads/master
2020-04-20T12:12:07.278363
2019-02-03T14:28:28
2019-02-03T14:28:28
168,837,202
0
0
null
null
null
null
UTF-8
C++
false
false
23,856
cpp
/*************************************************************************/ /* */ /* File Name: Main.CPP */ /* Name: Voltronics, Potentiometer Tester */ /* Project Number: 1000 ...
[ "edslas@gmail.com" ]
edslas@gmail.com
254c87a6edd1b20616bc5a6ec874b056543fcf00
196e55f16c09d2eba75f3a38208ee6beb65aa0e4
/MyGame/Classes/GamePlay.h
35462f08b5d2dca18f4170dcec3cefa4c61ecd7f
[]
no_license
MrBia/CC_Game
a89f927771bbca235eec63e8b4165e60b8a34439
86ec3f4bb7e2b2374ce62386fce2084d56a525b1
refs/heads/master
2020-12-14T06:31:00.398935
2020-03-20T04:27:15
2020-03-20T04:27:15
234,668,663
0
0
null
null
null
null
UTF-8
C++
false
false
1,691
h
#pragma once #include "C:\Users\Admin\Desktop\CC_Game\MyGame\cocos2d\cocos\2d\CCScene.h" #include "cocos2d.h" #include "SneakyJoystick.h" #include "SneakyJoystickSkinnedBase.h" #include "Objject.h" #include "Knight.h" #include "Zombie.h" #include "Dragon.h" #include "ui\UIButton.h" #include "Soul.h" #include "CountTime...
[ "truongngochao98@gmail.com" ]
truongngochao98@gmail.com
46346d7c5ece8b09ccb41695f07ccf64d7d30b61
c953b84ab4f12f7684d10112df2ae49d9c9fb363
/packages/language/c/libc/time/v3_0/src/strptime.cxx
8979326dbfac78a80086dc342a25fe9017013f53
[]
no_license
resper-guo/Umind-eCos-mt7628
768396a9b7457a75690d4fe6c76263ee22dd0c30
c98eb43702500c80a021388014162adce73c3b1a
refs/heads/master
2022-10-22T02:41:44.750239
2020-06-12T01:15:20
2020-06-12T01:15:20
null
0
0
null
null
null
null
ISO-8859-1
C++
false
false
8,907
cxx
// // Adapted for use in eCos by Gary Thomas // Copyright (C) 2003 Gary Thomas // /* * Copyright (c) 1999 Kungliga Tekniska Högskolan * (Royal Institute of Technology, Stockholm, Sweden). * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitte...
[ "421811575@qq.com" ]
421811575@qq.com
e07e4f4db036fe7c167e89d14741489913ea2925
fa99d6a0981510675c6abdff0a9dde1fc61c319b
/Software/esp-idf-customized/components/asio/asio/asio/src/tests/unit/windows/random_access_handle.cpp
2a8f92ec7dcf9582d636442ea55b898a2f65a782
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "MIT", "BSL-1.0" ]
permissive
trichl/WildFiOpenSource
f29de95b208586061d6d7a75ffd9c317ed0a4679
2ac5e86c3619782c8582ce81065f267dce830f0b
refs/heads/main
2023-04-19T00:01:50.853085
2021-10-09T09:09:33
2021-10-09T09:09:33
368,456,988
7
3
MIT
2022-10-25T03:13:18
2021-05-18T08:31:23
C
UTF-8
C++
false
false
4,584
cpp
// // random_access_handle.cpp // ~~~~~~~~~~~~~~~~~~~~~~~~ // // Copyright (c) 2003-2019 Christopher M. Kohlhoff (chris at kohlhoff dot com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // // Disable autolink...
[ "59619846+trichl@users.noreply.github.com" ]
59619846+trichl@users.noreply.github.com
4d60141b245405d587a2ca65933c87301ef9bf62
abce0e27384dd9b93224c94e395fee097363a145
/C++ DS-ALGO/src/Sort/SelectionSort.h
027807e51c3c23a269431d31454bf3277adedced
[]
no_license
ngmgit/ds-algo
ae3f9ed203ed091aaab25e70b37960d59148ad76
629fd9f8ad4dfd305b7362356b230ac7a91e4b75
refs/heads/master
2020-04-03T05:18:20.492353
2018-10-28T06:09:15
2018-10-28T06:09:15
155,041,178
0
0
null
null
null
null
UTF-8
C++
false
false
505
h
#ifndef MY_SELECTION_SORT_H #define MY_SELECTION_SORT_H #include <vector> template <typename T> void SelectSort(std::vector<T>& arr); template <typename T> void SelectSort(std::vector<T>& arr) { int minIdx; for (int i = 0; i < arr.size() - 1; i++) { minIdx = i; for (int j = i + 1; j < arr.size(); j++) { ...
[ "nishanth.engg93@gmail.com" ]
nishanth.engg93@gmail.com
ede1c7777bc2fa54b98859d0827ff16a8e155497
007867b4937f52de7746f79124ef104b2d183f5a
/动态规划/滚动数组/HDU 3053 ( Group Travel ) .cpp
12db07927852f505090027dc00c84cbc3e31e22e
[]
no_license
WhereIsHeroFrom/Algorithm
84dcee3174dbcd9e996442f07627a96c46f6c74a
6bf620d6219770db60b40d151eecd686955ab723
refs/heads/master
2023-08-05T14:05:48.385791
2021-10-06T00:21:39
2021-10-06T00:21:39
306,805,686
16
4
null
null
null
null
GB18030
C++
false
false
3,971
cpp
/* 题意:N个学生,学生i想去的地方为P[i](0 <= P[i] <= 10^5), 初始时所有学生都在学校里,由一辆公交车带出来选K个站停靠,停靠点一定是在P[i]里选出来的,有需要的同学下车,为了使所有学生的总距离最小,求这个最小值(K<=N<=3000)。 题解:决策单调性。 状态表示:dp[i][j]表示在第i个站点放置第j个位置时的最小耗费 状态转移:dp[i][j] = min{dp[i'][j-1] + cost(i', i)| i'<i} cost(i', i)的计算cost(i', i) = sum{ min{ dist(k,i'...
[ "menjitianya2007@163.com" ]
menjitianya2007@163.com
b131264b1d8bb1a4f363c5f85d2e0baddc1b81ed
6ced41da926682548df646099662e79d7a6022c5
/aws-cpp-sdk-redshift-serverless/source/model/DeleteEndpointAccessResult.cpp
5abade171a2bdcd37bfa5eb7a81be294cc0a54e5
[ "Apache-2.0", "MIT", "JSON" ]
permissive
irods/aws-sdk-cpp
139104843de529f615defa4f6b8e20bc95a6be05
2c7fb1a048c96713a28b730e1f48096bd231e932
refs/heads/main
2023-07-25T12:12:04.363757
2022-08-26T15:33:31
2022-08-26T15:33:31
141,315,346
0
1
Apache-2.0
2022-08-26T17:45:09
2018-07-17T16:24:06
C++
UTF-8
C++
false
false
1,012
cpp
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include <aws/redshift-serverless/model/DeleteEndpointAccessResult.h> #include <aws/core/utils/json/JsonSerializer.h> #include <aws/core/AmazonWebServiceResult.h> #include <aws/core/utils/StringUtils....
[ "aws-sdk-cpp-automation@github.com" ]
aws-sdk-cpp-automation@github.com
14d2e2b3489b4462352b9e5dfcb5b5d3fa6464aa
e1825eda73c111c85e07dceeab91b630475db07a
/Arduino/Romi-RPi-I2CSlave/motor_pid_control.ino
71a894919aac6034d51e6855c4ac8b3fe83fd960
[]
no_license
venki666/CpE476_demos
e9c043d42c76cb28b806b037f7f2e5e0f25e4fca
f2863ab2752de242bca1a2dffd04d2544bf95ecb
refs/heads/master
2023-08-14T10:20:57.060908
2023-08-10T05:32:03
2023-08-10T05:32:03
211,710,922
0
2
null
null
null
null
UTF-8
C++
false
false
5,116
ino
/* PID controller inspired by: https://github.com/jfstepha/differential-drive/blob/master/scripts/pid_velocity.py TODO : Integral term of PID seems broken. Try to tune at some point. */ #include "motor.h" /* methods smoothing instantaneous wheel velocities reported by the odometry methods get_instant_l...
[ "vm@unlv.nevada.edu" ]
vm@unlv.nevada.edu
8a314f102cc778c98e95d8b00b58750c3fdfaa17
b2d162fa858e58e28a1c753b191d7b8295c505b2
/shapeWorks/code/ITKParticleSystem/itkParticleFunctionBasedShapeSpaceData.h
e453c6c885bd50b4f759accc8e00b554a3438734
[]
no_license
XiaoxiaoLiu/SCDS
8c1f64a66dc6daa1458ffc67ba71323183c2397a
594496aff64f5b2f54723e55ab34ba03263f1ef3
refs/heads/master
2016-09-06T09:26:05.561116
2013-06-25T15:26:34
2013-06-25T15:26:34
2,816,144
1
1
null
null
null
null
UTF-8
C++
false
false
10,550
h
/*========================================================================= Program: ShapeWorks: Particle-based Shape Correspondence & Visualization Module: $RCSfile: itkParticleFunctionBasedShapeSpaceData.h,v $ Date: $Date: 2009/05/06 21:49:15 $ Version: $Revision: 1.1.1.1 $ Author: $Auth...
[ "xiaoxiao.liu@kitware.com" ]
xiaoxiao.liu@kitware.com
6a7cebdf4bf7de975915c91c79b89ca2b04b2124
30bdd8ab897e056f0fb2f9937dcf2f608c1fd06a
/contest/1542595141.cpp
0633fce2d9e0fd111a9f9b1d023782e13269c726
[]
no_license
thegamer1907/Code_Analysis
0a2bb97a9fb5faf01d983c223d9715eb419b7519
48079e399321b585efc8a2c6a84c25e2e7a22a61
refs/heads/master
2020-05-27T01:20:55.921937
2019-11-20T11:15:11
2019-11-20T11:15:11
188,403,594
2
1
null
null
null
null
UTF-8
C++
false
false
1,829
cpp
#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <algorithm> #include <unordered_set> #include <vector> #include <cmath> #include <string> #include <set> #include <map> #include <queue> #include <cstdio> #include <random> #include <ctime> #include <cassert> #include <bitset> #i...
[ "harshitagar1907@gmail.com" ]
harshitagar1907@gmail.com
bdb52c9fb1ebedfefd58752bf8f6e31ac12de86b
c20c4812ac0164c8ec2434e1126c1fdb1a2cc09e
/Source/Source/Server/JX3ServerMergeTool/src/Test/Jx3DBChecker/KG_DBCheckRule.cpp
40a64ebc99a1474cd9dd262ba9f91692acbc8768
[ "MIT" ]
permissive
uvbs/FullSource
f8673b02e10c8c749b9b88bf18018a69158e8cb9
07601c5f18d243fb478735b7bdcb8955598b9a90
refs/heads/master
2020-03-24T03:11:13.148940
2018-07-25T18:30:25
2018-07-25T18:30:25
142,408,505
2
2
null
2018-07-26T07:58:12
2018-07-26T07:58:12
null
GB18030
C++
false
false
111,474
cpp
////////////////////////////////////////////////////////////////////////////////////// // // FileName : KG_DBCheckRule.cpp // Version : 1.0 // Creater : Liuzhibiao // Date : 2009-12-8 // Comment : /////////////////////////////////////////////////////////////////////////////////////...
[ "dark.hades.1102@GAMIL.COM" ]
dark.hades.1102@GAMIL.COM
a3bd380b105a1c81a6fac8994c4f0d1da8a89d86
aaa87c429aa06613fbe52b89c01124843131e560
/src/steps_to_permutation.h
65af4b51b27551ecd2a8ef7e10256a98808080e5
[]
no_license
venustus/algorithms
404b551db1254e7a0390bb744bc3104e16a2ae47
05d30ed76b57a2f05a90f19171ae27aa563e7006
refs/heads/master
2021-01-16T18:20:21.454672
2013-11-13T03:14:54
2013-11-13T03:14:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
607
h
/* * steps_to_permutation.h * * Created on: Sep 20, 2013 * Author: venkat */ #ifndef STEPS_TO_PERMUTATION_H_ #define STEPS_TO_PERMUTATION_H_ #include <vector> struct SwapStep { int srcValue; int destValue; }; /** * Problem: * Given two integer arrays containing elements 0 .. n - 1, but not necessaril...
[ "venkat.pedapati@gmail.com" ]
venkat.pedapati@gmail.com
d3c6ec30e392a1f482418dd5aae88641d49830ce
c7f6cd6cebfeda2ab685955a9683a22d244dcb1c
/ModuleCpp/bjetExtractor.cxx
542ffa1e3111c284b0ef8f4df7d2c2e7b7ffa05c
[]
no_license
teqn0x/Module_Rbl
27a2e8e957172a4f4e930e94f6dcf9436f2f0634
8f31aa0d99ac3a9f84838d929a4e056082bd35fe
refs/heads/master
2021-01-10T19:32:53.864283
2014-08-07T09:07:38
2014-08-07T09:07:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,638
cxx
#include <iostream> #include "TLorentzVector.h" #include "bjetExtractor.h" // Constructor, called with j1,j2,j3,j4 and their MV1 variables mv11,mv12,mv13,mv14 bjetExtractor::bjetExtractor(TLorentzVector j1, TLorentzVector j2, TLorentzVector j3, TLorentzVector j4, float mv11, float mv12, float mv13, float mv14){ lv[0...
[ "teqn0x@gmail.com" ]
teqn0x@gmail.com
ce0292a8a0fd8964932e1be092216ed886ccf783
065b5aa4323af0a41a27016106eeaa7992b0727e
/namedialog.h
d759958fc8b81b9ccc3c3d29c6f8ab7cf130724b
[]
no_license
Zentions/OSG
197b64d12c191348382718a9d03e7f6e90e1a21d
f0dc5c8f17594dec37be4be67062f56730e79e31
refs/heads/master
2020-12-02T07:45:13.787846
2017-07-10T00:32:20
2017-07-10T00:32:20
96,719,775
0
0
null
null
null
null
UTF-8
C++
false
false
732
h
#ifndef NAMEDIALOG_H #define NAMEDIALOG_H #include <QDialog> #include <QMessageBox> #include <QFileDialog> #include <QDir> #include <QDebug> namespace Ui { class NameDialog; } class NameDialog : public QDialog { Q_OBJECT public: explicit NameDialog(QWidget *parent = 0); QString getName(); void setTy...
[ "1370729203@qq.com" ]
1370729203@qq.com
ec52533ab4285c68db7eaf0a7072df5941be0fba
177f5c6751c09e5848fa6897a8b539ca64bc135c
/GLRole_Prey.cpp
b95069064aeaa11c6819e148f797444b12943125
[ "MIT" ]
permissive
cschen1205/cpp-flocking
4f95b7a1483048c4b380e140abdd7ceb168cb8ee
67d4c4297df1a377e2d5f9ad91997234c482f078
refs/heads/master
2021-01-23T10:28:40.692947
2017-06-16T13:15:46
2017-06-16T13:15:46
93,061,526
0
1
null
null
null
null
UTF-8
C++
false
false
1,403
cpp
#include "GLRole_Prey.h" #include "GameEntity.h" #include "GameWorld.h" #include <cfloat> GLRole_Prey::GLRole_Prey(GameEntity* pAgent) : GLRole(pAgent) , m_pEvadeSteeringHandler(NULL) { } GLRole_Prey::~GLRole_Prey() { } void GLRole_Prey::Update(const long& lElapsedTicks) { if(m_pEvadeSteeringHandler == NULL) { ...
[ "cschen1205@gmail.com" ]
cschen1205@gmail.com
56cef2a87aaa7d7ecdd678768b9cc6fedfab1f74
ffdc77394c5b5532b243cf3c33bd584cbdc65cb7
/mindspore/lite/tools/converter/parser/caffe/caffe_quantize_parser.h
4c8c791a9787e2464ec1cc20d0093b00ded2d823
[ "Apache-2.0", "LicenseRef-scancode-proprietary-license", "MPL-1.0", "OpenSSL", "LGPL-3.0-only", "LicenseRef-scancode-warranty-disclaimer", "BSD-3-Clause-Open-MPI", "MIT", "MPL-2.0-no-copyleft-exception", "NTP", "BSD-3-Clause", "GPL-1.0-or-later", "0BSD", "MPL-2.0", "LicenseRef-scancode-f...
permissive
mindspore-ai/mindspore
ca7d5bb51a3451c2705ff2e583a740589d80393b
54acb15d435533c815ee1bd9f6dc0b56b4d4cf83
refs/heads/master
2023-07-29T09:17:11.051569
2023-07-17T13:14:15
2023-07-17T13:14:15
239,714,835
4,178
768
Apache-2.0
2023-07-26T22:31:11
2020-02-11T08:43:48
C++
UTF-8
C++
false
false
1,398
h
/** * Copyright 2022 Huawei Technologies Co., Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law...
[ "wangshaocong1@huawei.com" ]
wangshaocong1@huawei.com
40e815001eafa41a7f65c963ec165e6553ae68c5
3f755200ff5b776d276106b4bf68bda0cfa195a0
/src/main.cpp
1230f6482fa8469cd1d4b247b321d49ed2eaeb30
[]
no_license
ArmyAntSEC/RHex_Barebones
f0fdb48727705bbc038618fbc10bbcb158c38cc7
a3a69c2fb0c3de3c8a847e7a8e7a200e015b7c24
refs/heads/master
2023-03-05T13:44:15.313864
2021-02-08T18:23:27
2021-02-08T18:23:27
328,362,318
0
0
null
null
null
null
UTF-8
C++
false
false
1,749
cpp
#include <Arduino.h> #include <pwm_lib.h> using namespace arduino_due::pwm_lib; #define MOTOR_EN1 48 #define MOTOR_EN2 49 #define MOTOR_CS A5 #define ENCODER_1 50 #define ENCODER_2 51 #define OPTO 52 pwm<pwm_pin::PWML3_PC8> MOTOR_PWM; long int numberOfClicksOne = 0; long int numberOfClicksTwo = 0; void interruptHan...
[ "armyAntSEC@armyr.se" ]
armyAntSEC@armyr.se
c9d31487e71f5c448468c63922b9d977773f18ea
5c23566734e5596340cf5550aa462a901179b080
/simpleGameEngine/simpleGameEngine/MoveComponent.h
65ff084b24f05db0fb9c7022b0cf489734e4c69a
[]
no_license
NathanGauthier/simpleEngine
0a273a16169e846060cb2d8bffd6bf1d49392ebf
d5ebc2398cdcbb47c01d6f4aa3fd5db8674e4db6
refs/heads/main
2023-01-30T18:44:30.243732
2020-12-08T15:38:33
2020-12-08T15:38:33
319,680,872
0
0
null
null
null
null
UTF-8
C++
false
false
563
h
#pragma once #include"Component.h" class MoveComponent : public Component { public: MoveComponent(Actor* ownerP, int updateOrder = 10); MoveComponent() = delete; MoveComponent(const MoveComponent&) = delete; MoveComponent& operator = (const MoveComponent&) = delete; float getForwardSpeed() const { return forward...
[ "ngauthier@artfx.fr" ]
ngauthier@artfx.fr
e97926b99f94c9a7b5b7c94655970e26fd047dc0
3dc0930fd1917250c8476c42293fde29139886ed
/Week 11/Chapter15_PolymorphicBehaviour/Chapter15_PolymorphicBehaviour/Main.cpp
77557ed8ce0083f5a50819b3037a28eb10213e2e
[]
no_license
charlottemarriner/Semester-1-GEC
e62ccd9cfb6d3c69ab7eb4be97bed5f49f0d9678
a32a7306fd305972ef9bf3a8d5374c3654178ddd
refs/heads/master
2022-04-08T01:08:04.194855
2020-03-20T14:46:35
2020-03-20T14:46:35
241,207,361
0
0
null
null
null
null
UTF-8
C++
false
false
664
cpp
//Main.cpp #include "Mammals.h" #include <iostream> using namespace::std; int main() { Mammal* mammalPtr; int choice; cout << "1.Dog 2.Cat 3.Horse 4.Pig" << endl << "Enter choice: "; cin >> choice; cin.clear(); cin.ignore(numeric_limits<streamsize>::max(), '\n'); //Create the chosen mammal - stored within ...
[ "57407155+charlottemarriner@users.noreply.github.com" ]
57407155+charlottemarriner@users.noreply.github.com
fce9e66deeaa1cb033e7c639f0560f0dee9b6fdf
dfe01ef79596f1c9f12c6ba6fe46d703369054fe
/renderdoc/driver/d3d12/d3d12_manager.cpp
04f71cffc9ceb2ae9569d1f11869a057a765f6fa
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
galek/renderdoc
330b209da7618e38df595e8d3c5ac5f9e5734853
39d31e880d9d8997372f0121bec8950e9b4e4442
refs/heads/master
2021-11-25T06:15:53.681934
2021-10-28T09:49:15
2021-10-28T10:24:46
40,795,914
0
0
null
2015-08-16T02:17:03
2015-08-16T02:17:03
null
UTF-8
C++
false
false
26,528
cpp
/****************************************************************************** * The MIT License (MIT) * * Copyright (c) 2019-2021 Baldur Karlsson * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in...
[ "baldurk@baldurk.org" ]
baldurk@baldurk.org
d0230e5ca9b8faaa68f48d098f1edd09584d30fe
7e0ea62e544f93860a1c9de4e76afb9519075322
/Parcial 1/Multiplicacion x10/multiplicacion_x10.cpp
1fa073efca3d42fb83d8e4079b33dc8a570918a2
[]
no_license
RamsesGA/Programacion_2_2019b_Ramses_Guerrero_Ambriz
d3873437b05f2373ce7fd1f13e53c48c66970861
9a8e45b157f0ce107ce632be8517fe4f623bf625
refs/heads/master
2020-05-18T02:40:12.042971
2019-08-14T17:35:21
2019-08-14T17:35:21
184,123,197
0
0
null
null
null
null
UTF-8
C++
false
false
273
cpp
#include "Librerias.h" using namespace std; int main() { char numero[255]; cout << "Ingresa un numero y le daremos el valor x10" << endl; cin >> numero; strcat_s(numero, "0"); cout << "El numero x10 es: " << numero << endl; cin.get(); cin.ignore(); return 0; }
[ "idv18c.rguerrero@uartesdigitales.edu.mx" ]
idv18c.rguerrero@uartesdigitales.edu.mx
35d892814ef4f6fe118d3d8e145342be00ce873d
bf0fe104ceeb14373723f439d082d2024f675d12
/Mario/source/decor.h
91123959bea0bfeaf364386eef12cbb79057e404
[]
no_license
ParvilusLM/Jeu_Mario
fe156fb866de967509a8bf486c1f07f84a514898
3bab8142da3eed88ea1dc77f9fc171fdc863ff11
refs/heads/master
2023-04-16T03:59:01.603669
2021-04-21T01:32:06
2021-04-21T01:32:06
296,482,276
0
0
null
null
null
null
UTF-8
C++
false
false
480
h
#pragma once #include "menu.h" #include "carte.h" #include "personnage.h" #include "monstre.h" #include "son.h" class Decor { public: Decor(); ~Decor(); /*** Les methodes ***/ Menu& getMenu(); Carte& getCarte(); Personnage& getPersonnage(); Monstre& getMonstre(); Son& getSon(); ...
[ "lovemarckendyparvilus@gmail.com" ]
lovemarckendyparvilus@gmail.com
b5cb8664ae7b55ad79729688ef65b82f241bb213
ee5824d3c041ce25f4f05dd9d95a30e0bbbabe69
/1041.cpp
5d6b2def3a71eb380fbe03ad1ea396aaff933eb5
[]
no_license
Lisltria/PAT-Advanced-Level-Practice-
bcc3703116fd9387e4c406ef4b99b75ed94b7a06
529657db963bbd47cd7ad338a5f61b67e3bda9a2
refs/heads/master
2020-03-31T19:51:00.168002
2018-12-10T13:26:29
2018-12-10T13:26:29
152,514,436
0
0
null
null
null
null
UTF-8
C++
false
false
594
cpp
#include <iostream> #include <cstdio> #include <vector> using namespace std; int _hash[100001]; int N; vector<int> list; int main() { cin>>N; for(int i=0;i<N;i++) { int t; scanf("%d",&t); list.push_back(t); _hash[t]++; } bool flag=false; for(vector<int>::iterato...
[ "jingbang.liu@outlook.com" ]
jingbang.liu@outlook.com
16cdcfa51dbe8b999ae5c6ef788671cec89c27c7
fb37ef2af3f5933ee0f586a78776240e9fd8040c
/Experiment_10/RunTime/RunTime.cpp
244f1f0e48e438b09f4ad72aece77a6fa1726504
[]
no_license
mishra5047/OOPS
9ac53c00573ff7b874bfd5baa837483605108b6e
44648ee4e5821fda5eeb0b4b3a14b9a0f60959db
refs/heads/master
2022-06-28T09:27:08.166649
2020-05-04T12:40:48
2020-05-04T12:40:48
255,050,507
0
0
null
null
null
null
UTF-8
C++
false
false
1,060
cpp
#include <iostream> using namespace std; class Bank{ public: string Name; string Branch; int id; void enterDetails(string nam, string bran, int i){ Name = nam; Branch = bran; id = i; } virtual void showDetails(){ cout<<"\n Name is \t"<<Name; cout<<"\n...
[ "43989650+mishra5047@users.noreply.github.com" ]
43989650+mishra5047@users.noreply.github.com
149df63185f9417ebd52bdeba9167aecd4623f96
f4d8531a987bc53adfab365ac262357f34413db6
/mrpt-1.4.0/libs/maps/include/mrpt/slam/CColouredPointsMap.h
f41697652dcd8923546b31c1bad7c46b79df8a09
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
saurabhd14/Mytest
5f5b4232df9a0725ca722ff97a1037f31a9bb9ca
4b8c4653384fd5a7f5104c5ec0977a64f703eecb
refs/heads/master
2021-01-20T05:43:32.427329
2017-04-30T15:24:18
2017-04-30T15:24:18
89,801,996
1
0
null
null
null
null
UTF-8
C++
false
false
1,045
h
/* +---------------------------------------------------------------------------+ | Mobile Robot Programming Toolkit (MRPT) | | http://www.mrpt.org/ | | ...
[ "saurabhd14@gmail.com" ]
saurabhd14@gmail.com
6938ffa71abcced8e031cb4729944d481d32da20
b20610a4697623a34ffb10e6506d5db8373a2c56
/backend/tests/TestAlgomodelStrategy2.H
dd3375756739c2574c3e9732ae8e3076759aff71
[]
no_license
soumyaukil/TradingSoftware
2174f88d84b33672216b2341364a88e3134bd3c5
9ef43bb3b9161352b49afb5a86c54a64c8ebabb8
refs/heads/master
2021-01-21T03:25:03.286613
2017-08-30T15:21:06
2017-08-30T15:21:06
101,896,358
0
2
null
null
null
null
UTF-8
C++
false
false
863
h
/* * ===================================================================================== * * Filename: TestAlgomodelStrategy2.H * * Description: * * Created: 10/01/2016 07:55:24 AM * Compiler: g++ * * Author: Soumya Prasad Ukil * Company: AlgoEngine ...
[ "soumukil@amazon.com" ]
soumukil@amazon.com
66a2a0d1a933924c98abcd39e434797f3774dfbd
f2c06fd62446d2b8a02532ac44d8cb649a2fff3a
/src/compiler_error.cpp
56dc32f022166fb00d06243c451648c7ac32aeb0
[]
no_license
czipperz/red
47e898348f548421c37a6bcf9bc0828610f7e164
fb77775c54320121cf292781afb1c6735a7fb7a1
refs/heads/master
2020-08-07T16:21:04.018633
2020-04-21T08:05:58
2020-04-21T08:12:10
213,522,922
0
0
null
null
null
null
UTF-8
C++
false
false
30
cpp
#include "compiler_error.hpp"
[ "czipperz@gmail.com" ]
czipperz@gmail.com
e20cbbbc2711ed9fafbc3213adffa814ac807014
0f4aebcd62598989cb279e034d1a1613f8725082
/client/include/rdc/rdc_client.h
3c37d7f984dc6be0543155f62df31455304b1ac0
[ "MIT" ]
permissive
louishp/rdc
b4bea8b9e6adc616e3d3b87489b1a3c4f88e93b7
5e1111d4cb5da38930f2466e53e9b573374ca818
refs/heads/master
2022-12-11T01:11:30.160930
2020-09-01T01:13:15
2020-09-03T00:07:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
16,290
h
/* Copyright (c) 2019 - present Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to u...
[ "Chris.Freehill@amd.com" ]
Chris.Freehill@amd.com
4ef82d5b53b146728a65e647b46eb3160964c9fb
4d560955d5b0a6a8d3f7a116472447f0a82abd78
/src/reader.cpp
0093158f5ee33b9a41c0d0251cfcde7dc114b0b5
[]
no_license
ChrisToumanian/fallen-star-server
400ec1b5defcc353e6d63819b3e967c5a1ba47fd
b919dfd5962365256f8dfc79d77881099d0f6b18
refs/heads/master
2022-12-29T01:44:38.299082
2020-10-18T09:59:19
2020-10-18T09:59:19
303,323,975
0
0
null
null
null
null
UTF-8
C++
false
false
1,384
cpp
#include "reader.h" std::vector<std::string> Reader::get_file_lines(std::string filename) { std::vector<std::string> lines; std::ifstream file(filename); for (std::string line; std::getline(file, line); ) { lines.push_back(line); } return lines; } std::vector<std::string> Reader:...
[ "cctoumanian@gmail.com" ]
cctoumanian@gmail.com
c1e009be1cf4ffc1624181aefd8babeee50bd24f
07ce962a81823cf1e5b3ef46197ec811f981da8c
/c++/ch02/WeatherStation.cpp
776c95fdd38de044cae96d419db55c6f994d1acb
[]
no_license
proudzhu/head_first_design_pattern
0bf864956c543b5f9bbac48381f87afb851abb10
d98d44d656a4eff28abdf4de1c6ad5957846cdbc
refs/heads/master
2021-01-09T20:30:19.201185
2016-08-07T05:10:54
2016-08-07T05:10:54
64,227,221
0
0
null
null
null
null
UTF-8
C++
false
false
6,485
cpp
#include <iostream> #include <memory> #include <list> class Observer { public: virtual void update(float temp, float humidity, float pressure) = 0; }; class Subject { public: virtual void registerObserver(std::shared_ptr<Observer> o) = 0; virtual void removeObserver(std::shared_ptr<Observer> o) = 0; ...
[ "proudzhu.fdu@gmail.com" ]
proudzhu.fdu@gmail.com
f67e783f5cc932de8d5dd8e278802266ec97b5f9
12f441018818dc2dcb1a8a89bccd946d87e0ac9e
/cppwinrt/winrt/impl/Windows.ApplicationModel.Calls.0.h
367a03a52d25152ec69e554fb80e1e4ad096478a
[ "MIT" ]
permissive
dlech/bleak-winrt
cc7dd76fca9453b7415d65a428e22b2cbfe36209
a6c1f3fd073a7b5678304ea6bc08b9b067544320
refs/heads/main
2022-09-12T00:15:01.497572
2022-09-09T22:57:53
2022-09-09T22:57:53
391,440,675
10
1
null
null
null
null
UTF-8
C++
false
false
124,661
h
// WARNING: Please don't edit this file. It was generated by C++/WinRT v2.0.220608.4 #pragma once #ifndef WINRT_Windows_ApplicationModel_Calls_0_H #define WINRT_Windows_ApplicationModel_Calls_0_H WINRT_EXPORT namespace winrt::Windows::ApplicationModel::Contacts { struct Contact; struct ContactPhone; } WINRT_EX...
[ "david@lechnology.com" ]
david@lechnology.com
cd1affddb4da40ac9b015d1e33d0e9251ed5f6b0
9a92864acc9d970f802ee17cf4b62530f8b7b5f4
/tasks/example/pattern.cpp
cd5a4f1fa4c9c21b9cbfcdfeb79120353dedfb9e
[ "MIT" ]
permissive
CStanKonrad/SolutionChecker
7b7ddbd79602c99c4346f99e7d6848b3f1d26816
78bc22439f21d2fdf1f4100d910301e1194362a5
refs/heads/master
2020-12-21T07:02:27.831590
2017-01-24T18:17:50
2017-01-24T18:17:50
38,896,101
2
1
null
2016-11-05T07:43:32
2015-07-10T18:34:33
C++
UTF-8
C++
false
false
237
cpp
#include <iostream> #include <string> #include <unistd.h> using namespace std; string text; int main() { cin >> text; usleep(720000); for (int i = text.size() - 1; i >= 0; i--) { cout << text[i]; } cout << endl; return 0; }
[ "CStanKonrad@users.noreply.github.com" ]
CStanKonrad@users.noreply.github.com
4da9ed752c9cd54b6a669820e9e9bc89e71f1453
09343c9d179d3ac599c08f75910560761c7c99fc
/WindowsTesting/Bindable.cpp
854a06f6a38ae2f4e24d47a61a20bbc73a641b41
[]
no_license
dafienko/WinTestingD3D
5442aec5d1bb9688ae8eee935edf89ff9a17bad5
81b63ee9f32883ef03ff42d782d6d64c3b9a3543
refs/heads/master
2022-09-01T11:05:26.999339
2020-05-28T02:55:14
2020-05-28T02:55:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
253
cpp
#include "Bindable.h" Microsoft::WRL::ComPtr<ID3D11Device> Bindable::getPDevice(Graphics* gfx) { return gfx->getPDevice(); } Microsoft::WRL::ComPtr <ID3D11DeviceContext> Bindable::getPDeviceContext(Graphics* gfx) { return gfx->getPDeviceContext(); }
[ "chickenshalom@gmail.com" ]
chickenshalom@gmail.com
2b2c16df7e9e746d4e3638990a1115359d6c1acd
5108d2772d34e7e92e29051ddcb8953eb356d494
/src/sh/spherical_harmonics.h
fb95d23550099678b5be26dfd621a447e2dd8ece
[]
no_license
liuyangvspu/PRT
f5c5220ab141fc7b455781c3a59cbcdc8fa31727
5c136ae5392c24996470f165bce97d10b1edccef
refs/heads/master
2023-06-23T07:06:55.187445
2021-04-18T17:28:59
2021-04-18T17:28:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
12,376
h
// Copyright 2015 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable ...
[ "fslvjh@gmail.com" ]
fslvjh@gmail.com
964936a5df5d893777534095018c02e15ecc90ed
51c71b06d7fa1aa97df4ffe6782e9a4924480a33
/Calibration/Configuration.cpp
c8d59b9350d568ff8f0bf782e7668a075309732f
[]
no_license
alonf01/open-light
9eb8d185979cfa16797f9d2201cf192b3e91f270
685f974fcd7cc29b6bec00fa17804c5f2b7a83c3
refs/heads/master
2020-05-30T15:24:08.579565
2010-12-14T00:56:32
2010-12-14T00:56:32
35,759,673
0
0
null
null
null
null
UTF-8
C++
false
false
10,924
cpp
//////////////////////////////////////////////////////////////////////////////////////////////////// /// @file Calibration\Configuration.cpp /// /// @brief Implements the configuration class. //////////////////////////////////////////////////////////////////////////////////////////////////// #include "Config...
[ "b.jonessoda@8a600b9a-ddf7-11de-b878-c5ec750a8c44" ]
b.jonessoda@8a600b9a-ddf7-11de-b878-c5ec750a8c44
38edfcb5eff4825f810375fbd6b328a48e8605f7
48ade09975b42f08b413ffb5bf227372e25389a1
/sixnetmessagehandler.cpp
644b1585fd2c95761a373035957c70a004e83a81
[]
no_license
martonmiklos/sixnet-tools
15a8fabbe5fb2c2f2e25d9f44ff710238654c01e
8515a3a63f0abd54b3129fe9ada108c08fdea409
refs/heads/master
2016-09-06T07:38:08.077944
2015-03-22T10:33:31
2015-03-22T10:33:31
32,669,653
0
0
null
null
null
null
UTF-8
C++
false
false
2,681
cpp
#include "sixnetmessagehandler.h" SixnetMessageDispatcher::SixnetMessageDispatcher(QHostAddress address, int port, int timeout, QObject *parent) : QObject(parent), m_sentMessage(NULL), m_sequence(0), m_address(address), m_port(port), m_connected(false) { m_socket = new QUdpSocket(this); ...
[ "martonmiklosqdev@gmail.com@fc57be8b-969e-378c-fce5-c2118c9c64c8" ]
martonmiklosqdev@gmail.com@fc57be8b-969e-378c-fce5-c2118c9c64c8
102f9e38015e040a5ea5c7e20880ce3e46fada4c
a3d6556180e74af7b555f8d47d3fea55b94bcbda
/components/page_load_metrics/browser/observers/assert_page_load_metrics_observer.h
117147065a454a41e8ddc69c1a461aa3ddcacabf
[ "BSD-3-Clause" ]
permissive
chromium/chromium
aaa9eda10115b50b0616d2f1aed5ef35d1d779d6
a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c
refs/heads/main
2023-08-24T00:35:12.585945
2023-08-23T22:01:11
2023-08-23T22:01:11
120,360,765
17,408
7,102
BSD-3-Clause
2023-09-10T23:44:27
2018-02-05T20:55:32
null
UTF-8
C++
false
false
10,322
h
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_PAGE_LOAD_METRICS_BROWSER_OBSERVERS_ASSERT_PAGE_LOAD_METRICS_OBSERVER_H_ #define COMPONENTS_PAGE_LOAD_METRICS_BROWSER_OBSERVERS_ASSERT_PAGE_LOAD_METRICS_OBSE...
[ "chromium-scoped@luci-project-accounts.iam.gserviceaccount.com" ]
chromium-scoped@luci-project-accounts.iam.gserviceaccount.com
32d59e4115b959a729f2360354b687ce3a9a0282
de7e771699065ec21a340ada1060a3cf0bec3091
/analysis/common/src/java/org/apache/lucene/analysis/synonym/SynonymGraphFilterFactory.h
9502251be70cc2f95f3027b76ac956e6be3b6777
[]
no_license
sraihan73/Lucene-
0d7290bacba05c33b8d5762e0a2a30c1ec8cf110
1fe2b48428dcbd1feb3e10202ec991a5ca0d54f3
refs/heads/master
2020-03-31T07:23:46.505891
2018-12-08T14:57:54
2018-12-08T14:57:54
152,020,180
7
0
null
null
null
null
UTF-8
C++
false
false
6,478
h
#pragma once #include "../../../../../../../../../core/src/java/org/apache/lucene/analysis/Analyzer.h" #include "../util/ResourceLoaderAware.h" #include "../util/TokenFilterFactory.h" #include "exceptionhelper.h" #include "stringhelper.h" #include <memory> #include <stdexcept> #include <string> #include <typeinfo> #inc...
[ "smamunr@fedora.localdomain" ]
smamunr@fedora.localdomain
740ed5843adbccfb21302c9272a16d4f1d236f95
c81d646237e2545402295a13144102ab0e055361
/Classes/View/CreateController.cpp
fd0a07d9f7a5cc168105e767057d6e5a4d9fb3b2
[]
no_license
lookdczar/alfaProDev
3eec1fb90cbf9d333f81d926bc5411ea44ff45ab
df989f6ed064492687d82d9366b5a31a9dfd8eb4
refs/heads/master
2021-01-01T16:34:33.050139
2015-05-12T11:59:34
2015-05-12T11:59:34
34,952,042
0
0
null
null
null
null
IBM852
C++
false
false
477
cpp
#include "CreateController.h" #include "CreateView.h" USING_NS_CC; bool CreateController::init() { if ( !BaseController::init() ) { return false; } Size visibleSize = Director::getInstance()->getVisibleSize(); Vec2 origin = Director::getInstance()->getVisibleOrigin(); //│§╩╝╗»view _view = ...
[ "lookdczar@163.com" ]
lookdczar@163.com
7b51ba412ce15c3bb7446299baca2185cf20651f
ba10da4be74ba4e472bbe4b51d411627fc07bdbf
/build/iOS/Preview/include/Fuse.Input.KeyEventArgs.h
4772fef379a09fab16c7aca583826ab78dff2b4a
[]
no_license
ericaglimsholt/gadden
80f7c7b9c3c5c46c2520743dc388adbad549c679
daef25c11410326f067c896c242436ff1cbd5df0
refs/heads/master
2021-07-03T10:07:58.451759
2017-09-05T18:11:47
2017-09-05T18:11:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,013
h
// This file was generated based on '/Users/ericaglimsholt/Library/Application Support/Fusetools/Packages/Fuse.Nodes/1.0.5/input/$.uno'. // WARNING: Changes might be lost if you edit this file directly. #pragma once #include <Fuse.Scripting.IScriptEvent.h> #include <Fuse.VisualEventArgs.h> namespace g{namespace Fuse{n...
[ "ericaglimsholt@hotmail.com" ]
ericaglimsholt@hotmail.com
e944136105d224b1aa4a1986ac53c5b4eca12288
2af4ba03345d2f61472d4d89258adc74023a9661
/Coding/02__Cpp_Lab/keil/Exercise_1a_FlashingLeds/GeneratedModel/LedBar.cpp
d820301027253487725dcb8c2e4315f480ee0816
[]
no_license
ThSauter/repo
cecb9b23c4bd72f5cfbab7ccae9985a34540a65a
8c700e77b957038c446400d93fefcfd6d68e6c5f
refs/heads/master
2020-12-31T00:12:04.356978
2017-09-09T20:47:25
2017-09-09T20:47:25
86,547,417
0
0
null
null
null
null
UTF-8
C++
false
false
5,809
cpp
/******************************************************************** Rhapsody : 8.1.4 Login : Hochschule Ulm Component : MCB1700 Configuration : Debug Model Element : LedBar //! Generated Date : Mon, 3, Apr 2017 File Path : MCB1700\Debug\LedBar.cpp **********************************************************...
[ "thomas.sauter@newtec.de" ]
thomas.sauter@newtec.de
c9968ba99aebe84c3481dd87e7bfecdc0e277f25
e7c0d034570bd2dec208c634ead49ad0eb3456e5
/CubeTable.h
46e062f462749165afc75dac0c126ff61bab17ff
[]
no_license
JohnsonZ-microe/cube
da5cac8e1b94ac219ff9b07333f07e7d45157856
3fa3a1838c93b1650c0158d1477949bafc7118c9
refs/heads/master
2022-07-08T12:57:58.691116
2020-05-12T09:16:35
2020-05-12T09:16:35
263,283,821
0
0
null
null
null
null
GB18030
C++
false
false
1,451
h
// CubeTable.h: interface for the CCubeTable class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_CUBETABLE_H__4D71CE01_C2C3_4FD2_9485_667C93AB5E2A__INCLUDED_) #define AFX_CUBETABLE_H__4D71CE01_C2C3_4FD2_9485_667C93AB5E2A__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif ...
[ "2017141223008@stu.scu.edu.cn" ]
2017141223008@stu.scu.edu.cn
55fd59a38cbc958a80d23b81e7e89f58fe3e84a4
5548eeed2770586d53e726ad33508735887ad518
/streams/sstream/ostr/main.cpp
9c150643eb61cfbd3987db680c8850a5aba8afdf
[]
no_license
chillylips76/cis201-examples
6ea44bb517ec65da6e4bcb04415591c6f73010ef
94797e818af25abc1be453cee7e843d8fd45d779
refs/heads/master
2022-03-23T17:29:12.950398
2019-12-09T21:15:05
2019-12-09T21:15:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
327
cpp
#include<iostream> #include<string> #include<sstream> #include<iomanip> using namespace std; int main() { string month = "January"; int day = 3; int year = 1973; ostringstream ostrm; ostrm << month << " " << setw(2) << setfill('0') << day << "," << year; cout << ostrm.str() << endl; retur...
[ "paul.tonning@student.vvc.edu" ]
paul.tonning@student.vvc.edu
467c3a25f1274f86f40906a970a9c327962ded36
e99c20155e9b08c7e7598a3f85ccaedbd127f632
/ sjtu-project-pipe/thirdparties/VTK.Net/src/Imaging/vtkImageEuclideanDistanceDotNet.h
2a7efde13dd0a630572194b5f062fde690c33bb0
[ "BSD-3-Clause" ]
permissive
unidevop/sjtu-project-pipe
38f00462d501d9b1134ce736bdfbfe4f9d075e4a
5a09f098db834d5276a2921d861ef549961decbe
refs/heads/master
2020-05-16T21:32:47.772410
2012-03-19T01:24:14
2012-03-19T01:24:14
38,281,086
1
1
null
null
null
null
UTF-8
C++
false
false
6,454
h
#pragma once // managed includes #include "vtkImageDecomposeFilterDotNet.h" // native includes using namespace System; namespace vtk { public ref class vtkImageEuclideanDistance : public vtkImageDecomposeFilter { public: // Did not wrap: static vtkImageEuclideanDistance *New (); // const ...
[ "useminmin@gmail.com" ]
useminmin@gmail.com
f78423d513745233de2c52d05759190991c4e43d
1fa309b90d73c6daad65a2604d07ddc120fa6f8e
/2023/ble_t_rh_sensor/firmware/bsp/usart_gdf3.cc
38b221cbe2e3061206d4f9d446415fc6ec217608
[]
no_license
tomzbj/diy
473e4c50288b88107deb7b41432979bd01e3ecb2
7287e609509e9d7f0ffa9e01e34414a49b568179
refs/heads/master
2023-07-21T02:47:47.710028
2023-07-10T03:32:36
2023-07-10T03:32:36
160,756,266
69
44
null
null
null
null
UTF-8
C++
false
false
1,397
cc
#include "platform.h" #include "misc.h" void USART0_WriteByte(unsigned char c) { usart_data_transmit(USART0, c); while(RESET == usart_flag_get(USART0, USART_FLAG_TC)); } unsigned char USART0_ReadByte(void) { return USART_RDATA(USART0); } void USART1_WriteByte(unsigned char c) { usart_data_transmit(US...
[ "stavrosatic@gmail.com" ]
stavrosatic@gmail.com
7be5a2eb06c4b19ac9995aaa3794c0d69ab8cabe
8f134971c94250de2408dbbee90f721c22cfe609
/RmwTestProjects/XsyEnhance.cpp
4d405a7b5722f059d42a2da25e7c879f85a74dcf
[]
no_license
microshy/basicGraphAlgorithm
c4f5b2cecba7f9f84d69965a42283e28e4a8097f
1e1252add9ec46eedb581756568089accb5c3f00
refs/heads/master
2020-03-20T08:18:59.036698
2018-06-14T03:50:15
2018-06-14T03:50:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
509
cpp
#include <windows.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include <time.h> #include "RmwEdgeDetect.h" void XsyPicEnhance(BYTE *pGryImg, int width, int height, BYTE *pGrImg) { int LUT[256]; int i, g, ImgSize = width*height; BYTE *pGry, *pGr; XsySetImageBoundary(pGrImg, widt...
[ "microshy@users.noreply.github.com" ]
microshy@users.noreply.github.com
d0ef70e756ce7035c4d64a00cbeec4f2fb45d0c7
a61a21484fa9d29152793b0010334bfe2fed71eb
/Skyrim/src/BSDevices/InputMappingManager.cpp
0726f430138d49cec6cc1e9ec017f3f3eeaafdc1
[]
no_license
kassent/IndividualizedShoutCooldowns
784e3c62895869c7826dcdbdeea6e8e177e8451c
f708063fbc8ae21ef7602e03b4804ae85518f551
refs/heads/master
2021-01-19T05:22:24.794134
2017-04-06T13:00:19
2017-04-06T13:00:19
87,429,558
3
3
null
null
null
null
UTF-8
C++
false
false
1,400
cpp
#include "Skyrim/BSDevices/InputMappingManager.h" DECLARE_BSTSINGLETONSDM_STATIC_INSTANCE(InputMappingManager, 0x012E7458, 0x01B37FB0); UInt32 InputMappingManager::GetMappedKey(const BSFixedString &name, BSInputDevice::Type deviceType, ContextType contextIdx) const { BSTArray<InputMapping::Data> * maps = nullptr; ...
[ "wangzhengzewzz@gmail.com" ]
wangzhengzewzz@gmail.com
b75e950b8c3bf748c22027bb7fbabf9aa48ccf0a
3757b4827f76f57cb7f712d35db11b5f70a3982e
/2019SIC/Stage.cpp
5d49add63db93b15ca6a13d597603fbd2f347aae
[]
no_license
K-Game/KAWAMOTO
338b884f942f4cbfdecc5b87090fbedff11db361
17e8ee6cfb3a9a43795fc1e68cb2a6738a141aa8
refs/heads/master
2020-07-14T09:30:23.220455
2019-09-04T22:08:15
2019-09-04T22:08:15
205,292,200
0
0
null
null
null
null
UTF-8
C++
false
false
61
cpp
#include <Windows.h> #include "DxLib.h" #include "Obj2d.h"
[ "54610490+K-Keito@users.noreply.github.com" ]
54610490+K-Keito@users.noreply.github.com
38c83739ab5b0ddb4210e17cade1bce4ecd13ed6
62a59ca4fd181b6ee3758903ba656c14542fde72
/Server/GDouDiZhuServer/src/JJDDZRoomStateWaitReadyChaoZhuangMode.h
49c8e06610b423027355454fab96f490de2017df
[]
no_license
BillXu/XProject
dc4f277db0b9e8c73c561dca68ee6d86e8cb2db3
e1ebec2b930971efb8fc822f4107d836d311518a
refs/heads/master
2021-01-19T22:44:28.542648
2018-04-10T12:06:35
2018-04-10T12:06:35
88,851,690
1
0
null
null
null
null
UTF-8
C++
false
false
323
h
#pragma once #include "DDZRoomStateWaitReady.h" class JJDDZRoomStateWaitReadyChaoZhuangMode :public DDZRoomStateWaitReady { public: void update(float fDeta)override { IGameRoomState::update(fDeta); auto pRoom = getRoom(); if (pRoom->canStartGame()) { pRoom->goToState(eRoomState_JJ_DDZ_Chao_Zhuang); } }...
[ "xuwenyanbill@gmail.com" ]
xuwenyanbill@gmail.com
7ceee151d4164c0456e30663db9f0987297a3ce5
97e61950cfc755ff5ba320f2ca0fd1c5a58b5723
/pa4/pa4.cpp
7b4e9a9d58772f6bb109d36dc7d5fb4c065a3faa
[]
no_license
JulianHarris831/cpsc2430-
1f220ecadd2b124a352c3e19d6113d8cd4fa633b
a72421b6f2b78547bd9c4e362e78fc8a8e9f9c94
refs/heads/main
2023-08-02T20:56:51.923115
2021-10-05T19:08:48
2021-10-05T19:08:48
384,519,121
0
0
null
null
null
null
UTF-8
C++
false
false
1,408
cpp
//Julian Harris //pa4.cpp //11/2/2020 //DESCRIPTION: Program creates a max heap with dynamic array implementation to // store words entered by the user. Allows user to print children // of the words in the heap, and shows all values entered once // heap is made empty. //ASSUMPTIO...
[ "julianharris831@gmail.com" ]
julianharris831@gmail.com
a6d35bf70c46a1070adb42a8ad9a249600361088
558ab992909e5a5d9348e262901a1ffa2a654bf8
/RendererOpenGL/Classes/Maths/vector_func.inl
72a2a1075e2f2d7655fa99951b8182833bf48a46
[]
no_license
JacobCeron/RendererOpenGL
c96a7686ae2609246d98f2e64bf6179c2fe097d1
177164d6fdf5ba163dd3800d70bec982a425d9c2
refs/heads/master
2020-03-18T20:27:45.952258
2018-06-07T19:08:57
2018-06-07T19:08:57
135,217,436
0
0
null
null
null
null
UTF-8
C++
false
false
1,565
inl
template<typename T, template<typename, size_t> class vecType, size_t N> inline T magnitud(const vecType<T, N>& x) { return static_cast<T>(sqrtf(dot(x, x))); } template<typename T, template<typename, size_t> class vecType, size_t N> inline T distance(const vecType<T, N>& p0, const vecType<T, N>& p1) { return magnitu...
[ "jacobCeron6@gmail.com" ]
jacobCeron6@gmail.com
06d33cacf398401c85dbfb36c1d1dcd138f5cd82
fc7d9bbe049114ad5a94a6107321bdc09d3ccf53
/.history/Maze_20210920160653.h
1af5b9546b19e880e0403cf141e408da3fa8e03e
[]
no_license
xich4932/3010_maze
2dbf7bb0f2be75d014a384cbefc4095779d525b5
72be8a7d9911efed5bc78be681486b2532c08ad8
refs/heads/main
2023-08-11T00:42:18.085853
2021-09-22T03:29:40
2021-09-22T03:29:40
408,272,071
0
0
null
null
null
null
UTF-8
C++
false
false
2,871
h
#ifndef MAZE_H #define MAZE_H #include <vector> #include <iostream> #include "Player.h" // you may change this enum as you need // 0 1 2 3 4 5 enum class SquareType { Wall, Exit, Empty, Human, Enemy, Treasure }; static const std::string arr_enum[] = {"Wall", "Exit", "Empty", "Human", "Enem...
[ "70279863+xich4932@users.noreply.github.com" ]
70279863+xich4932@users.noreply.github.com
58ce47059bc25683e3bf2540b5e89832e01c2fdf
5c3f6bdd0aa5446a78372c967d5a642c429b8eda
/src/support/lockedpool.h
9de97d4cdf48a297ce2dcc9856a9c0d928521748
[ "MIT" ]
permissive
GlobalBoost/GlobalBoost-Y
defeb2f930222d8b78447a9440d03cce9d8d602c
b4c8f1bb88ebbfa5016376fee9a00ae98902133f
refs/heads/master
2023-08-11T12:04:12.578240
2023-07-11T03:56:18
2023-07-11T03:56:18
23,804,954
20
22
MIT
2023-07-11T03:56:19
2014-09-08T19:26:43
C++
UTF-8
C++
false
false
8,047
h
// Copyright (c) 2016-2018 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef GLOBALBOOST_SUPPORT_LOCKEDPOOL_H #define GLOBALBOOST_SUPPORT_LOCKEDPOOL_H #include <stdint.h> #include <list> #inclu...
[ "null" ]
null
8e88b006a5620aaeb3b26734f9f8a89f0c2fb718
d249a6685da6178c713a672fd8cb92f61cf493f3
/source/samples/compatibility_test/text_format_test.h
92db0b8fcf4eab1c0a0d936192b4d32e611abeb5
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
utechnique/universal_tools
023ad031aaf5d7085ccfd35014f1e19219d5a309
e8061c7eba58495d5854a90b1939cb3edd8b74f2
refs/heads/master
2023-05-13T19:26:34.509064
2023-05-01T21:30:33
2023-05-01T21:30:33
179,288,705
0
1
MIT
2021-04-19T19:43:22
2019-04-03T12:47:51
C
UTF-8
C++
false
false
1,271
h
//----------------------------------------------------------------------------// //---------------------------------| U T |---------------------------------// //----------------------------------------------------------------------------// #pragma once //--------------------------------------------------------------...
[ "universal_tools@protonmail.com" ]
universal_tools@protonmail.com
27ad8a9c5552c161f68d7730ddbceddb694e9c1a
3d193be5bcbc0823c91fdb2504beef631d6da709
/cc/tiles/tile_manager.h
dfcf4786cca7566bc46beb6ed40486fd403712fe
[ "BSD-3-Clause" ]
permissive
a402539/highweb-webcl-html5spec
7a4285a729fdf98b5eea7c19a288d26d4759d7cc
644216ea0c2db67af15471b42753d76e35082759
refs/heads/master
2020-03-22T14:01:34.091922
2016-04-26T05:06:00
2016-05-03T12:58:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,636
h
// Copyright 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CC_TILES_TILE_MANAGER_H_ #define CC_TILES_TILE_MANAGER_H_ #include <stddef.h> #include <stdint.h> #include <memory> #include <set> #include <uno...
[ "kimdh@infrawareglobal.com" ]
kimdh@infrawareglobal.com
0b3e833b7c368a504e66da9b317bb2e7d57d5b4b
d5ab07f26018f8ee2e50278f1ca12889f66eb516
/renderer/material_manager.hpp
e024476f5e0ffb7df4c670ad382331422854980e
[ "MIT" ]
permissive
infancy/Granite
15dd76dfe7b05b383a770db057d9414af0f2f02c
c507a52439b585ac26ca1450e0ee97862837abc2
refs/heads/master
2020-06-03T00:22:07.335813
2019-11-24T03:12:31
2019-11-24T03:12:31
191,359,228
0
0
null
2019-06-11T11:37:13
2019-06-11T11:37:12
null
UTF-8
C++
false
false
2,136
hpp
/* Copyright (c) 2017-2019 Hans-Kristian Arntzen * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, me...
[ "maister@archlinux.us" ]
maister@archlinux.us
73d13b448e0dfafbdc7ff864d678cdce9c5d48cc
08fb7e5f7cffbf3cf4e0e00f277047ff97986c9d
/src/objs/MFile.h
dfa2835c73d116c5adaad9210523d7ad825331c1
[ "Apache-2.0" ]
permissive
Changwan-planet/Cassini_RADAR_Software
7e9a505876b1610371dc3df602451ec4cff3e338
93a5be34d013c2913cf74f06e01c59b625bb4a17
refs/heads/main
2023-05-30T23:59:23.312249
2021-06-11T17:36:45
2021-06-11T17:36:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,117
h
//============================================================================= // MFile.h // // This file contains the MFile class declarations. The MFile class // handles outputs to a MATLAB readable script file // // Interface summary: // //----------------------------------------------------------------------- #i...
[ "Bryan.W.Stiles@jpl.nasa.gov" ]
Bryan.W.Stiles@jpl.nasa.gov
3d4c60ac820f3cfa0ad46c88e10e3909495682fd
f3efdf8c4466a8e1dffa40282979d68958d2cb14
/atcoder.jp/abc220/abc220_b/Main.cpp
6da027eb810f2ae280450dd2b65b236ddcfee952
[]
no_license
bokusunny/atcoder-archive
be1abd03a59ef753837e3bada6c489a990dd4ee5
248aca070960ee5519df5d4432595298864fa0f9
refs/heads/master
2023-08-20T03:37:14.215842
2021-10-20T04:19:15
2021-10-20T04:19:15
355,762,924
2
0
null
null
null
null
UTF-8
C++
false
false
302
cpp
#include <bits/stdc++.h> using namespace std; void solve() { int K; cin >> K; string A, B; cin >> A >> B; cout << stoll(A, nullptr, K) * stoll(B, nullptr, K) << endl; } void setcin() { ios::sync_with_stdio(false); cin.tie(nullptr); } int main() { setcin(); solve(); return 0; }
[ "abovillage1407@gmail.com" ]
abovillage1407@gmail.com
f10e90f5ae7e6b84863edac1937f88ba677667c5
ee24ef7aaa7d4ab6a66c56e95953414306302df3
/Cpp/SDK/MagicLeapAR_classes.h
0258c03006fac4ad1eca7f6a9da21bfa04915cfa
[]
no_license
zH4x-SDK/zAWL-SDK
bfc0573125d3398d892c85eac05a6575592db187
3d7001585dab120480e0d16fc24396f61a1d46c6
refs/heads/main
2023-07-15T11:05:51.834741
2021-08-31T15:10:19
2021-08-31T15:10:19
401,745,502
0
0
null
null
null
null
UTF-8
C++
false
false
1,592
h
#pragma once // Name: AWL, Version: 4.24.3 /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Classes //-------------------------------------------------------------...
[ "zp2kshield@gmail.com" ]
zp2kshield@gmail.com
db53fb07f6fafacf9d0abc733df0c684c962796d
7a0f8abeea80024d6c4fdd663a6ccf4647e4fe24
/src/tools/mapeditor/mapeditor.cpp
9b2f86ef20325dc4645e81ff772f09e8313844f1
[ "MIT" ]
permissive
OhmPopy/eepp
fd6cd21d550b02d210e74e9026dd0473b6d8c661
dcf608a2283cb4915b4bb43a33522c57f4dc4eba
refs/heads/master
2020-04-30T19:38:43.782180
2018-12-16T23:41:27
2018-12-16T23:41:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,712
cpp
#include <eepp/ee.hpp> EE::Window::Window * win = NULL; UIMessageBox * MsgBox = NULL; MapEditor * Editor = NULL; bool onCloseRequestCallback( EE::Window::Window * w ) { if ( NULL != Editor ) { MsgBox = UIMessageBox::New( MSGBOX_OKCANCEL, "Do you really want to close the current map?\nAll changes will be lost." ); ...
[ "spartanj@gmail.com" ]
spartanj@gmail.com
95a6b41761a89796a3dd09b8ab5f81ed218defb5
8c096e28b755defa6c60da44d43e060756796d18
/src/qt/walletview.h
99616a770c068ac508de7aeb7c816b4e5e19058b
[ "MIT" ]
permissive
twairgroup/wondercoin
b9599deae3e1acb40dcaa5f5db3fd89985ba9736
c075c2d0c1a4927d9f04d5100106e369a85128e5
refs/heads/master
2022-07-30T05:46:30.125814
2021-06-13T21:08:03
2021-06-13T21:08:03
361,614,184
1
1
MIT
2021-06-13T08:45:10
2021-04-26T04:13:04
C++
UTF-8
C++
false
false
4,543
h
// Copyright (c) 2011-2016 The Bitcoin Core developers // Copyright (c) 2021 The Wondercoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef WONDERCOIN_QT_WALLETVIEW_H #define WONDERCOIN_QT_WALLETVIEW_H #...
[ "twairgroup888@gmail.com" ]
twairgroup888@gmail.com