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
250b349783336b3f2190a130220195dfd14e6704
e459c9b6f58340ee3b75d2e135c26de2e85ed361
/src/ParallelFor/Matrix.cpp
f71cbf40f80ac1066c1705b58ee7abc1760eaff1
[ "MIT" ]
permissive
rajko-z/matrix_multiplication_TBB
119d65fe634ce5738a9c42fb7d9656746c93ff26
777b76cd2fa5cc030548d259e21d2c1db48fdbec
refs/heads/main
2023-06-06T20:57:43.873828
2021-07-12T23:53:02
2021-07-12T23:53:02
385,338,480
0
0
null
null
null
null
UTF-8
C++
false
false
1,723
cpp
#include "Matrix.h" #include "exceptions.h" #include <string> #include <sstream> #include <iostream> using namespace std; Matrix::Matrix(int _n, int _m) : n(_n), m(_m), data(nullptr) { data = (int*)calloc(n * m, sizeof(int)); } Matrix::Matrix(int _n, int _m, std::istream& is) : n(_n), m(_m), data(nullptr) { data = ...
[ "rajkozgrc4@gmail.com" ]
rajkozgrc4@gmail.com
9e6b2749bc6706cb999e4323974afe72644614a1
6cd2b3604a095b137cba5b72d8fbabbe891edaab
/src/TREngine/reshapePlugin.cpp
196bd9d9fb717bd6d329e3103d7e118605200801
[]
no_license
Orangels/ATM
7d5c54a5d3e7c5bf2aa47f9a7f09b1a504ccf9a4
0e038f2566c618f2fae95295e142be0de6595350
refs/heads/master
2021-05-16T21:34:06.717980
2020-04-10T08:49:19
2020-04-10T08:49:19
250,477,908
1
0
null
null
null
null
UTF-8
C++
false
false
1,206
cpp
#include "reshapePlugin.h" #include "Common.h" CFactory<CReshapePlugin> g_reshapeCreater("Reshape"); CReshapePlugin::CReshapePlugin() { } CReshapePlugin::~CReshapePlugin() { } void CReshapePlugin::_createByModelAndWeightV(const std::string& vLayerName, CCaffePrototxtReader* vpReader, const nvinfer1::Weig...
[ "orangels0313@163.com" ]
orangels0313@163.com
3c55fef5c152ad232c29ce97beb99f6011a058e2
093d2e689823e5716c46b09511d8adebb2320573
/InterviewBit/Dynamic Programming/Yet another string operation problem.cpp
83870f888ce1da24d9d6948afe12216fee2ea808
[]
no_license
gauravk268/Competitive_Coding
02813a908e4cd023e4a7039997e750d1fdae6d92
783c246dbaf36425a5b7cb76b4e79e2b7ba1a10c
refs/heads/master
2022-10-15T02:25:41.598723
2022-10-03T06:09:17
2022-10-03T06:09:17
235,630,000
20
22
null
2022-10-03T06:09:18
2020-01-22T17:45:32
C++
UTF-8
C++
false
false
656
cpp
int dp[1005][1005][2]; int fun(string &A, string &B, int &C, int l, int r, bool rot = false) { if (l > r) return 0; if (l == r) return (A[l] != B[r]); int &ans = dp[l][r][rot]; if (ans != -1) return ans; if (rot) { ans = (A[l] != B[r]) + (A[r] != B[l]) + fun(A, B, C, l + 1, r - 1, true); ...
[ "gauravk26800@gmail.com" ]
gauravk26800@gmail.com
fe5f58fa69d61b4590f8b0339e39c88409514338
e68c1f9134b44ddea144f7efa7523076f3f12d3a
/FinalCode/CharacterEmptyMessage.h
4b0f58a36cb49856ad21e356639e10ec4443bdeb
[]
no_license
iso5930/Direct-3D-Team-Portfolio
4ac710ede0c9176702595cba5579af42887611cf
84e64eb4e91c7e5b4aed77212cd08cfee038fcd3
refs/heads/master
2021-08-23T08:15:00.128591
2017-12-04T06:14:39
2017-12-04T06:14:39
112,998,717
0
0
null
null
null
null
UTF-8
C++
false
false
318
h
#pragma once #include "MessageUI.h" class CCharacterEmptyMessage : public CMessageUI { public: virtual void Initialize(); virtual int Update(); virtual void Render(); virtual void Release(); public: explicit CCharacterEmptyMessage(TCHAR* _tszObjKey, OBJ_TYPE _eObjType); virtual ~CCharacterEmptyMessage(); };
[ "iso5930@naver.com" ]
iso5930@naver.com
88dbf62761ed9fe21da8e703892e96c4ebc12577
a03080e77811226a9220a19afa83b892bf8b3b12
/myMagazine/mymagazinecontroller.cpp
af7747eb812c4a810aef19669c21a31fe1a01cd0
[]
no_license
cfontola/MyMag
d5c03aead590dcb1b977d2631cd89b0e0e1078a9
b3c62a5863f98606e0512cab38a710b8cbc0cf95
refs/heads/master
2020-05-24T02:15:54.052868
2019-05-18T12:28:40
2019-05-18T12:28:40
187,050,620
0
0
null
null
null
null
UTF-8
C++
false
false
1,954
cpp
#include "mymagazinecontroller.h" myMagazineController::myMagazineController(Database* db, loginView* lv, adminController* aC,userController* uC,QObject* parent) : QObject(parent), DB(db), startUI(lv), aController(aC),uController(uC) { startUI->show(); connect(startUI,SIGNAL(signaluserLogin(const QString& ,...
[ "spugnalove@gmail.com" ]
spugnalove@gmail.com
3f411f85601275f94cac0c8281d11d0d323ccc0b
376852b732c8e3244b4ab229b9c6c531d3c669cf
/03_Curves/MyApp.h
7286346e10d24e6634b3b1dd16ad4a107487c55c
[]
no_license
NemesLaszlo/OpenGL-Graphics-ManAndGates
d9a0e02f81cd6a073d481ed27b76c5249f9358e1
62e2624a6cb9b0d4b8ab630c3463d1be2e17d194
refs/heads/master
2020-07-21T21:54:19.268590
2019-09-07T15:05:11
2019-09-07T15:05:11
206,982,407
2
0
null
null
null
null
ISO-8859-2
C++
false
false
3,685
h
#pragma once // C++ includes #include <memory> // GLEW #include <GL/glew.h> // SDL #include <SDL.h> #include <SDL_opengl.h> // GLM #include <glm/glm.hpp> #include <glm/gtc/matrix_transform.hpp> #include <glm/gtx/transform2.hpp> #include "ProgramObject.h" #include "BufferObject.h" #include "VertexArrayObject.h" #in...
[ "wow.laszlo@gmail.com" ]
wow.laszlo@gmail.com
0552e3760a56044c46c1e1ca40a1e5a952e1d61d
b3bd6333068cbe9820565359adc33bbbfec22b99
/project_a_headers/include/project_a/project_a.hpp
c7a5ca3d935b8f3c3da79af6916cbf355ee025d3
[ "Apache-2.0" ]
permissive
Karsten1987/modern_cmake_example
cbc6726ce53aeddbf02ca861f85e6f41ee11e944
6e48b3b4ae3309846986649d216b327fae062237
refs/heads/master
2020-06-16T12:19:20.841367
2019-09-15T19:16:38
2019-09-15T19:16:38
195,571,508
0
0
null
null
null
null
UTF-8
C++
false
false
173
hpp
#ifndef PROJECT_A_HEADERS_HPP_ #define PROJECT_A_HEADERS_HPP_ class ProjectA { public: ProjectA() = default; void print() const; }; #endif // PROJECT_A_HEADERS_HPP_
[ "karsten@openrobotics.org" ]
karsten@openrobotics.org
6ba3d3f103a4cc3861245f1aad8af0cddc1f3398
78c37c14b3bac58a20f694cc54ae9d0404607e2d
/include/metalang/compiler/parser_rules/expression.hpp
0bf47af2be15ba9162d16538780b7cd3daa43630
[]
no_license
MatthewI123/MetaLang
99be935643912809a0903ae28242370dd4769813
3b1444c5d4f04e30be72ae384775495f2998d96e
refs/heads/master
2020-12-14T08:22:48.747211
2020-02-03T10:03:49
2020-02-03T10:03:49
234,685,611
0
1
null
null
null
null
UTF-8
C++
false
false
7,513
hpp
#pragma once #include <type_traits> #include "../../types.hpp" #include "../node.hpp" #include "../token.hpp" namespace compiler::parser_rules { template<typename Parser> struct make_additive_expression_dispatch; template<typename Parser> using make_expression_t = typename make_additive_expression_dispatch<Pars...
[ "willyoumeryme@gmail.com" ]
willyoumeryme@gmail.com
c2ac2657df5f3143b67a30c7be5e51e2da3d67ca
230b7714d61bbbc9a75dd9adc487706dffbf301e
/net/spdy/bidirectional_stream_spdy_impl.cc
f428a759d5a413e0da9084cf33cf1442a098009a
[ "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
12,686
cc
// Copyright 2015 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 "net/spdy/bidirectional_stream_spdy_impl.h" #include <utility> #include "base/bind.h" #include "base/location.h" #include "base/logging.h" #inc...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
6d0e1914ef9003f3e56e2583e3f952693bc2f438
4d429a275d6a09e44476782baee13da8dd2473d0
/include/db/DBManager.h
5a74dbc08c10ef9a83bbf53aeabc81c55c537582
[ "MIT", "BSD-3-Clause", "LicenseRef-scancode-generic-cla", "MPL-2.0", "CC-BY-4.0", "LicenseRef-scancode-protobuf", "Apache-2.0", "BSD-2-Clause", "OFL-1.1", "LicenseRef-scancode-hidapi" ]
permissive
brindosch/hyperion.ngBeta
314e3ded5885e99ff81bac2bd2654c60814fd5c3
08de6b78318f0a701e7e1e26828284b6ad8d0c2b
refs/heads/master
2021-01-24T03:19:21.620437
2020-05-29T19:19:29
2020-05-29T19:19:29
66,153,294
3
7
MIT
2019-08-31T10:05:07
2016-08-20T15:18:44
C++
UTF-8
C++
false
false
4,832
h
#pragma once #include <utils/Logger.h> #include <QMap> #include <QVariant> #include <QPair> #include <QVector> class QSqlDatabase; class QSqlQuery; typedef QPair<QString,QVariant> CPair; typedef QVector<CPair> VectorPair; /// /// @brief Database interface for SQLite3. /// Inherit this class to create compone...
[ "Paulchen-Panter@protonmail.com" ]
Paulchen-Panter@protonmail.com
27dd327a0f9ddda9ab444ad27ecbbdcc7dfe2297
72a43a4f137f310cf2eb1f8f13074dfcba5a4101
/UnionFind.cpp
f3f700a512b15f10f16823097818144319fef96e
[]
no_license
manzanoivan/2doCampamentoVerano
e90fe16b8bdb59ec4c53c321fa6167b53daa621f
949801cb84782fb6e3b71fb3c1d632ee93f8926d
refs/heads/master
2020-12-06T17:15:32.853436
2017-07-08T02:24:51
2017-07-08T02:24:51
95,580,725
1
0
null
null
null
null
UTF-8
C++
false
false
585
cpp
#include <iostream> #include <vector> using namespace std; // Conjuntos disjuntos con Union-Find. struct UnionFind { int n; vector<int> padre, tam; UnionFind(int N) : n(N), tam(N, 1), padre(N) { while (--N) padre[N] = N; } int Raiz(int u) { if (padre[u] == u) return u; return padre[u] = Raiz(padre[u]); } bo...
[ "ivan_ajedrez@hotmail.com" ]
ivan_ajedrez@hotmail.com
a74fc5cc1f388083cb4d1cef5a40af991b9e4fdf
e60d99adda082eeea7a40f2b54cea06b57484adb
/APIFramework/APIFramework/Include/Core/InputManager.cpp
7edc296f822f704fdbf497865a0539767af02cff
[]
no_license
BaeMinCheon/BCSD
ed2ec1fc8874804bed19e131d2832e37d7948d11
6c93bc9fdf2c40a2a68fe9c7c90e3ba2f1ee3e0e
refs/heads/master
2020-05-06T15:30:24.211448
2019-04-08T14:51:33
2019-04-08T14:51:33
null
0
0
null
null
null
null
UHC
C++
false
false
1,954
cpp
#include "InputManager.h" DEFINE_SINGLE(InputManager); InputManager::InputManager() : m_pCreateKey(nullptr) { } InputManager::~InputManager() { SafeDeleteMap(m_mapKey); } KEYINFO * InputManager::FindKey(const string & key) const { unordered_map<string, KEYINFO *>::const_iterator iter = m_mapKey.find(key); if (...
[ "reverince@gmail.com" ]
reverince@gmail.com
7a7e44e60482e77327056ead0f0c07a1ce16a6e1
8c98dd568c47e79cbf51bf52863676e395f48fb5
/ch04/BSTree.h
dc23b450f2b69b725796a127f9c1df2b595a1600
[]
no_license
MonstarCoder/MyAlgorithms
56652f692a11b9134e53c2ed9cdea9ed78780085
f367b7546971a2b551fc79bcd88f5f9a135386ea
refs/heads/master
2021-09-09T19:58:30.730633
2018-03-19T10:55:45
2018-03-19T10:55:45
91,231,324
0
0
null
null
null
null
UTF-8
C++
false
false
8,714
h
//二叉查找树的实现。 //注意:“声明”和“实现”都位于本头文件中,应为在二叉查找树的实现使用了模板,而 //c++编译器不支持对模板的分离式编译 #ifndef _BINARY_SEARCH_TREE_H #define _BINARY_SEARCH_TREE_H #include <iostream> #include <iomanip> template <class T> class BSTNode { public: T key; //关键字 BSTNode *left; //左儿子 BSTNode *right; //右儿子 BSTNod...
[ "652141046@qq.com" ]
652141046@qq.com
2da44070316524a51b7f30df2f5d8dbe1ef88781
b007b067677ad3f97949d8fe342af8603ed19aa8
/PATB1051/PATB1051/stdafx.cpp
de3606cf180655e0e02652a90838c42a66dc47c5
[]
no_license
SouthStreet/AlgTrain
9f3248ae95e5680526d8f0beb73fdd4efc656b70
4dc850cf7e5fe736aeb2ff8b4dc408a5a3ca0e8d
refs/heads/master
2021-05-14T09:42:39.037464
2018-03-18T09:35:46
2018-03-18T09:35:46
116,333,027
0
0
null
null
null
null
GB18030
C++
false
false
260
cpp
// stdafx.cpp : 只包括标准包含文件的源文件 // PATB1051.pch 将作为预编译头 // stdafx.obj 将包含预编译类型信息 #include "stdafx.h" // TODO: 在 STDAFX.H 中 // 引用任何所需的附加头文件,而不是在此文件中引用
[ "znj764359824@gmail.com" ]
znj764359824@gmail.com
e282837a505769994f28e73433e54bc0f6a4befa
592aa065ad0bb870f8210e1492b3764404e0c372
/src/c++/Papyrus/Papyrus.cpp
b3cd09a506438425a3a6931b989f89ac72ee5e90
[ "MIT" ]
permissive
clayne/ConsoleUtilF4
777fd00d58d9b4ca0b1a073ad8444e9e034fbc11
0939e09bbb7ff6b06f2e076d1cf12f97f24dcb44
refs/heads/main
2023-07-06T11:36:48.957086
2021-08-08T03:58:01
2021-08-08T03:58:01
366,190,499
1
1
null
null
null
null
UTF-8
C++
false
false
282
cpp
#include "Papyrus/Papyrus.h" #include "Papyrus/ConsoleUtil.h" #undef BIND namespace Papyrus { bool F4SEAPI Bind(RE::BSScript::IVirtualMachine* a_vm) { if (!a_vm) { return false; } ConsoleUtil::Bind(*a_vm); logger::debug("bound all scripts"sv); return true; } }
[ "ryan__mckenzie@hotmail.com" ]
ryan__mckenzie@hotmail.com
b8ffbc84cb974ce0d699224cd06bfaebafa79db1
7491ba12660d496f391560d10d82f5c11341ac1e
/Room-Classes/Nest.cpp
892dacd5b865a351695d87e0b05965e3a455d7dd
[]
no_license
bdcarter/BetrayalOnTheAlquacir-CPP-text-based-game
3b1148151cd49c7eff48b374b7f345bd93d240f6
181002d16798842ecc7225d8f6dd0a9a9f502038
refs/heads/master
2020-04-12T22:39:54.461554
2015-09-11T14:23:24
2015-09-11T14:23:24
41,985,951
0
0
null
null
null
null
UTF-8
C++
false
false
6,270
cpp
/******************************************************** * PROGRAM FILENAME: NEST.CPP * AUTHOR: BRIANNA CARTER * DATE: 6/5/15 * DESCRIPTION: THIS FILE IS THE IMPLEMENTATION FILE FOR THE NEST * CHILD CLASS FOR THE GAME "BETRAYAL ON THE ALQUACIR" * THIS CLASS ADDS POINTERS TO THE NAVIGATION LIST, DISPLAYS * THE ...
[ "brianna.d.carter@gmail.com" ]
brianna.d.carter@gmail.com
d3b2ef5bc29434016ae0746ec4b39101beb0ca24
24a38beedf1f36ce49cb7615114007159e7fb1db
/unrookit/UnRootkit/UnRootkit/DriverInfoDlg.h
5ce0d451cbd598474c78ff46a39b17ee607d1491
[]
no_license
lanzheng1113/win_tools_lite
27c6a57e820b66061b3822d186fd3031e85a867d
75e5e32ada845cc7b5452880e2222bce7b63122c
refs/heads/master
2020-07-11T22:29:21.579754
2019-08-28T07:39:51
2019-08-28T07:39:51
204,657,392
0
0
null
null
null
null
UTF-8
C++
false
false
497
h
#pragma once #include "afxcmn.h" // CDriverInfoDlg dialog class CDriverInfoDlg : public CDialog { DECLARE_DYNAMIC(CDriverInfoDlg) public: CDriverInfoDlg(CWnd* pParent = NULL); // standard constructor virtual ~CDriverInfoDlg(); // Dialog Data enum { IDD = IDD_DIALOG_DRIVER_INFO }; protected: virtual void D...
[ "lanzheng_1123@163.com" ]
lanzheng_1123@163.com
6a016fa668dad356358b4a99cf949e26946ebd1e
65025edce8120ec0c601bd5e6485553697c5c132
/Engine/addons/input/win32/win32inputserver.cc
d37914fca7113778c4626d2757197029fdae5957
[ "MIT" ]
permissive
stonejiang/genesis-3d
babfc99cfc9085527dff35c7c8662d931fbb1780
df5741e7003ba8e21d21557d42f637cfe0f6133c
refs/heads/master
2020-12-25T18:22:32.752912
2013-12-13T07:45:17
2013-12-13T07:45:17
15,157,071
4
4
null
null
null
null
UTF-8
C++
false
false
2,814
cc
/**************************************************************************** Copyright (c) 2007,Radon Labs GmbH Copyright (c) 2011-2013,WebJet Business Division,CYOU http://www.genesis-3d.com.cn Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation...
[ "jiangtao@tao-studio.net" ]
jiangtao@tao-studio.net
24a110b12f5da4154c5ec34e7df7f89014b0ef5c
2f50ee4a8f8bbe7cc5328ec2349b20b20a5675f0
/solitaire/data/sound/music.inc
f377a81c4a879b71d22fd16503694ee01b5825ab
[]
no_license
ianka/uzebox-weber
016510b71f3b2ff7bb75d1bd831e4f94bf655a7d
7d80e9b6d4e7a79bbf50337942df10a98823f2df
refs/heads/master
2020-03-07T18:08:37.899009
2017-10-25T05:39:29
2017-10-25T05:39:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
189
inc
#include "stage2song.inc" #include "stage3song.inc" #include "stage4song.inc" #include "stage5song.inc" #include "stage6song.inc" //#include "stage1song.inc" #include "stage7song.inc"
[ "weber21w@gmail.com" ]
weber21w@gmail.com
1e05861d287b807ec8d65399324ea885e46c3a3c
d47788f3cdd8874728c2f6c08ecef62ab8e27670
/tools/qrestbuilder/classbuilder.h
314148534daa6c866b6c0e1864cc6ce861e8bdd6
[ "BSD-3-Clause" ]
permissive
jacky181818/QtRestClient
11ced23c72cc10d2224752b53aad321ab2def3ce
15fa04c2d7d314228c9cafa1aad54276978a00f1
refs/heads/master
2021-01-22T22:28:07.391865
2017-03-14T17:25:09
2017-03-14T17:25:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,348
h
#ifndef CLASSBUILDER_H #define CLASSBUILDER_H #include "restbuilder.h" class ClassBuilder : public RestBuilder { public: ClassBuilder(); private: struct MethodInfo { QString path; QString url; QString verb; QList<QPair<QString, QString>> pathParams; QList<QPair<QString, QString>> parameters; QHash<QStr...
[ "Skycoder42@users.noreply.github.com" ]
Skycoder42@users.noreply.github.com
cc938c4405331d37e6a3a10d3cb5c6cc9b63ade4
65379405e4e04178daf75ca7069061c5c603e3c1
/PAT (Basic Level) Practise/1074.cpp
9d16043e2e5a33443cf740f155d3ca941ced75bb
[]
no_license
jinxw/PAT
3ad32d414959e4c643e635dea6760ef4010af74d
03b8b910e59b99b54e662488e08b73324078b5e8
refs/heads/master
2021-01-01T16:24:21.246679
2018-02-28T06:27:45
2018-02-28T06:27:45
97,828,263
1
0
null
null
null
null
UTF-8
C++
false
false
1,500
cpp
#include <iostream> #include <string> #include <vector> #include <cmath> #include <cstdlib> std::vector<int> s2v(std::string &s); int main(){ std::string s,s1,s2; std::cin>>s>>s1>>s2; auto jinzhi = s2v(s); auto a = s2v(s1); auto b = s2v(s2); std::string result; int t1,t2; ...
[ "jinxw07@outlook.com" ]
jinxw07@outlook.com
c69f18840a28d538fa4658c7e9e9a2e8158ec296
5d60c1a4a769b4911791c07297ab4e60b1fb9f04
/Algos/Algos/Utils.h
c043b1dbf6f906e34df391d2ce49502f431ed9d1
[]
no_license
alernerdev/CPlusPlus
ec39a1d02c04b6b4347bb43a9f66a75f763b80d8
27d184ffbb966ae6f276a26b4586e07a55bb3153
refs/heads/master
2020-03-27T06:27:16.717179
2018-09-22T16:10:27
2018-09-22T16:10:27
146,107,197
0
0
null
null
null
null
UTF-8
C++
false
false
133
h
#pragma once class Utils { public: static void Swap(int arr[], int i1, int i2); static void PrintArray(int arr[], int length); };
[ "alernerdev@gmail.com" ]
alernerdev@gmail.com
6d3f8aee4b4fc8c20dba018aa56968ceebe8e275
17a3c43f58a7ce220dcfae7f6929a8f6f3f3312e
/Week 7/Solutions/task0-1.cpp
5bb3ee5efd69f12fa6b9b92ca3cd58f30251581d
[]
no_license
natigeorgieva/SDP-2020
c609f1e67d94dc371a8b794467dd5494a6f8f9e5
8773b94d3b2cd5e607ea4f7228b1ef5e4d44160a
refs/heads/master
2021-01-13T19:56:09.137443
2020-08-26T13:00:39
2020-08-26T13:00:39
242,477,788
2
3
null
null
null
null
UTF-8
C++
false
false
2,607
cpp
#include <iostream> #include <stack> /** Функция, която по подадена РЕФЕРЕНЦИЯ към стек от цели числа въвежда в нея числа от клавиатурата докато не достигне 0 @param[in] st референция към стек от цели числа */ void inputStack(std::stack<int>& st) { int input; ///Променливата, в която ще помним текущото въведено ...
[ "nikhri98@gmail.com" ]
nikhri98@gmail.com
01ad3f77bf457710b7ffd98d67a51c96d4194793
2a97edfe46531937f6856d3d8441851c89d4f7d9
/code/emulator/vm_lambdaman.cc
3a58db2c12c8fed4c021d15b791e93c5f1cf43b0
[]
no_license
tzik/icfpc-2014-public
66cd66600701abf8d152a08455f6b948777585e9
de95fb770b72219c1a38a31fd6808b7417835383
refs/heads/master
2021-01-19T13:46:28.970766
2014-07-30T05:42:02
2014-07-30T05:42:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,925
cc
#include "vm_lambdaman.h" #include <iostream> #include <cassert> #include <map> #include "game.h" #include "ghost.h" namespace game { namespace { const int kInstructionPerSecond = 3072000; } // namespace VMLambdaMan::VMLambdaMan(std::istream& src) { program = gcc::LoadProgram(src); } VMLambdaMan::~VMLambdaM...
[ "mail@tzik.jp" ]
mail@tzik.jp
05031ec07d2d6d314cc5e3eee936a4dcb431633f
be4f963636336cb75d5399ca8b22b6bab77b8c99
/src/client/tank_rf433.ino
559b8efab7d4018ced30272d3854b456d42d82a7
[ "MIT" ]
permissive
ahmadtantowi/RCSyot
1652837549af38cbe473553f6efdfbdb3d4c85d0
9d87e32cf168f8abb12593ad4ac3f5abaca70f98
refs/heads/master
2023-07-04T07:37:38.864928
2021-08-09T02:35:19
2021-08-09T02:35:19
389,246,328
0
0
null
null
null
null
UTF-8
C++
false
false
5,513
ino
#include <RH_ASK.h> #include <SPI.h> #include <MX1508.h> #include <melody.h> // uncomment to enable print out debug to uart // #define COM_DEBUG // RF433 pin #define RF_SPEED 2000 #define RF_RX 4 #define RF_TX 7 #define RF_PTT 8 // MX1508 pin #define MOTOR_A1 11 #define MOTOR_A2 6 #define M...
[ "ahmadtantowi@outlook.com" ]
ahmadtantowi@outlook.com
aa32040a629bee1276330d98338f7dc2294f3e01
1ff1dc403b7ed9897dc0421718ea79ee7d2fcb48
/2018.10/强制类型转换.cpp
e78cd6cecaa8058e7120a99b303e596f35a26030
[]
no_license
mowangblog/C-Demo
46d184e942ec26c6066ef04d3378c0bb441ed32f
e58a1808d55c7022fc97f5f48be96eec9bb3e37b
refs/heads/main
2023-07-25T12:05:53.301735
2021-09-03T04:13:03
2021-09-03T04:13:03
null
0
0
null
null
null
null
GB18030
C++
false
false
304
cpp
# include <stdio.h> int main(void) { int i; float sum = 0; for(i=1;i<=100;++i) sum=sum+1.0/i; //推荐的写法 //sum=sum+(float)(1/i); 这是不对的 //sum=sum+1/(float)(i); 不推荐 printf("sum=%f",sum); return 0; } /* 该程序求1+1/2+1/3+1/4.....+1/100的值 */
[ "mowangblog@qq.com" ]
mowangblog@qq.com
6bd6200e90a3da4076cb0e645568fc3fde8082b7
b1c2c497805c89f97dc945eeb8e132bfb610ca75
/c.cpp
c3c39805a583dd9b91086bd74aa03c3fc854a88d
[]
no_license
rosen1997/USP
4b5c72e128f07c92f4e48e48b39ab0abb74a7ec9
ebeb6def9ee53ba89ec762856a3107721acb88c5
refs/heads/master
2020-04-21T08:52:33.986339
2019-04-03T10:41:31
2019-04-03T10:41:31
169,431,967
0
0
null
2019-03-28T20:13:16
2019-02-06T15:54:52
C#
UTF-8
C++
false
false
10
cpp
class c {}
[ "p_dimitrov97@abv.bg" ]
p_dimitrov97@abv.bg
cd5a08a0b6715d9755d3a0b03fe11742e5d9b390
b0496980a13ad8253c3588ae2a0df9282531d927
/media/libstagefright/wifi-display/sink/LinearRegression.cpp
ef499b7d0197b9cae85c5d80fa7bf1b22f7951ca
[]
no_license
weimingtom/TL51Code.
e6a0c2e5af1dd2e38cd781bba53c87c850143734
6999ee79883e952c3bed951e5b456a9fbfc5214c
refs/heads/master
2020-03-30T21:49:01.542675
2018-09-11T08:42:38
2018-09-11T08:42:38
151,643,127
0
1
null
null
null
null
UTF-8
C++
false
false
2,812
cpp
/* * Copyright 2012, The Android Open Source Project * * 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 applica...
[ "zhiyanzhai563@163.com" ]
zhiyanzhai563@163.com
c52b6717c846185e11171a000cd39896487281db
13e11e1019914694d202b4acc20ea1ff14345159
/Back-end/ParseLogFramework/src/mongo/client/dbclient_rs.h
9c6d191b12f15c72c71efb5c707d31691c0e6556
[ "Apache-2.0" ]
permissive
lee-novobi/Frameworks
e5ef6afdf866bb119e41f5a627e695a89c561703
016efe98a42e0b6a8ee09feea08aa52343bb90e4
refs/heads/master
2021-05-28T19:03:02.806782
2014-07-19T09:14:48
2014-07-19T09:14:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
27,073
h
/** @file dbclient_rs.h Connect to a Replica Set, from C++ */ /* Copyright 2009 10gen Inc. * * 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/lice...
[ "leesvr90@gmail.com" ]
leesvr90@gmail.com
4e60ccd234a5153a079b9a42178cf8c326d41892
40de3c7facfe74caf581656762a61baf08fd2418
/testing/processing/testBluetooth/HC05_keypad_lcd/HC05_keypad_lcd.ino
c63767cfdcbc89a7a91e836c45e2112305880515
[]
no_license
Zeriel/login-rfid
1d81c5f7db459474ae9c45da80c16ab7cb50cc65
2dcb7c62396009ddd5377bedccb5f5cc4644a58b
refs/heads/master
2020-07-16T03:51:18.132117
2019-11-30T23:26:35
2019-11-30T23:26:35
205,712,562
0
0
null
2019-11-30T23:26:36
2019-09-01T17:53:37
C++
UTF-8
C++
false
false
3,853
ino
//Ejemplo casi completo del Sistema. Espera a que el Server establezca la conexion, y comienza la comunicacion arduino-server mediante keypad y bluetooth, //y la comunicacion sistema-usuario mediante la pantalla LCD //LIBRERIAS BLUETOOTH #include <SoftwareSerial.h> //LIBRERIAS KEYPAD ...
[ "moradillo.f@gmail.com" ]
moradillo.f@gmail.com
97139499c65ab91575c03730885a864c3d70833f
9d1062d5d7d43e34e13284a3fdec3aa9bc4616b1
/BasicFaceTracking/SharedContent/cpp/GameContent/Level2.cpp
727acad06d59b4aa13009f2ae1e24c0926da3a8d
[ "MIT" ]
permissive
corbanvilla/COV-Face-Tracking
6b85ea04a508319a09f1d2a134ac009694d750b5
e27f66eeb884509354c194c0f20d2adfb3ec41c9
refs/heads/main
2023-09-04T17:34:12.802818
2021-10-31T20:56:31
2021-10-31T20:56:31
423,257,552
0
0
null
null
null
null
UTF-8
C++
false
false
2,554
cpp
//********************************************************* // // Copyright (c) Microsoft. All rights reserved. // This code is licensed under the MIT License (MIT). // THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY // IMPLIED WARRANTIES OF FITNESS FO...
[ "corbanvilla@gmail.com" ]
corbanvilla@gmail.com
9c7dd6e38dddfca5903ecd5be58302abd4937448
f7ef7dabcc31ce5e2684a028f25f059302040392
/src/gs2/ez/friend/Client.cpp
e42a987daf56daaa210735b765fccb1863c75c3f
[]
no_license
gs2io/gs2-cpp-sdk
68bb09c0979588b850913feb07406698f661b012
8dc862e247e4cc2924a060701be783096d307a44
refs/heads/develop
2021-08-16T17:11:59.557099
2020-08-03T09:26:00
2020-08-03T09:26:10
148,787,757
0
0
null
2020-11-15T08:08:06
2018-09-14T12:50:30
C++
UTF-8
C++
false
false
26,189
cpp
/* * Copyright 2016 Game Server Services, Inc. or its affiliates. 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. * A copy of the License is located at * * http://www.apache.org/licenses/LICENSE-2.0 * ...
[ "imatake_haruhiko@gs2.io" ]
imatake_haruhiko@gs2.io
d3330947e331f9726157244bb35a331d90bdced4
8d32836a6c2e7e458a2a6d6f4d89f2e5c659673e
/dependencies/SRC/threading/ThreadManagement.h
708a5506e91da48e5be8c3b7a45f083a565e4ee5
[]
no_license
Sandshroud/Ronin
e92e53c81fdab4cefc0de964d2fb8cebc34ee41e
94986c95e88abe6cedd240e0ce95f6f213b05d90
refs/heads/master
2023-05-10T21:58:29.115832
2023-04-29T04:26:34
2023-04-29T04:26:34
74,101,915
12
7
null
null
null
null
UTF-8
C++
false
false
5,557
h
/* * Sandshroud Project Ronin * Copyright (C) 2015-2017 Sandshroud <https://github.com/Sandshroud> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License,...
[ "Crow5736@yahoo.com" ]
Crow5736@yahoo.com
26ce077de2c35a707aff5eb1027bc16c2a9e931b
f81124e4a52878ceeb3e4b85afca44431ce68af2
/re20_1/processor32/35/U
525fbd6246d7186a19c9d8742f10549d2adf4e1d
[]
no_license
chaseguy15/coe-of2
7f47a72987638e60fd7491ee1310ee6a153a5c10
dc09e8d5f172489eaa32610e08e1ee7fc665068c
refs/heads/master
2023-03-29T16:59:14.421456
2021-04-06T23:26:52
2021-04-06T23:26:52
355,040,336
0
1
null
null
null
null
UTF-8
C++
false
false
6,364
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 7 \\/ M anipulation | \*-------...
[ "chaseguy15" ]
chaseguy15
f64076326d3efa8b3045de1bb8dcc1288e1012c7
d4cadc2d29825bc4dd64ca13ab2361a027f8f35b
/src/unistdx/base/types
85f35f1c69e979510d53a8ce426ef3d2d3939054
[ "Unlicense" ]
permissive
staring/unistdx
f3430cced14f4ad4d3b8e5e16f75fa4e69679420
b73a614b3554d5cd06594cffa5b36f1a5887f684
refs/heads/master
2020-03-17T14:26:00.607927
2018-04-27T15:27:13
2018-04-27T15:27:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
945
#ifndef UNISTDX_BASE_TYPES #define UNISTDX_BASE_TYPES #include <cstddef> #include <cstdint> #include <unistdx/config> #define MAKE_ASSERT(bits, bytes) \ static_assert(sizeof(u ## bits) == bytes, "bad u" #bits " type"); \ static_assert(sizeof(i ## bits) == bytes, "bad i" #bits " type") namespace sys { typedef ::st...
[ "igankevich@ya.ru" ]
igankevich@ya.ru
3d42ad04481e03593e3e10f22173b3607b55db2f
98b1e51f55fe389379b0db00365402359309186a
/homework_6/problem_2/100x100/0.222/phi
d6f818cefda2ec6c894d9fbadb48dd42e40baec2
[]
no_license
taddyb/597-009
f14c0e75a03ae2fd741905c4c0bc92440d10adda
5f67e7d3910e3ec115fb3f3dc89a21dcc9a1b927
refs/heads/main
2023-01-23T08:14:47.028429
2020-12-03T13:24:27
2020-12-03T13:24:27
311,713,551
1
0
null
null
null
null
UTF-8
C++
false
false
142,976
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 8 \\/ M anipulation | \*-------...
[ "tbindas@pop-os.localdomain" ]
tbindas@pop-os.localdomain
998cd6e1dd0fb4e36cf1c1094fe6d47369afb0cc
5740e41c77ddaa68dce3f39dbf0899a1eab9c6fd
/src/rpc/misc.cpp
966410f1751de1fc9a62e287bb108d8bafb371ff
[ "MIT" ]
permissive
dutchpatriot/FlorijnCoin14
04322982aae59691c245927dce443976ec12b7a7
3b18390acd5de6aedd5d5b45101f31395f8f6d98
refs/heads/master
2021-01-18T22:45:09.188658
2017-04-03T11:43:51
2017-04-03T11:43:51
87,067,620
0
0
null
null
null
null
UTF-8
C++
false
false
19,968
cpp
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2015 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "base58.h" #include "clientversion.h" #include "init.h" #include "main.h" #in...
[ "dutchpatriot@gmail.com" ]
dutchpatriot@gmail.com
e8093b76fb32a3e0ad8bc65fb152d251d2b70393
dd5639d2b206d5a38ecff6056a26cf185ceaf18e
/IA/QuickSort/main.cpp
bfaa5c0aeb3d1e53ec7018cb977b6d37b409e8ef
[]
no_license
LeulShiferaw/resume
7a84f0cb78528011b70d01796d5fda86922ca43c
812539fe4a12329472391980b6f37d4bb440c0d1
refs/heads/master
2021-04-09T10:50:36.063786
2018-03-16T12:34:00
2018-03-16T12:34:00
125,513,147
0
0
null
null
null
null
UTF-8
C++
false
false
1,671
cpp
#include <ctime> #include <cstdlib> #include <iostream> using namespace std; //Partition' pair<int,int> partition(int *A, const int &p, const int &r) { int j=p-1; for(int i=p; i<r-1; ++i) { if(A[i]<A[r-1]) { ++j; swap(A[i],A[j]); } } ++j; int t=j-1; swap(A[j],A[r-1]); for(int i=j; i<r-1; ++i) { ...
[ "abiyleoul3@gmail.com" ]
abiyleoul3@gmail.com
776f3620eb8e09c17280ef8c95a14293caef7bb9
6542725373a5191cef81ff9cbde9861515a4cfbb
/examples/better webserver/src/main.cpp
f77e98e58d5561ec93707678b1e21c05c2ac8c08
[]
no_license
IEEE-LMU/Ambient-Led-Project
07ae722d866f96329193ad9a3494097a277f774d
b9a05038a0053f4b6a3d3afc558b6d29a024c056
refs/heads/master
2020-04-19T02:04:40.563272
2020-02-19T05:26:36
2020-02-19T05:26:36
167,891,578
3
0
null
2019-11-13T05:12:21
2019-01-28T03:15:35
C++
UTF-8
C++
false
false
4,466
cpp
#include <Arduino.h> /* Copyright (c) 2015, Majenko Technologies 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 the above copyright notice, th...
[ "pedrosalesrodriguez@gmail.com" ]
pedrosalesrodriguez@gmail.com
86c5741078bbead9a55897146e66e0f8150a6716
c8a3f2f6f7eda6369a5c13f637a333be865a838c
/fsm_share/fsm_cpp_in_practice/jump_cpp/network/protobuf/FriendHelpList_Ack.pb.h
aaae4a3c8304eff506738ac45d3e185bb03e575b
[]
no_license
PenpenLi/tools_script
e3a73775bb2b19fb13b7d15dce5d47c38566c6ca
8f0fce77799e4598ff00d408083597a306f8e22e
refs/heads/master
2021-06-07T22:38:17.214344
2016-11-21T02:10:50
2016-11-21T02:10:50
null
0
0
null
null
null
null
UTF-8
C++
false
true
19,385
h
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: FriendHelpList_Ack.proto #ifndef PROTOBUF_FriendHelpList_5fAck_2eproto__INCLUDED #define PROTOBUF_FriendHelpList_5fAck_2eproto__INCLUDED #include <string> #include <google/protobuf/stubs/common.h> #if GOOGLE_PROTOBUF_VERSION < 2005000 #error Thi...
[ "chris@lis-Mac-mini.local" ]
chris@lis-Mac-mini.local
82e204ee155492d86c6e1e913b2616c23486b879
ff21c9c79c6f85c1f06f6026f581dd8307df86a6
/14923/14923.cpp
0260615169c285ceebf35169b32e3c998e329b82
[]
no_license
dahyelucy/BOJ
68ab88e2d6c03420f5e1468caf0a72a140646ee2
58c44ecfe5d3fd46b366ad810b98642cc75e7892
refs/heads/master
2020-04-02T09:58:10.741210
2018-10-23T11:54:33
2018-10-23T11:54:33
154,318,865
0
0
null
null
null
null
UTF-8
C++
false
false
1,357
cpp
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <queue> using namespace std; typedef struct Node{ int x; int y; bool isbreak; }Node; int map[1001][1001]; int dist[1001][1001][2]; int N, M, hx, hy, ex, ey; queue<Node> q; int dx[4] = { -1,0,1,0 }; int dy[4] = { 0,1,0,-1 }; void sol...
[ "gomulemi@naver.com" ]
gomulemi@naver.com
9deeada6020c3709947a9d541672d86961022b9a
be5f4d79910e4a93201664270916dcea51d3b9ee
/fastdownward/src/search/search_engine.h
2213222fac41f53b3bca54f285314138ef9dab40
[ "MIT", "GPL-1.0-or-later", "GPL-3.0-or-later" ]
permissive
mehrdadzakershahrak/Online-Explanation-Generation
17c3ab727c2a4a60381402ff44e95c0d5fd0e283
e41ad9b5a390abdaf271562a56105c191e33b74d
refs/heads/master
2022-12-09T15:49:45.709080
2019-12-04T10:23:23
2019-12-04T10:23:23
184,834,004
0
0
MIT
2022-12-08T17:42:50
2019-05-04T00:04:59
Python
UTF-8
C++
false
false
2,396
h
#ifndef SEARCH_ENGINE_H #define SEARCH_ENGINE_H #include "operator_cost.h" #include "operator_id.h" #include "search_progress.h" #include "search_space.h" #include "search_statistics.h" #include "state_registry.h" #include "task_proxy.h" #include <vector> class Heuristic; namespace options { class OptionParser; cla...
[ "zaker.mehrdad@gmail.com" ]
zaker.mehrdad@gmail.com
6dfd43c0eee7399f4c4a4ccf94eca713cbed7701
669435f6743e62fb35f6e2f33456490b2b59a2d5
/Graphics/CLIPP.CPP
0c4124f6aedb142c5be11f1580c12a2fd3951152
[]
no_license
sunil15563/prolog
b06c76d77cd06950f91513f27f6697071ec5aa05
e8fd6518155b6921cf9fbc95a7dbaa2ec56bbbd4
refs/heads/master
2020-03-12T14:08:39.116846
2018-04-05T09:04:45
2018-04-05T09:04:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,566
cpp
//toclip a polygon #include<iostream.h> #include<conio.h> #include"gfunc.cpp" #include"list.cpp" #include<graphics.h> #include<process.h> #include<new.h> #include<math.h> int n; float x_array[40],y_array[40],final_x[40],final_y[40]; void input() { cout<<"Enter the no. of vertices of ur polygon "; cin>>n; for(int i...
[ "sk360607@gmail.com" ]
sk360607@gmail.com
8f1408949823ec101143fb2910d0792fc71bce46
c20c4812ac0164c8ec2434e1126c1fdb1a2cc09e
/Source/Source/KGUI/driver/khotkeymgr.h
f093bc9288edc3db60490618633875e22d974aea
[ "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
3,992
h
//////////////////////////////////////////////////////////////////////////////// // // FileName : khotkeymgr.h // Version : 1.0 // Creator : Hu Changyin // Create Date : 2006-8-2 14:19:00 // Comment : // //////////////////////////////////////////////////////////////////////////////// #ifndef _INCL...
[ "dark.hades.1102@GAMIL.COM" ]
dark.hades.1102@GAMIL.COM
01719b60ad23deffa92b5e0a70a4c032aebc061b
741a44ec9bbc4afd235e7ad6acf39315f6fb941e
/VisionSource/Engine/ThirdParty/pal-code-r685/branches/CMake_build_system/paldemo/test_motor.cpp
3d7b4d62fc0c22ee37aa9dcbcb85846c0fe21e52
[ "Apache-2.0" ]
permissive
TheophilusE/VisionEngine
423d5f184e190317de82ac3b563264484834930c
241b4203323361e2026346a185875bed1bb4133d
refs/heads/master
2023-07-29T09:37:02.979203
2021-09-10T04:46:33
2021-09-10T04:46:33
397,366,356
0
0
null
null
null
null
UTF-8
C++
false
false
5,272
cpp
#include "test_motor.h" FACTORY_CLASS_IMPLEMENTATION(Test_Motor); bool g_drive = false; void Test_Motor::CreateChain(int xyz) { m_BodyType1="palStaticBox"; m_BodyType2="palBox"; palBodyBase *pb_last = 0; palBodyBase *pb = 0; pb_last = CreateBody(m_BodyType1.c_str(),0,2,0,1,1,1,0); for (int i=1;i<5;i++) { ...
[ "65521326+GodTHEO@users.noreply.github.com" ]
65521326+GodTHEO@users.noreply.github.com
1a00b167eef58b72189abad65a4e8501c48a3a6a
c0b2abf06ea0daebf3cd29c58b0f999255dc200a
/algorithm_toolbox/wk2/2/covering_segments/covering_segments.cpp
e554a2b74ab9be445405503a5b26389946953081
[]
no_license
moyuanhuang/coursera_algorithm_design_cse202
9c599eb3b058c6cf2daf7b402dfa0d4596deaf55
240b12c0ee21eafb6c9f738a31f81ce1837fc88d
refs/heads/master
2021-01-20T06:52:29.335001
2017-03-19T04:34:43
2017-03-19T04:34:43
82,598,418
0
0
null
null
null
null
UTF-8
C++
false
false
1,190
cpp
#include <algorithm> #include <iostream> #include <climits> #include <vector> using namespace std; struct Segment { int start, end; }; bool cmp(Segment a, Segment b){ return a.start < b.start; } vector<int> optimal_points(vector<Segment> &segments) { vector<int> points; //write your code here sort(segment...
[ "moyuanhuang@gmail.com" ]
moyuanhuang@gmail.com
faf84a534c568f87efb572a4c92bc76423d5e927
5446eda51198e422cc36960c7806d62e69a1bd89
/src/rpcprotocol.cpp
6ba7a14d9c68b7bf3ac138e786d68a71da68b822
[ "MIT" ]
permissive
finalprojectone/rubika
60261d7259eefdf89a5e4ea2e82d6bfcd4974afa
fbaf8d1b82e7f84e27cdfc1f9c1ef2d2fc7b441c
refs/heads/master
2020-03-29T21:52:23.356343
2018-09-28T13:06:40
2018-10-16T06:24:22
150,391,864
0
0
null
null
null
null
UTF-8
C++
false
false
9,163
cpp
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2017 The PIVX developers // Copyright (c) 2018 The LightPayCoin developers // Distributed under the MIT software license, see the accompanying // file COPYING or ...
[ "rubikaproject@gmail.com" ]
rubikaproject@gmail.com
6b5287d6963a782b6d377f04f340a18758b3125f
8dc01f304229ca676cd41bfa33d6d93c48ec1737
/Robotics/Robo car/colourtrack_v5.2/colourtrack_v5.2.ino
25f5617e2fb8930f188d430dd6f8317482e18b90
[]
no_license
WaniAnuj/Development
fade9881966446b1f36a95622c78ad0beb69d2d4
9ddfd9af3c9ebe6b8a5f51ea4ce0d936a6477b84
refs/heads/master
2023-05-03T22:06:33.638023
2021-05-26T08:44:25
2021-05-26T08:44:25
270,703,507
0
0
null
null
null
null
UTF-8
C++
false
false
5,249
ino
// most reliable out of others #include <Servo.h> Servo myservo; int pos = 90; const int s0 = 7; const int s1 = 8; const int s2 = 4; const int s3 = 3; const int out = 2; // Variables int red = 0; int green = 0; int blue = 0; //Motor A const int left_motor_1 = 12; // when 1 > 2, forward const int left...
[ "wanianuj96@gmail.com" ]
wanianuj96@gmail.com
e2251f582b772f75383dbdc7f2fa9ecc10fd70d3
4bc71c372535554f9a9c9b612796213770204a0a
/Embarcadero/XE6/CPP/Settings Project/SettingsProjectForm.cpp
bc617617ee5fd449754d85a877c67abfa1df27f4
[]
no_license
jimmyat2023/Firemonkey
e843cea2a4475138ec281ae712455d9240a062c4
fe8a78893c6df92fe6a6aa472d8698d3fe1f52e0
refs/heads/master
2023-03-22T10:44:55.203200
2020-02-19T14:09:36
2020-02-19T14:09:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,134
cpp
//--------------------------------------------------------------------------- // This software is Copyright (c) 2013 Embarcadero Technologies, Inc. // You may only use this software if you are an authorized licensee // of Delphi, C++Builder or RAD Studio (Embarcadero Products). // This software is considered a Redistr...
[ "eli@peacekeeper.com" ]
eli@peacekeeper.com
d0a5c86a1d79018444a6c8dd5a8976eec35e4619
986c21d401983789d9b3e5255bcf9d76070f65ec
/src/plugins/newlife/importers/akregator/akregatorimportpage.h
b1836fde5555342a4d2ad913068967abf90e61f6
[ "BSL-1.0" ]
permissive
0xd34df00d/leechcraft
613454669be3a0cecddd11504950372c8614c4c8
15c091d15262abb0a011db03a98322248b96b46f
refs/heads/master
2023-07-21T05:08:21.348281
2023-06-04T16:50:17
2023-06-04T16:50:17
119,854
149
71
null
2017-09-03T14:16:15
2009-02-02T13:52:45
C++
UTF-8
C++
false
false
1,035
h
/********************************************************************** * LeechCraft - modular cross-platform feature rich internet client. * Copyright (C) 2006-2014 Georg Rudoy * * Distributed under the Boost Software License, Version 1.0. * (See accompanying file LICENSE or copy at https://www.boost.org/LICENSE...
[ "0xd34df00d@gmail.com" ]
0xd34df00d@gmail.com
abe0bd2dd008c29faaccf23af40934f3a8c51630
2cb806aa54883eb67c4ef48a7ada3b46b44a4b6f
/tfmiss/ops/cc/ops/preprocessing/spaces_after.cc
ffdc334cab8f634920a91f80164b9c0c61786689
[ "MIT" ]
permissive
templeblock/tfmiss
4eb83acd98c04448d76d265c79d82a21985c22a2
e24ab83e7a6baf991c37b9307f4d607569780e3a
refs/heads/master
2023-08-30T11:50:09.061116
2021-11-11T12:56:05
2021-11-11T12:56:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
985
cc
#include "tensorflow/core/framework/op.h" #include "tensorflow/core/framework/shape_inference.h" namespace tensorflow { namespace miss { REGISTER_OP("Miss>SpacesAfter") .Input("source_values: string") .Input("source_splits: T") .Attr("T: {int32, int64} = DT_INT64") .Output("token_values: string") ...
[ "shkarupa.alex@gmail.com" ]
shkarupa.alex@gmail.com
6451e897fd7b579c548b2da404b1ad9b397ae2da
3585ef6a8bfe01aaba5a74d6ffa18137fd8ad846
/User-Level Thread Library/threadlibrary.h
76fd7254f6039435422426a490935f430b118fbd
[]
no_license
gabrielfoo/userlevel_thread_library
7f3433f683d6225d4d92ac7ce31f108996ec4fb9
0c3aaa723ce45371c36dba50ba0be8523d7854eb
refs/heads/master
2022-11-05T11:56:47.945763
2020-06-06T15:00:16
2020-06-06T15:00:16
269,970,754
0
0
null
null
null
null
UTF-8
C++
false
false
1,473
h
#ifndef THREAD_LIB_H #define THREAD_LIB_H #include <list> #include <ctime> enum THREAD_STATUS { NOT_STARTED, RUNNING, FINISH }; typedef unsigned int thread_id_; struct TCBlock { //thread control block : info about current threads here thread_id_ PID; void *(*func_ptr)(void *) = nullptr; void* func_param = nullp...
[ "tanwqing@gmail.com" ]
tanwqing@gmail.com
edfd89b6ae8fb0878688c4957b67a5c44fe806c5
2ea91f4b2d4a44f36f9b8cea1b0d1a3c8da0b27f
/engine/src/Component/MeshComponents/AssimpMesh.h
ac5215ca6db55f8a67aa2b3822db3c332c0082a8
[]
no_license
knut0815/MoonEngine
4ed46ab414efef7ac4b499d6da2b0a3b86b7401a
243cce7988ee089d0fc51d817e2736501e019702
refs/heads/master
2021-06-12T19:51:46.802997
2017-03-24T23:58:20
2017-03-24T23:58:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
883
h
#pragma once /** * Virtual mesh interface for any * renderable meshes */ #include "Component/Component.h" #include "Loaders/AssimpModelInfo.h" #include "Component/MaterialComponents/AssimpMaterial.h" #include "Mesh.h" namespace MoonEngine { class AssimpMesh: public Mesh { public: AssimpMesh(AssimpModelInf...
[ "kpiddy@gmail.com" ]
kpiddy@gmail.com
ecaf7b8e283405323e0911c4a41e254cf95b4f3e
00e9b8471bd2e81ceb667fc82e49240babbb113e
/main/common/CL_Http_thread.cpp
83009a5072afce0d8df90a8205e5e0b24b9bbe6b
[]
no_license
Xershoo/BM-Client
4a6df1e4465d806bca6718391fc2f5c46ab1d2b4
2d1b8d26d63bb54b1ac296341353a6e07809b2d6
refs/heads/master
2020-03-29T05:01:00.564762
2019-03-06T01:46:35
2019-03-06T01:46:35
149,561,359
5
1
null
null
null
null
UTF-8
C++
false
false
1,203
cpp
#include "CL_Http_thread.h" #include <QDebug> CL_Http_Head_Thread::CL_Http_Head_Thread() { m_pFunc = NULL; m_pUser = NULL; } CL_Http_Head_Thread::~CL_Http_Head_Thread() { } bool CL_Http_Head_Thread::startthread(cbHttpHeadThreadFunc pFunc, void *pUser) { if (pFunc && pUser) { m_pFunc = pFunc;...
[ "704686823@qq.com" ]
704686823@qq.com
48d14f7dfa5e9bec0df61afa4a639da6a94e150e
0966bd9089e176a53a876d2cf36c251840508d1f
/cpp/gen/KeyLink.hpp
cb19bf55a53f6445b85fc803aee56e7dbe95c4f8
[ "CC-BY-4.0", "LicenseRef-scancode-unknown-license-reference", "Unlicense" ]
permissive
TipeSoft/DiCoTAE
ee8113cc6e7eb15de4c8ab73a85857c948378781
fc900e131ab80411152ce5cd9511bfbf6b05dd6c
refs/heads/master
2021-09-06T04:17:58.807847
2018-02-02T09:07:58
2018-02-02T09:07:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,136
hpp
#ifndef KEYLINK_HPP_ #define KEYLINK_HPP_ #include <QObject> #include <qvariant.h> class KeyLink: public QObject { Q_OBJECT Q_PROPERTY(QString uuid READ uuid WRITE setUuid NOTIFY uuidChanged FINAL) Q_PROPERTY(QString url READ url WRITE setUrl NOTIFY urlChanged FINAL) Q_PROPERTY(QString title READ title WRITE ...
[ "jorge.hontoria@tipesoft.com" ]
jorge.hontoria@tipesoft.com
4ed0fd6219519a91f9f63aa4371447dc995ee0e0
dfce829880966af4344c611e103d06252228cde9
/stl/squeue.h
bf67afc779de17e33ec4c02594f41ff9b6427ffe
[]
no_license
KKRainbow/LalrLib
dc6ebbd605b607dc98979b1dde1bbb4c3c0fd904
ea4c96fdac03a8666b4a04219b33c5b58dff7941
refs/heads/master
2021-01-22T21:13:39.974926
2015-08-30T19:26:06
2015-08-30T19:26:06
36,546,524
0
0
null
null
null
null
UTF-8
C++
false
false
1,600
h
#ifndef SSTL_QUEUE_H #define SSTL_QUEUE_H #include"sstl/sstl_deque.h" #include"sstl/sstl_heap.h" SSTL_BEGIN_NAMESPACE template<class T, class Sequence = Deque<T>> class Queue :public Object { __LLIB_CLASS_DECLARE(Queue, Object); public: typedef T value_type; typedef Sequence container_type; typedef size_t size_ty...
[ "443152178@qq.com" ]
443152178@qq.com
7235e11385571ce681b49e67e06fa4c0abd5ec45
d0f4db57f321ae2b88d193775421172a848bfecb
/CD/SW/Controller/Hovedprogram/E4PRJ4/src/TWTTLsocket.h
80fdd1e0eae369a02f69400118a289e8f4464c93
[]
no_license
mickkn/E4PRJ4
01393c0c8e81c1b338c5cad5d5bb35b96af566d3
05dc49d5c278d8c58731d1b06d6bf332c49e9c56
refs/heads/master
2020-05-27T23:26:46.197000
2015-05-27T17:04:34
2015-05-27T17:04:34
30,015,772
0
0
null
null
null
null
UTF-8
C++
false
false
391
h
/* * TWTTLsocket.h * * Created on: 26/03/2015 * Author: Overgaard */ #ifndef TWTTLSOCKET_H_ #define TWTTLSOCKET_H_ #include "GPIOsocket.h" class TWTTLsocket { public: TWTTLsocket(int msbPin, int lsbPin); ~TWTTLsocket(); int getPinValue(int pin) const; int getBabyconLevel(void); int...
[ "mickkn@gmail.com" ]
mickkn@gmail.com
72e23e3adc8f0625c272b5e56280310447f8d91d
82762ba9622e6112c0fe59739912cf44553850f5
/src/gallium/drivers/r600/sfn/sfn_shader_tess.cpp
e492e108a3483d92be3837bf8a41a05af8541cf8
[]
no_license
FireBurn/mesa
1fcc1ba4f27f6bfd7cb6e7cd86c7628bf64cc1b8
ce25668d020fc29a5815d1f2bedee44a796ea234
refs/heads/main
2023-08-17T20:58:46.465785
2023-07-17T16:28:43
2023-07-17T19:00:39
7,839,366
0
0
null
2023-09-05T20:11:23
2013-01-26T15:22:21
C
UTF-8
C++
false
false
7,925
cpp
/* -*- mesa-c++ -*- * * Copyright (c) 2022 Collabora LTD * * Author: Gert Wollny <gert.wollny@collabora.com> * * 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, in...
[ "emma+marge@anholt.net" ]
emma+marge@anholt.net
354a906ca860b2be8fa6e72675f84ee576f9565a
c60afc4b67cf08e04579cc4bc117730ad13a8a2f
/observador/observador.ino
92162e971e0d14f5557e2949dccbb77e85331c9a
[]
no_license
lluissalord/Control-DC-Motor
9327d24391624f347881eb4df3038dbdecee6ddd
9ca4c7d3d2797a2d5a02f5a9bbe59ab19cad7c1d
refs/heads/master
2021-01-10T08:14:49.948263
2016-01-19T22:46:45
2016-01-19T22:46:45
49,986,928
0
0
null
null
null
null
UTF-8
C++
false
false
3,654
ino
//#include <avr/io.h> //#include <avr/interrupt.h> int ENB=11;//as before int encoderA=2; //connected to Arduino?s ports 2 and 3 int pulseAlength=0;//encoder Chanel B pulse length in microseconds unsigned long time_bef; unsigned long time_now_loop; volatile double v=0; volatile double v_sum=0; volatile double v_mean=0;...
[ "l.salord.quetglas@gmail.com" ]
l.salord.quetglas@gmail.com
45324d1fdbbb1963f08ef8cba80c470da9bcb36f
24146e5b09a792692d9acb9e82ba4fbd12af20ad
/src/filters/parser/AudioSplitter/stdafx.h
d6123097e9228d557f9d250df43c3858c33fc2c8
[]
no_license
RocherKong/MPCBE
846a0bdeaa92d37f93526b0be4d5325e0f360312
3a3a879aa4d71cfd23cab36d2e30b67f82e7b04e
refs/heads/master
2020-06-10T07:39:51.502548
2017-11-29T05:35:40
2017-11-29T05:35:40
75,987,960
0
0
null
null
null
null
UTF-8
C++
false
false
1,050
h
/* * (C) 2003-2006 Gabest * (C) 2006-2017 see Authors.txt * * This file is part of MPC-BE. * * MPC-BE is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your opt...
[ "rocher@126.com" ]
rocher@126.com
b9f123ae3a235342cba3fb034eb2cd92d1678ba5
d69fced8e9e8f0bea1777bb170865729c910008d
/samples/Juliet-1.3/C/testcases/CWE134_Uncontrolled_Format_String/s06/testcases.h
96ae5bc245efe9c2fcb34d457be2258d27d1391e
[]
no_license
maurer/marduk
efe7ba04ecc84263441a2167e4bc8b3d6d4d017a
2c47519a96e331f403fd7a9a058d0b51309a613f
refs/heads/master
2021-06-03T19:59:15.786320
2020-04-21T05:00:03
2020-04-21T05:01:45
110,798,164
3
1
null
null
null
null
UTF-8
C++
false
false
44,588
h
// NOTE - eventually this file will be automatically updated using a Perl script that understand // the naming of test case files, functions, and namespaces. #ifndef _TESTCASES_H #define _TESTCASES_H #ifdef __cplusplus extern "C" { #endif // declare C good and bad functions #ifndef OMITGOOD /* BEGIN-AUT...
[ "matthew.r.maurer@gmail.com" ]
matthew.r.maurer@gmail.com
aaf9b78ba954d535c0f3b7c8bc60bc7c3b70a8c8
bf4c7063613e2828949ddb332ce5996574b11d3d
/src/compiler/translator/tree_ops/spirv/EmulateFramebufferFetch.cpp
23791298743dea835f4ea42a55b666816266fb01
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
google/angle
86e1915dcedbb5c79c1de742aa17996a43380670
2ed7d887bad338a357abcc7506f564ba7e98b77f
refs/heads/main
2023-08-31T14:36:59.914898
2023-08-31T13:42:55
2023-08-31T14:15:02
23,355,681
3,159
654
NOASSERTION
2023-07-12T02:03:11
2014-08-26T14:59:07
C++
UTF-8
C++
false
false
20,208
cpp
// // Copyright 2023 The ANGLE Project Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // // EmulateFramebufferFetch.h: Replace input, gl_LastFragData and gl_LastFragColorARM with usages of // input attachments. // #include "compiler...
[ "angle-scoped@luci-project-accounts.iam.gserviceaccount.com" ]
angle-scoped@luci-project-accounts.iam.gserviceaccount.com
c0372a4fb1066b844f122636eeb984fcd79ec742
f362b9c8571f6ffbe0d05382e3159efc46810b1f
/Snake811/ui_mainwidget.h
14e84e5c9ae647bde7a8ae8b6378393a50b670eb
[]
no_license
Jerry211GitHub/ssm-1911
3f537666664b5626029e101504f9a42a2d6214aa
1b7c20318ec0618c80fc17b9836491cb4d2505f9
refs/heads/master
2023-07-07T11:57:16.247235
2021-08-13T08:03:52
2021-08-13T08:03:52
395,562,436
0
0
null
null
null
null
UTF-8
C++
false
false
1,389
h
/******************************************************************************** ** Form generated from reading UI file 'mainwidget.ui' ** ** Created by: Qt User Interface Compiler version 5.12.11 ** ** WARNING! All changes made in this file will be lost when recompiling UI file! **************************************...
[ "2396068316@qq.com" ]
2396068316@qq.com
0ee8043f518f91e4a7c4f2ca14f694272f1035d9
eb0998a100f382a239ea43bab97ec42979e0e598
/GrayHamiltonian.h
5fd03cd2df196bd5e37519aab41864d9a8c9ea90
[]
no_license
jfancode/GrayHamiltonianCycles
68916b82061e877d0ebd883ff15830d5763ec8a6
fdb26d7e6dd4d33f6da3eda4c19985ce1ebe668e
refs/heads/master
2021-01-22T02:17:59.149627
2017-05-25T01:54:54
2017-05-25T01:54:54
92,351,000
0
0
null
null
null
null
UTF-8
C++
false
false
2,785
h
/* GrayHamiltonianSearch.h Types and macros for GrayHamiltonianSearch. Created by jfan for CS49 Parallel Algorithms. */ #ifndef GRAY_HAMILTONIAN #define GRAY_HAMILTONIAN #include <math.h> #include <map> /* ===================== STRUCTS AND MACROS ======================= */ /* A set of LUTs that allows loo...
[ "Jessica.C.Fan.17@dartmouth.edu" ]
Jessica.C.Fan.17@dartmouth.edu
cfe5f7a363f886673f21daa02b1ca665faf292d9
d1cead6b83197392aa87d5b6a23f6277a8d4bddd
/LeetCode/1100.find-k-length-substrings-with-no-repeated-characters.239504720.ac.cpp
9fd64a26bd99073becf10c5dd9cd4e0eaee6c9e5
[]
no_license
shahidul-brur/OnlineJudge-Solution
628cee3c9d744dedc16783a058131571d473f0ec
21400822796d679b74b6f77df2fc8117113a86fd
refs/heads/master
2022-09-22T00:42:21.963138
2022-09-21T14:01:09
2022-09-21T14:01:09
192,035,325
0
0
null
null
null
null
UTF-8
C++
false
false
586
cpp
class Solution { public: int numKLenSubstrNoRepeats(string S, int K) { int cnt[26]; memset(cnt, 0, sizeof(cnt)); int n = S.length(); int lft = 0, ans = 0; cnt[S[0]-'a']++; if(K==1) ans = 1; for(int i = 1;i<n;i++){ cnt[S[i]-'a']++; while(cnt[S[i...
[ "shahidul.cse.brur@gmail.com" ]
shahidul.cse.brur@gmail.com
aa0377544088f0769334de707002e6298b600d42
1eb894c9842bbae917f5a8c35784e34abfa35331
/Assignment-2(Recursion and backtracking)/generateParentheses.cpp
a822498fe15eef1cb9da4e6c3113767bc21bb152
[]
no_license
witcher-shailesh/CP_CipherSchools
b4dc6b6dd2d1e93d3bddd64779af09dc93ae86bb
96242b60b90d642fff306dedbc5d69b5ec739c14
refs/heads/main
2023-03-08T12:15:29.549532
2021-02-22T15:01:44
2021-02-22T15:01:44
338,615,327
0
0
null
null
null
null
UTF-8
C++
false
false
908
cpp
#include<bits/stdc++.h> using namespace std; void generateParenthesisHelper(int open, int close, int n, string soFar, vector<string>& result){ if(open>n || close > n){ return; } if(close>open){ return; } if(open == n && close == n){ result.pus...
[ "shailesh.techcourse@gmail.com" ]
shailesh.techcourse@gmail.com
554d7ddb07864e0cd67fcfa6c873b3c00f7c94a3
157fd7fe5e541c8ef7559b212078eb7a6dbf51c6
/Tools/Support/PerfMon/RegPerfMon/RegisterPerfMon.cpp
eccf104e78e3fe8047fa832064f7914a7f5c3d76
[]
no_license
15831944/TRiAS
d2bab6fd129a86fc2f06f2103d8bcd08237c49af
840946b85dcefb34efc219446240e21f51d2c60d
refs/heads/master
2020-09-05T05:56:39.624150
2012-11-11T02:24:49
2012-11-11T02:24:49
null
0
0
null
null
null
null
IBM852
C++
false
false
5,925
cpp
// $Header: $ // Copyrightę 1999 TRiAS GmbH Potsdam, All rights reserved // Created: 08.09.99 15:58:03 // // @doc // @module RegisterPerfMon.cpp | Implementation of the <c CRegisterPerfMon> class #include <StdAfx.h> #include "RegisterPerfMon.h" #define LOADLIBRARY_FAILED(x) (x == 0) using namespace std...
[ "Windows Live ID\\hkaiser@cct.lsu.edu" ]
Windows Live ID\hkaiser@cct.lsu.edu
bf24087df45b05902921829ebb6a1aa6c122a9b0
d23d36fd5b4e6851fef68940b15ed625677a576b
/作业8-练习1/作业8-练习1/作业8-练习1View.cpp
1f995682d4698d7530b79cccd226fc4f0e2e0fb6
[]
no_license
DJQ0926/test
0d5fd731edef513e08b1169578e70fe9139d7d05
e9a755ac66750e14bbb870d211531d91a92fc2ee
refs/heads/master
2021-02-15T23:03:21.681207
2020-07-05T09:51:20
2020-07-05T09:51:20
244,942,227
0
0
null
null
null
null
GB18030
C++
false
false
2,572
cpp
// 作业8-练习1View.cpp : C作业8练习1View 类的实现 // #include "stdafx.h" // SHARED_HANDLERS 可以在实现预览、缩略图和搜索筛选器句柄的 // ATL 项目中进行定义,并允许与该项目共享文档代码。 #ifndef SHARED_HANDLERS #include "作业8-练习1.h" #endif #include "作业8-练习1Doc.h" #include "作业8-练习1View.h" #ifdef _DEBUG #define new DEBUG_NEW #endif // C作业8练习1View IMPLEMENT_DYNCREATE(C作业...
[ "964158009@qq.com" ]
964158009@qq.com
8b6c4831ffdf0c83bdfc3cdb97425d5e1480b966
6112e4d427cc743dd5935e0d1aae5e175eb29345
/Tree_and_Graph/bfs.cpp
ad06c3260db7f4fdb6ad8bf562ac16d408439a38
[]
no_license
Pankajcoder1/Algorithm
022a805a8a6ac4b7affe8f99c87f9f607f585ad1
e74977f96b90af28443695abaabced7352498b8a
refs/heads/master
2021-09-20T08:53:27.386668
2021-08-10T09:08:57
2021-08-10T09:08:57
239,831,361
1
1
null
null
null
null
UTF-8
C++
false
false
2,682
cpp
/* written by Pankaj Kumar. country:-INDIA */ #include <bits/stdc++.h> using namespace std; typedef long long ll ; typedef set<pair<int,int>> spi; typedef set<pair<ll,ll>> spl; typedef vector<pair<int,int>> vpi; typedef vector<int> vi; typedef vector<ll> vl; typedef vector<bool> vb; typedef vector<char> vc; typ...
[ "pankajkumarmath1@gmail.com" ]
pankajkumarmath1@gmail.com
18430e221619604d75a82fa4df31dce57ba32046
ec5ca910930c7dcad8f99ad0b5de2afca727ec61
/Source/S05_TestingGrounds/Character/Mannequin.cpp
dc9bdb77eac6e10fdabf81b0053c0d7c6003495c
[]
no_license
Boostedblue24/05_TestingGrounds
e2580cf11f82921aa8be1ad3eb06a8dc90283272
d0378759b6f7fb85af59aeab0b88161487c60be4
refs/heads/master
2020-04-21T19:11:56.608554
2019-03-06T03:47:12
2019-03-06T03:47:12
169,798,358
0
0
null
null
null
null
UTF-8
C++
false
false
3,259
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "Mannequin.h" #include "Camera/CameraComponent.h" #include "Components/CapsuleComponent.h" #include "Kismet/GameplayStatics.h" #include "Animation/AnimInstance.h" #include "../Public/Weapons/Gun.h" // Sets default values AMannequ...
[ "evan.oliver87@gmail.com" ]
evan.oliver87@gmail.com
7779b3727690fe413b9c8d44ed70494d801b117a
2de8a6c7ae3dcd1111b10d462bfe05ab7e24181f
/src/force/framework/force_test.cpp
674b3b445625ab828e7b8af450647a8457648ba2
[ "BSD-3-Clause" ]
permissive
HSRobot/hiropV3
c57e441b09cd06cfba239eab8f6e7656da261f1e
3f094035229708302aec976cfb252f7bcdb7cd3f
refs/heads/master
2022-12-11T13:38:26.622098
2020-09-02T01:52:20
2020-09-02T01:52:20
282,765,977
0
0
null
null
null
null
UTF-8
C++
false
false
821
cpp
#include <iostream> //#include <hirop/force/forcePluginAggre.h> using namespace std; int emain(int args, char** argv){ // forcePluginAggre plugin; // plugin.setForcePlugin("hsImpenderrForce","1", "/home/fshs/work/hirop/src/force/config/parmtemplate.yaml"); // std::vector<std::string> forceList; // plugin...
[ "13674059697@163.com" ]
13674059697@163.com
9ce4aae826d74fabcfbff06f8846e445e3473739
dc8225fba020b18b51746984994bb0d2d6d932a3
/src/analysis.cxx
752a73cb93ebf887e11f6a032f72dc19aac98144
[]
no_license
berghaus/qci_analysis
a364be7e35f09438c59407e94594d93a036c84fd
c8f295223256da4a6860941df122acf44937c687
refs/heads/master
2021-01-19T15:33:00.176902
2012-11-15T00:42:50
2012-11-15T00:42:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
16,120
cxx
#include <algorithm> #include <fstream> #include <iostream> #include <vector> #include <cmath> #include <cfloat> #include <cstdlib> #include <stdexcept> #include <ctime> #include <limits> #include <boost/foreach.hpp> #define foreach BOOST_FOREACH #include <boost/checked_delete.hpp> #include <boost/assign/list_of.hpp> ...
[ "frank@uvic.ca" ]
frank@uvic.ca
fbd6ee967e1884cde9043619c8eb8ddc0e080d08
cf27690ffff5f09eadf7bcb0fe870d3c1f4e5bab
/LegendOfMir2_Server/Def/EnDecode.cpp
dfe61f20ac882cb5fa17b432fcddf5481af818d0
[]
no_license
louisnorthmore/LegendOfMir2_VC
b6ae195398a7a866b98d8e524ac5911d476ca44c
d3d7ba0ec2076805805a93ebedcf442ba23173e5
refs/heads/master
2020-08-12T09:18:37.330228
2017-08-02T04:51:04
2017-08-02T04:51:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,527
cpp
// EnDecode.cpp : Defines the entry point for the DLL application. // #include "stdafx.h" static unsigned char Decode6BitMask[5] = { 0xfc, 0xf8, 0xf0, 0xe0, 0xc0 }; /* ************************************************************************************** Encode/Decode Routine for UNICODE character ...
[ "418094911@qq.com" ]
418094911@qq.com
efbc412e3b2c0412771c877f6d0d617c843f7ec1
52507f7928ba44b7266eddf0f1a9bf6fae7322a4
/SDK/BP_MetalDetailColor2_classes.h
50d1a8fdce728782d09a78d01129ff509c1bb056
[]
no_license
LuaFan2/mordhau-sdk
7268c9c65745b7af511429cfd3bf16aa109bc20c
ab10ad70bc80512e51a0319c2f9b5effddd47249
refs/heads/master
2022-11-30T08:14:30.825803
2020-08-13T16:31:27
2020-08-13T16:31:27
287,329,560
1
0
null
null
null
null
UTF-8
C++
false
false
656
h
#pragma once // Name: Mordhau, Version: 1.0.0 #ifdef _MSC_VER #pragma pack(push, 0x8) #endif namespace SDK { //--------------------------------------------------------------------------- // Classes //--------------------------------------------------------------------------- // BlueprintGeneratedClass BP_MetalDeta...
[ "51294434+LuaFan2@users.noreply.github.com" ]
51294434+LuaFan2@users.noreply.github.com
497b237af09a2246cc15510b84eaf6795cb161f5
a8f2b90b92ec5c38b0607a2b7e8e96eb86800be1
/include/pyfbsdk/pyfbrenderoptions.h
1b51761b15a190d5c672b43e17a0e8739651ca33
[]
no_license
VRTRIX/VRTRIXGlove_MotionBuilder_Plugin
27703a15bd68460095034c7b50d6078c8dad2ad8
8acee1c8d6786e9d580f55d8e2e2d41283274257
refs/heads/master
2023-05-01T03:00:17.419854
2021-11-25T08:05:13
2021-11-25T08:05:13
204,840,760
6
0
null
null
null
null
UTF-8
C++
false
false
1,956
h
#ifndef pyfbrenderoptions_h__ #define pyfbrenderoptions_h__ /************************************************************************** Copyright 2010 Autodesk, Inc. All rights reserved. Use of this software is subject to the terms of the Autodesk license agreement provided at the time of installation or download...
[ "arnoldg@vrtrix.com" ]
arnoldg@vrtrix.com
20314c85286dfc6aff93cc6b54631ba93194d135
bf1f8194a886ee4a22124a105cb0e24e385d4b82
/Contests/JULY16/CHEFTET/CHEFTET_0.cpp
616ef6cf26a89819b13bb4095d80364b8b264f2e
[]
no_license
subramaniam97/Competitive-Programming
622450b0278eb137b078043676ffb0c132211821
fcdf154d63480eb992a01ef5f1c7e971a19f97cb
refs/heads/master
2021-01-12T08:41:40.780513
2016-12-16T15:42:52
2016-12-16T15:42:52
76,664,024
0
0
null
null
null
null
UTF-8
C++
false
false
2,642
cpp
#include<bits/stdc++.h> using namespace std; long long int a[10005], b[10005]; bool used[10005]; int n; bool ok(long long int s) { for(int i = 1; i <= n; i++) { int req = s - a[i]; bool flag = 0; if(req < 0) return 0; if(req == 0) continue; vecto...
[ "nitksubbu@gmail.com" ]
nitksubbu@gmail.com
4d8937ac5fead928cb4648ed2648d716a7e2543c
eaffa873454f17cd51e19fac86bfb7af7d7551bc
/net/include/net/icmp.hpp
8ea3d74e499029006786da409ee79b07fbbc1957
[]
no_license
RostakaGmfun/otrix
01d691687588227c5b0316c9b8470f741247c404
1fe2e8c6363ca8e76fea39481f9341bd095002b8
refs/heads/master
2023-04-06T13:42:08.441197
2021-04-18T19:36:12
2021-04-18T19:36:12
333,126,089
0
0
null
null
null
null
UTF-8
C++
false
false
500
hpp
#pragma once #include "kernel/semaphore.hpp" #include "net/ipv4.hpp" namespace otrix::net { // forward declaration class sockbuf; class icmp { public: icmp(ipv4 *ip); bool ping(ipv4_t addr, uint64_t timeout); private: void process_packet(sockbuf *data); void process_echo_request(sockbuf *data); ...
[ "rostawesomegd@gmail.com" ]
rostawesomegd@gmail.com
456389bed6e86269abebaff25ff685d3bb02e7d8
f3784e0b001fbbcbcee51a8b565319a50bacd7c5
/cses/dt/ch1/summa.cpp
bf813a0d7c74930044713a7d839f6b45499be28f
[]
no_license
mrannanj/contest
935d0c6ae9af6c5032baed9355fa89d152e82bb2
2410b9868cd9279a3c1364d3e8eaf70ceaf12436
refs/heads/master
2020-12-25T17:15:21.017679
2017-02-12T17:30:38
2017-02-12T17:30:38
18,183,287
0
0
null
null
null
null
UTF-8
C++
false
false
96
cpp
#include <cstdio> int main() { long a,b; scanf("%ld %ld", &a, &b); printf("%ld\n", a+b); }
[ "martti.rannanjarvi@dovecot.fi" ]
martti.rannanjarvi@dovecot.fi
d424459f329b176448c5e2f65be02834a4d6d29f
fcc88521f63a3c22c81a9242ae3b203f2ea888fd
/C++/0054-Spiral-Matrix/soln.cpp
d98f1f07adec950e1a9731aa0b42d45001a1aac6
[ "MIT" ]
permissive
wyaadarsh/LeetCode-Solutions
b5963e3427aa547d485d3a2cb24e6cedc72804fd
3719f5cb059eefd66b83eb8ae990652f4b7fd124
refs/heads/master
2022-12-06T15:50:37.930987
2020-08-30T15:49:27
2020-08-30T15:49:27
291,811,790
0
1
MIT
2020-08-31T19:57:35
2020-08-31T19:57:34
null
UTF-8
C++
false
false
793
cpp
class Solution { public: vector<int> spiralOrder(vector<vector<int>>& matrix) { vector<int> ans; if (matrix.size() == 0 || matrix[0].size() == 0) return ans; int r = 0, c = 0; int dr = 0, dc = 1; int m = matrix.size(); int n = matrix[0].size(); set...
[ "zhang623@wisc.edu" ]
zhang623@wisc.edu
eb91ef25959079fcf403a31de876d0a8ee03c608
05bb58762bb1fe9e393111917f0efc41f2cc6373
/BlasterMasterNES/Game.cpp
cd7bba00d30c454be432d5e9cdcdf71d3698e5da
[]
no_license
luong210978/gamelast
346e9a0a16ea0f7fb6a82d69e55f9c3fb7207bf7
9f426cdf1f32683a18d2942af5be138e3b825bed
refs/heads/main
2023-06-29T10:27:48.692762
2021-07-28T08:55:56
2021-07-28T08:55:56
390,282,491
0
0
null
null
null
null
UTF-8
C++
false
false
13,247
cpp
#include <iostream> #include <fstream> #include "Game.h" #include "Utils.h" #include "PlayScence.h" #include "OpeningScene.h" #include "EndingScene.h" #include "RollOutScene.h" #include "Sound.h" CGame * CGame::__instance = NULL; /* Initialize DirectX, create a Direct3D device for rendering within the window, in...
[ "63649962+luong210978@users.noreply.github.com" ]
63649962+luong210978@users.noreply.github.com
5562896665fa2a2729584fa8214864158bb4b3f9
b28305dab0be0e03765c62b97bcd7f49a4f8073d
/chrome/browser/ui/views/web_dialog_view_browsertest.cc
64b2bf55266f01e83f1cb99f65e690e889c9a3e0
[ "BSD-3-Clause" ]
permissive
svarvel/browser-android-tabs
9e5e27e0a6e302a12fe784ca06123e5ce090ced5
bd198b4c7a1aca2f3e91f33005d881f42a8d0c3f
refs/heads/base-72.0.3626.105
2020-04-24T12:16:31.442851
2019-08-02T19:15:36
2019-08-02T19:15:36
171,950,555
1
2
NOASSERTION
2019-08-02T19:15:37
2019-02-21T21:47:44
null
UTF-8
C++
false
false
9,294
cc
// Copyright (c) 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. #include "base/bind.h" #include "base/bind_helpers.h" #include "base/location.h" #include "base/macros.h" #include "base/run_loop.h" #include "base/si...
[ "artem@brave.com" ]
artem@brave.com
4ced96fd6b9d9787c77e4333b629ba4cdd79fa1d
a32d337a33000593579069873d157a90ba5ca774
/Day1/PracticeA1/no13.cpp
39890514179d73eb541c003a201bff3f20302f9a
[]
no_license
jillions242/My-Practice
9c030656a2503df10b4c155c11baaa05e30ad3a0
14b28546b43f2f7e91bec811b434aca123395099
refs/heads/master
2020-06-09T06:19:42.822715
2019-07-13T21:25:08
2019-07-13T21:25:08
193,389,468
0
0
null
null
null
null
UTF-8
C++
false
false
124
cpp
#include<iostream> #include<cmath> using namespace std; int main(){ cout<< (5/9)*(212-32)<< endl; return 0; }
[ "jillions242@gmail.com" ]
jillions242@gmail.com
1f430574ca769123c47c4208b274fd8fe9e9d1aa
60fb849761837643d7399d5b0ce2b62461924918
/TD5/utilisateurPremium.cpp
f6b6e75fc219c8e7236823ae2a2050c3f88d87e7
[]
no_license
NanorJ/INF1010
7d92214b53de91397e7cde4b8beb458f96623d11
f0f84ede756c978a2bd9c0bfd5b558a39112cbca
refs/heads/master
2020-03-29T08:15:52.591417
2018-12-03T00:27:46
2018-12-03T00:27:46
149,701,925
0
2
null
2018-11-18T01:21:04
2018-09-21T02:59:54
C++
UTF-8
C++
false
false
1,034
cpp
/******************************************** * Titre: Travail pratique #4 - utilisateurPremium.cpp * Date: 19 octobre 2018 * Auteur: Wassim Khene & Ryan Hardie *******************************************/ #include "utilisateurPremium.h" UtilisateurPremium::UtilisateurPremium(const string& nom, MethodePaiement metho...
[ "39227727+NanorJ@users.noreply.github.com" ]
39227727+NanorJ@users.noreply.github.com
d744a42cc5be058fc73ff03e67a48f581890a030
cca5a965d2a67a4f2b364743a984502484ed10e6
/pepper_imitation/src/PepperImitationNode.cpp
31678b401d22bfe3dfe26acf42ec82feaf7ae252
[]
no_license
TelecomAnin/pepper-imitation-pkg
039c01f13be96497bc7f09117db4c01de6d927b8
020a20ab8217d0f86d22823fc3ecefecbef92544
refs/heads/master
2020-03-21T03:36:28.996873
2018-06-19T04:17:54
2018-06-19T04:17:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,369
cpp
#include <algorithm> #include <tf/transform_datatypes.h> #include <pepper_imitation/ImitationResult.h> #include "PepperImitationNode.hpp" namespace Pepper { ImitationNode::ImitationNode() : async_spinner_ { 1 } { node_handle_.param("skeleton_tracker_base_frame", skeleton_tracker_base_frame_, s...
[ "paezguerraalvaro@gmail.com" ]
paezguerraalvaro@gmail.com
bccc0c971a49c9893e3108c91a925311def9498d
96dae00de134c84e58ca7c3a5420313fc484da10
/ICPC_AlgorithmTemplete/数据结构/字符串与各种自动机/回文串的马拉车算法/回文子串以及o(n)算法(求具体是哪个).cpp
9c28beee97b56831877129a1bbe18e528ce1793d
[]
no_license
meiyoumingzile/ICPC_AlgorithmTemplete
62758cde771667bf8602b6e625456a36c8525ab7
2bcabeadd94e83acaffa0b90365c93468a8f0004
refs/heads/master
2023-08-16T23:06:22.774993
2023-08-13T08:47:01
2023-08-13T08:47:01
159,670,934
7
2
null
null
null
null
GB18030
C++
false
false
1,517
cpp
#include<bits/stdc++.h> //#include<windows.h> using namespace std; #define ll long long #define inf 1e-5 const int inv2=500000004; const int INF=2147483647; const int MAX=11000001; const int mod=1e9+7; char str[MAX],s[MAX*2+1],res[MAX]; int p[MAX*2+1]; int Manacher(const char *str){ int i,j,k,len,ls,maxRight,pos,a...
[ "2428578442@qq.com" ]
2428578442@qq.com
f67bb37139c8779f7deebe28f5bdfaa324edf859
f28654bca317d7b872672cae201fc54ee6fc7783
/ExampleCode/StepperMotorSequence/StepperMotorSequence.ino
d287d8730ad9d4f23db29e3b13ec614c3b25e4a5
[]
no_license
zebbarry/Robocup
17f8abdf0e771a5d76fe03f78fd2bc903f138de5
face0529206d34be933dc96368d60bccf325bfc1
refs/heads/master
2022-12-27T23:32:17.863407
2019-10-16T03:09:50
2019-10-16T03:09:50
304,485,643
0
0
null
null
null
null
UTF-8
C++
false
false
2,294
ino
/* This sample code is for testing the 4 stepper motors Each motor will iturn rotate forward then backward */ int M1dirpin = 39; int M1steppin = 38; int M2dirpin = 41; int M2steppin = 40; int M3dirpin = 45; int M3steppin = 44; int M4dirpin = 43; int M4steppin = 42; void setup() { pinMode(49, OUTPUT); ...
[ "zba24@uclive.ac.nz" ]
zba24@uclive.ac.nz
c80329ad0682863436aeb719b35971250aa9bd0b
1054d39cb25d92cd62eb1dc0c4b04bd5359fbea7
/PA122/PA6JeanCho/PA6JeanCho/BST.cpp
b9f40d8988d885a48bb442e5dd059b6c66f95c96
[]
no_license
JeanCho/CPTS122
1c92d3a7770812fda6f112abb10a78a41155a407
79f02e0f1d29bb0638b22c70314fb82c7d27f1fb
refs/heads/master
2020-03-19T07:56:27.922311
2018-06-05T10:44:15
2018-06-05T10:44:15
136,162,123
1
0
null
null
null
null
UTF-8
C++
false
false
3,381
cpp
#include "BST.h" BST::BST(Node *pNewRoot) { this->pRoot = pNewRoot; this->mInput.open("MorseTable.txt", ios::in); this->mInput2.open("Convert.txt", ios::in); this->loadMorseTable(); mInput.close(); } BST::~BST() { cout << "Inside BST destructor, closing files..." << endl; if (mInput.is_open()) { mInput.clos...
[ "nicetoto97@naver.com" ]
nicetoto97@naver.com
adfbfed4256f2282158997d550eaa2f1c3403195
9d364070c646239b2efad7abbab58f4ad602ef7b
/platform/external/chromium_org/ui/app_list/views/search_result_view.h
8a9820dd2be057454276b780f11accf7af299471
[ "BSD-3-Clause" ]
permissive
denix123/a32_ul
4ffe304b13c1266b6c7409d790979eb8e3b0379c
b2fd25640704f37d5248da9cc147ed267d4771c2
refs/heads/master
2021-01-17T20:21:17.196296
2016-08-16T04:30:53
2016-08-16T04:30:53
65,786,970
0
2
null
2020-03-06T22:00:52
2016-08-16T04:15:54
null
UTF-8
C++
false
false
3,082
h
// Copyright (c) 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 UI_APP_LIST_VIEWS_SEARCH_RESULT_VIEW_H_ #define UI_APP_LIST_VIEWS_SEARCH_RESULT_VIEW_H_ #include <string> #include <vector> #include "base/b...
[ "allegrant@mail.ru" ]
allegrant@mail.ru
37993ca7f75d1bd2cd31a85c07ced2b88dfdee1c
9b0f950465bd8b4e82e7d337947accf87a7928bc
/线段树.cpp
555e3cfbe34224afed03986e3967f1e4d4ec96a5
[]
no_license
Haut-Stone/data-structure
f9046ef23d2262aaf84abc1f24d330eaa0553619
04c3e1ad4be2bc129747652a738d42f23864b386
refs/heads/master
2020-12-24T06:47:11.529701
2017-07-13T10:36:00
2017-07-13T10:36:00
73,399,104
2
0
null
null
null
null
UTF-8
C++
false
false
548
cpp
/* * Created by ShiJiahuan(li) in haut. * for more please visit www.shallweitalk.com * * Copyright 2017 SJH. All rights reserved. * * @Author: Haut-Stone * @Date: 2017-04-09 11:43:24 * @Last Modified by: Haut-Stone * @Last Modified time: 2017-04-09 11:43:24 */ #include <algorithm> #include <iostream> #include <cst...
[ "haut.1604.stone@gmail.com" ]
haut.1604.stone@gmail.com
dc07392584aaedb7e25ac794e50aa92633eb890e
69bb1569d7c1a309af58b757a2dec3b5f475249a
/include/argsmap.h
9cdf0f637f7361267f8bb60fb2774d9a43cf978a
[]
no_license
sMaxym/myshell
17c900f4566f19a50dfb3b163af87309854c3fc7
ff95cdb466e545a28a722d0f684dc1e2f04433b3
refs/heads/master
2023-01-02T09:40:38.201602
2020-10-31T21:16:23
2020-10-31T21:16:23
300,282,070
0
0
null
null
null
null
UTF-8
C++
false
false
1,564
h
#ifndef ARGSMAP_H #define ARGSMAP_H #include "syntax_analysis.h" #include <algorithm> template <typename T, typename U> class ArgsMap { typedef std::map<T, U> tree_map_t; tree_map_t tree_map; public: ArgsMap(const tree_map_t& tree_map) : tree_map(tree_map){}; ~ArgsMap() = default; std::pair<std::v...
[ "shakhov@ucu.edu.ua" ]
shakhov@ucu.edu.ua
964cd3a41ecbdfd7f2dc77092a67dec76659605e
3ded37602d6d303e61bff401b2682f5c2b52928c
/ml/1061/Classes/Depends/widget/KDGridView.cpp
4a037f5d8ae340ffb22bc7aeea7feb72bbe6e47c
[ "MIT" ]
permissive
CristinaBaby/Demo_CC
8ce532dcf016f21b442d8b05173a7d20c03d337e
6f6a7ff132e93271b8952b8da6884c3634f5cb59
refs/heads/master
2021-05-02T14:58:52.900119
2018-02-09T11:48:02
2018-02-09T11:48:02
120,727,659
0
0
null
null
null
null
UTF-8
C++
false
false
21,883
cpp
// // STGridView.cpp // SweetDiscovery // // Created by zhangguangzong1 on 8/21/13. // // #include "KDGridView.h" //#include "CSVParse.h" KDGridView::KDGridView(): m_fHSpace(0),m_fVSpace(0), m_iCol(0),m_iRow(0), m_fMarginTop(0),m_fMarginLeft(0), m_fMarginRight(0),m_fMarginBottom(0), m_fAdjustStep(0),m_ScrollCallba...
[ "wuguiling@smalltreemedia.com" ]
wuguiling@smalltreemedia.com
7f5a42b774cc7b42cba3c9479542d546906ea338
b9e8d33a26e13bc5b919150574f03d47a082055a
/library/graphics/RenderTexture.cc
3846b5f24150808cf710372151491a9a9e3d4f31
[ "Zlib", "BSL-1.0" ]
permissive
magestik/gf
9215fb1e25c8a092bad4aa5875f030fd63d891ac
60d9bbe084828fff88f1a511bd1191c774ccef4a
refs/heads/master
2020-12-26T19:54:45.888737
2020-01-14T15:31:28
2020-01-14T15:31:28
237,623,167
0
0
NOASSERTION
2020-02-01T14:02:32
2020-02-01T14:02:31
null
UTF-8
C++
false
false
2,141
cc
/* * Gamedev Framework (gf) * Copyright (C) 2016-2019 Julien Bernard * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages * arising from the use of this software. * * Permission is granted to anyone to use this software fo...
[ "julien.bernard@univ-fcomte.fr" ]
julien.bernard@univ-fcomte.fr
07180b1544ada6504f78e764b14475f333f7aa9b
8ec1987551283f3851c507d8b87c37cd073a9e92
/Super/src/Super/Basic/Math.h
af18bd387d670966090819eb1083a61a83604edc
[]
no_license
Edlward/public
5bab05e745b62087dc60b0979ce71be853f98b73
370bf770d92c1f7b4970b2aa3fb18408e567d275
refs/heads/master
2022-11-17T12:14:55.414823
2020-07-17T19:03:24
2020-07-17T19:03:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
42,220
h
#ifndef MATH_Header #define MATH_Header #include "../Basic/global.h" #include <cmath> #include <stdint.h> #include <type_traits> //TODO:more math const value #ifndef M_2PI #define M_2PI 6.28318530717958647692528676655900576 #endif #ifndef M_E #define M_E (2.7182818284590452354) #endif #ifndef M_LOG2E #define M_L...
[ "yfycp@163.com" ]
yfycp@163.com
541ab2b5b620b8cfd69caafdb360135ebecf6753
4dbb45758447dcfa13c0be21e4749d62588aab70
/iOS/Classes/Native/UnityEngine_UnityEngine_Events_UnityEventCallState3502354656.h
532bffebbbd98aef3170da593149d2fc58916a61
[ "MIT" ]
permissive
mopsicus/unity-share-plugin-ios-android
6dd6ccd2fa05c73f0bf5e480a6f2baecb7e7a710
3ee99aef36034a1e4d7b156172953f9b4dfa696f
refs/heads/master
2020-12-25T14:38:03.861759
2016-07-19T10:06:04
2016-07-19T10:06:04
63,676,983
12
0
null
null
null
null
UTF-8
C++
false
false
1,012
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include "mscorlib_System_Enum2862688501.h" #include "UnityEngine_UnityEngine_Events_UnityEventCallState3502354656.h" #ifdef __clang__ #pragma clang diagnostic push #pragma clang di...
[ "lii@rstgames.com" ]
lii@rstgames.com
6424678a502623ee8889d11b653b915a0381f2ce
27193ac605fb28b9db1840d8430250a3cc851f0a
/src/engine/Color.cpp
73c493626aad234825a5e165925b1d5f998aee89
[]
no_license
escape9179/ogl-game-engine
5fca0fe0f9caf27eafad37b3bfcd42a5cab11493
bc2cf5575e94c384cf62373920ea31eaf1af52fa
refs/heads/master
2022-11-26T15:10:07.607405
2020-07-27T12:30:46
2020-07-27T12:30:46
265,688,825
0
0
null
2020-07-11T06:01:38
2020-05-20T21:22:10
C++
UTF-8
C++
false
false
321
cpp
// // Created by Tre on 7/6/2020. // #include "Color.h" Color::Color() : Triple<float>(1.0f, 1.0f, 1.0f) { } Color::Color(float r, float g, float b) : Triple<float>(r, g, b) { } float Color::getRed() { return first; } float Color::getGreen() { return second; } float Color::getBlue() { return third; ...
[ "tr3.logan@gmail.com" ]
tr3.logan@gmail.com
e548859ae542eaa40fcbc7118ad74c91bd5b82f1
fcff6938f2624d4f9d94f9557fb3ccffa6334d5c
/Common/ClassDescription.cxx
d7b3766af6cb148b28705f4f21cba3e1ba566e2a
[]
no_license
CISMM/ITKPlugins
b50c89b790f2a9f19e29e6c5cebbebcb1539a28b
55095fd43a10122fec357d56205934a36ab02822
refs/heads/master
2020-05-19T21:48:49.775732
2013-04-03T15:28:17
2013-04-03T15:28:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,773
cxx
#include "ClassDescription.h" #include "Enumeration.h" #include "MemberDescription.h" ClassDescription ::ClassDescription() : m_NumberOfInputs( 0 ), m_CustomSetInput( "<undefined>" ) { } ClassDescription ::~ClassDescription() { for ( size_t i = 0; i < m_Enumerations.size(); ++i ) { delete m_Enumeration...
[ "cquammen@cs.unc.edu" ]
cquammen@cs.unc.edu
f9eb7d9c61d1d3d5e1c018e1fb91a1fa844aa54a
afd787d5c5f905d22ee0bc141614a03879a5f722
/C++/ECS/ComponentId.hpp
abf4a59a09a28bb6f29aee8c15d3800d449c46d8
[]
no_license
jinyukyo/ResetCore
163a19991ef85b530354c61d7e5d20f6a067cb88
e216836e19d5dfd8c7f357b90c0a8358295c6574
refs/heads/master
2022-06-02T08:51:03.179964
2020-05-03T17:26:53
2020-05-03T17:26:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,106
hpp
// // Created by 董宸 on 19/01/2018. // #ifndef RESETCORE_COMPONENTID_HPP #define RESETCORE_COMPONENTID_HPP #include <TypeDefine.hpp> #include <vector> #include "IComponent.hpp" namespace ResetCore{ typedef Ruint ComponentId; typedef std::vector<ComponentId> ComponentIdList; class ComponentTypeId { p...
[ "352070977@qq.com" ]
352070977@qq.com
c4bcf7403f9d3e91e131cfbac8b459f007b498cb
7336bcbc0344996592a0580ccf75685f5bfcd90b
/分区分配算法(双链表)/分区分配算法(双链表)/分区分配算法(双链表)/test.cpp
7ed9c2536e051fc882937e3d5cc9cbc605b91ec5
[]
no_license
Jamesuhao/C-
18c82319c8df5c2894a17edbe4aa1dccd8e769d1
30e1434f4d477c25361cbcfd6086c83acc5542e5
refs/heads/master
2020-08-25T08:51:08.155105
2020-04-16T05:11:53
2020-04-16T05:11:53
205,066,942
0
0
null
null
null
null
UTF-8
C++
false
false
207
cpp
#include<stdio.h> #include<stdlib.h> #include"All.h" #include<iostream> using namespace std; int main() { My_Node mylist; My_Job myjob; Al_Size al; Init_List(&mylist); Choose_Alg(&mylist, myjob, al); }
[ "1766727840@qq.com" ]
1766727840@qq.com
f08371522b4c3a4c4896db3c343ae79ecf2d8b8d
5cc38217766f8a49a8a339395d3ca4b4b8161a36
/Servaival/Serval.cpp
ebd01f3acb78c3f1c22ff89da9c8b3ad0a7f9b39
[]
no_license
NeuroWhAI/Servaival
e74c5ea28fed5fc5fb85c88103f5ffc93a8827e4
58a143843c1d394b4e165da0c81c764c79983202
refs/heads/master
2021-01-19T08:24:03.617338
2017-04-08T10:20:00
2017-04-08T10:20:00
87,625,009
3
0
null
null
null
null
UTF-8
C++
false
false
1,767
cpp
#include "Serval.h" Serval::Serval() : m_vibratingValue(0.5f) , m_vibrationGage(0) , m_beforeJump(0) , m_canJump(true) , m_speed(0, 0) { } //######################################################################################################## void Serval::load(const caDraw::TexturePtr& texBody) { m_tex...
[ "neurowhai@gmail.com" ]
neurowhai@gmail.com
1c15f5cecd90499bd0f62d91d4fe2bed1b632a33
c0fd0b920d938704e5cb214ad95296c381281bc4
/main.cpp
31301e1899c75bcf5f03dd0d46e3e1311e480be5
[]
no_license
navarrovitor/cpp-Text-Editor
11f31a05b9667ccc4aacf721638f08fc84d135c0
77f483878a6e8389f08208b31309749c0d9976d8
refs/heads/main
2023-05-11T11:29:17.602236
2021-06-01T23:56:46
2021-06-01T23:56:46
369,298,111
0
0
null
null
null
null
UTF-8
C++
false
false
2,825
cpp
#include "LinkedList.h" int main() { LinkedList linkedList; string file = "inteligenciaEmocional.txt", word, oldWord, newWord; int run = 0, opt; linkedList.loadText(file); cout << endl << "Bem vindo ao editor de texto C++!" << endl << endl << "Com o arquivo " << file << " de base, você...
[ "vitor.san.nav.nexus@gmail.com" ]
vitor.san.nav.nexus@gmail.com