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
405cba984f1af2900f30a5141c237a2d567c07b1
f64462af1aaa8e9be719346f7a57f06e9b4bb984
/Archive/C++/Data_Structure/Trees/traversal.cpp
ead2c7ecdbc68174065d534569c81130b25221a5
[]
no_license
tushar-rishav/Algorithms
4cc5f4b94b5c70d05cf06a5e4394bf2c2670286a
51062dcdaa5287f457c251de59c8694463e01e99
refs/heads/master
2020-05-20T07:27:06.933182
2016-11-11T18:50:00
2016-11-11T19:33:23
40,429,054
3
1
null
null
null
null
UTF-8
C++
false
false
2,357
cpp
/* Implementation of Preorder, Inorder, Postorder traversals in a Tree */ #include <bits/stdc++.h> using namespace std; struct node{ int data; int key; struct node* left; struct node* right; }; class Tree{ private: node* root; int node_count = 0; public: void insert(node**, int); node** get_root(); ...
[ "tushar.rishav@gmail.com" ]
tushar.rishav@gmail.com
deb96de62f026156485714813b96eecdc37e10c5
ab964b34945e3f759818571daa65edde91287ec4
/chapter2/2_2.cpp
e0265b85a821816be5203374fdbabbb841eb8094
[]
no_license
wtfenfenmiao/zishuCode
bd53f9f5bfbe498008efecb9a7da8046dc4a8f51
11d1b2980c2a7824337c2b058c2e154633c1b164
refs/heads/master
2020-03-14T17:19:19.300374
2018-10-19T02:23:13
2018-10-19T02:23:13
131,716,561
0
0
null
null
null
null
GB18030
C++
false
false
479
cpp
#include<stdio.h> int main() { int n; while(scanf("%d",&n)!=EOF) { int count=0; long long temp=n; //输入987654321程序会崩,然而这个987654321在10^9内,所以要加这一个,防止溢出 while(temp>1) { if(temp%2==1) temp=3*temp+1; else temp/=2; ...
[ "wtbupt@outlook.com" ]
wtbupt@outlook.com
d4e5af009aa7b9c010bf82a389f97c3eba3532e4
003305cdacdb538de90cea987b5d85f12dbd73e0
/BasicModule/inc/inc_det/svBase/sv_utils.h
cbd997e44da082bd370bd7d47993dbda7949feed
[]
no_license
github188/EC700IR
a1a66fc88b1256bb60ddb0ec0d33cd3386cf6a63
d7976578c627d9eaa04078fbd7a48d4a211ae3a0
refs/heads/master
2021-01-17T14:01:31.259583
2016-05-13T02:28:04
2016-05-13T02:28:04
66,121,249
2
0
null
2016-08-20T01:02:58
2016-08-20T01:02:58
null
GB18030
C++
false
false
6,745
h
/// @file /// @brief 工具函数定义 /// @author liaoy /// @date 2013/8/26 10:46:40 /// /// 修改说明: /// [2013/8/26 10:46:40 liaoy] 最初版本 #pragma once #include "sv_basetype.h" #include "sv_error.h" #include "sv_rect.h" #include "sv_image.h" #if SV_RUN_PLATFORM == SV_PLATFORM_WIN #include <stdio.h> #endif na...
[ "cangmu2007@163.com" ]
cangmu2007@163.com
f51e1c30bf25999263f8ebdde857c058d67bb69f
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/curl/gumtree/curl_repos_function_768_curl-7.41.0.cpp
dea17d6877dc420d4c5c9022265db5e6417b20dc
[]
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
290
cpp
ParameterError str2double(double *val, const char *str) { if(str) { char *endptr; double num = strtod(str, &endptr); if((endptr != str) && (endptr == str + strlen(str))) { *val = num; return PARAM_OK; /* Ok */ } } return PARAM_BAD_NUMERIC; /* badness */ }
[ "993273596@qq.com" ]
993273596@qq.com
74269d4d777545a89ceb113e15cb28beb3d10d63
503d6e66cd9d93cce8464a386aa8116013964e6d
/labs/WS01/Lab1/tools.h
6044523207e200044f53df94d637a3740fa10526
[]
no_license
Jegurfinkel/OOP244Term2
baad2b1e0170e9ac3d133e590fd8d4739f2748fa
1d82b40b6353887044cdec6aaf28bab338295085
refs/heads/master
2020-03-19T10:41:38.171503
2018-06-07T00:41:06
2018-06-07T00:41:06
136,393,159
0
0
null
null
null
null
UTF-8
C++
false
false
603
h
/*********************************************************************** // OOP244 Workshop 1: Compiling modular source code // File tools.h // Version 1.0 // Date 2018/05/18 // Author Jeffrey Gurfinkel, jegurfinkel@myseneca.ca, 066364092 // Description // provides tools // /////////////////////////////////////////////...
[ "jeffrey.gurfinkel@gmail.com" ]
jeffrey.gurfinkel@gmail.com
39caad74672d16f08df0c68d95c48bcbd89885df
55a565712300b73fa4cce94bdf4d275cbf7802af
/SEI/recapitulare/lab4/timers/timers/timersDlg.h
53359218bc692f64850331295a110e667f38e127
[]
no_license
scorpionipx/ETTIM1
18effb605c1f957ed43012db051a4e3d8c633aec
ff1348a0581b49e48ca034849f5cc738f5aa2839
refs/heads/master
2020-03-30T12:57:16.890238
2019-07-15T11:21:00
2019-07-15T11:21:00
151,249,532
0
1
null
null
null
null
UTF-8
C++
false
false
766
h
// timersDlg.h : header file // #pragma once #include "afxwin.h" // CtimersDlg dialog class CtimersDlg : public CDialog { // Construction public: CtimersDlg(CWnd* pParent = NULL); // standard constructor // Dialog Data enum { IDD = IDD_TIMERS_DIALOG }; protected: virtual void DoDataExchange(CDataExchange* pDX)...
[ "scorpionipx@gmail.com" ]
scorpionipx@gmail.com
5b6ca9d55259526271d3717381d147f60d9dc239
80a53fe88d258b48fcf94f4f1b16edcbdb091e1f
/TP2018/TP2018/T3/Z5/main.cpp
8b9dcf168ee80b6f397532a1444179bf17bf1e4c
[]
no_license
MedinaKapo/Programming-tecniques
1170d524bc96600c8bd2ab366bd7778ff3b79396
719f56eeeaf8d47b63f52d5e76297c895d7efe78
refs/heads/main
2023-05-06T14:55:40.015843
2021-06-01T08:58:03
2021-06-01T08:58:03
372,763,866
0
0
null
null
null
null
UTF-8
C++
false
false
1,234
cpp
//TP 2017/2018: Tutorijal 3, Zadatak 5 #include <iostream> #include<deque> using namespace std; int Suma(int n) { int sum=0; while(n!=0) { sum+=n%10; n/=10; } return sum; } deque<int>IzdvojiElemente(deque<int>d,bool vrijednost) { deque<int> vracam; if(vrijednost==true) { ...
[ "mkapo2@etf.unsa.ba" ]
mkapo2@etf.unsa.ba
c772f9050abb1517fbf04b037f440bda8996799b
43b3dfe24ccd0f33878cb2bf630a9c8e4aecea66
/level1/p07_encrypt_decrypt/encrypt_decrypt/main.cpp
8690973b5519e2079f7a7bc3c0e72f4b763dd4fa
[ "MIT" ]
permissive
yanrui20/c2020-1
3c7f5286b5e42dc4a47245577f1d21d3778eb3e8
6f108b1b6a981ac9b12a9422f611f20fd45f7901
refs/heads/master
2021-01-16T05:10:41.193697
2020-03-18T15:34:10
2020-03-18T15:34:10
242,986,667
1
0
MIT
2020-02-25T11:46:28
2020-02-25T11:46:27
null
GB18030
C++
false
false
838
cpp
#include <stdio.h> #include "encrypt_decrypt.h" int main(int argc, char* argv[]) { int choice = -1; // 循环 + 菜单 while (choice) { printf("程序菜单:\n"); printf("1)加密\n"); printf("2)解密\n"); printf("※其他输入将退出程序\n"); printf("请输入您的选择:"); if (scanf_s("%d", &choice) == 1) { //解决多余输入 while (...
[ "1657066071@qq.com" ]
1657066071@qq.com
1a9f08fb09dcee59512c5725dc176e213ef82fe6
98ec42398374ef91666550255e4958be69820cae
/emilib/profiler.cpp
d98bddf3d8fafd5acbc4034febe33127192ffe50
[ "LicenseRef-scancode-other-permissive", "LicenseRef-scancode-public-domain", "LicenseRef-scancode-public-domain-disclaimer" ]
permissive
Zabrane/emilib
fde23b7e00f345db7c8a9b4e5b390f686885eff6
0d90f4c0cd44813f6898b417bf3f4ef574a5b136
refs/heads/master
2022-04-23T10:52:29.257760
2020-04-23T10:13:57
2020-04-23T10:13:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,574
cpp
// Created by Emil Ernerfeldt on 2014-05-22. // Copyright (c) 2015 Emil Ernerfeldt. All rights reserved. // #include "profiler.hpp" #include <loguru.hpp> #ifdef __APPLE__ #include "TargetConditionals.h" #endif namespace profiler { using namespace std; using namespace std::chrono; const bool OUTPUT_STALLS = ...
[ "emilernerfeldt@gmail.com" ]
emilernerfeldt@gmail.com
4de6bc276e05de90281a3a5ce0df422d6cba9499
dae883ee037ad0680e8aff4936f4880be98acaee
/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
8f05c61a957f8b9e95e911e6cee21ffdf7116871
[ "NCSA" ]
permissive
frankroeder/llvm_mpi_checks
25af07d680f825fe2f0871abcd8658ffedcec4a7
d1f6385f3739bd746329276822d42efb6385941c
refs/heads/master
2021-07-01T00:50:27.308673
2017-09-21T20:30:07
2017-09-21T20:30:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
632,278
cpp
//===-- DAGCombiner.cpp - Implement a DAG node combiner -------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===-------------------------------------------------------...
[ "frankyroeder@web.de" ]
frankyroeder@web.de
c553bc896cc0d7e311219a8b895a5b01776971b5
3ea829b5ad3cf1cc9e6eb9b208532cf57b7ba90f
/libvpvl2/include/vpvl2/extensions/icu4c/String.h
0f8f8347c36158c9dc7b439b9a687e2debd34c20
[]
no_license
hkrn/MMDAI
2ae70c9be7301e496e9113477d4a5ebdc5dc0a29
9ca74bf9f6f979f510f5355d80805f935cc7e610
refs/heads/master
2021-01-18T21:30:22.057260
2016-05-10T16:30:41
2016-05-10T16:30:41
1,257,502
74
22
null
2013-07-13T21:28:16
2011-01-15T12:05:26
C++
UTF-8
C++
false
false
4,351
h
/** Copyright (c) 2010-2014 hkrn 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, this list of conditions and the foll...
[ "hikarin.jp@gmail.com" ]
hikarin.jp@gmail.com
e15b6ff53ea4cb0c5617820374ad166457c67d5a
877e454863f0b8ec8b25f472856e06b28d9683e0
/c2c/Builder/C2ModuleLoader.h
8298cd42aff3ad645eb9d01810208749b643fdd9
[]
no_license
jtp6052/c2compiler
d1fc502132e89536a12e02bdf2cafe8336d964e8
7c012b84a849900a62a72f5b8c5443e130c888c3
refs/heads/master
2021-01-18T10:30:08.739835
2015-05-03T08:49:46
2015-05-03T08:49:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
816
h
/* Copyright 2013,2014,2015 Bas van den Berg * * 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 o...
[ "b.van.den.berg.nl@gmail.com" ]
b.van.den.berg.nl@gmail.com
ce2c9346a2dae1fdd4af1705e41ac8e940087d83
a5659d7e45eb0ca27b29f120d31a48d9c0d06613
/starlab/core/plugins/gui_decorate/gui_decorate.h
26f69f73af94574c3924c0ae8830893587ba7dc4
[]
no_license
debayan/FAT
9eaa64c8fcb6feb40b3fc0f2bcfa6dfbe6b0b567
f986b9fd5d2becd635f2e137a016f68fab5968f2
refs/heads/master
2021-01-18T15:30:59.269163
2017-08-15T13:43:23
2017-08-15T13:43:23
100,380,880
1
0
null
null
null
null
UTF-8
C++
false
false
660
h
#pragma once #include <QToolBar> #include "StarlabMainWindow.h" #include "interfaces/GuiPlugin.h" #include "interfaces/RenderPlugin.h" #include "interfaces/DecoratePlugin.h" class gui_decorate : public GuiPlugin{ Q_OBJECT Q_INTERFACES(GuiPlugin) /// @{ Load/Update public: void load();...
[ "debayanin@gmail.com" ]
debayanin@gmail.com
c821600150d07913eaf0000ef7a00b002566bf4c
c776476e9d06b3779d744641e758ac3a2c15cddc
/examples/litmus/c/run-scripts/tmp_5/R+rfi-datapl+rfilp-popa.c.cbmc_out.cpp
73c68ca5fa1a70a83f3f25ea6ec496f86b829b63
[]
no_license
ashutosh0gupta/llvm_bmc
aaac7961c723ba6f7ffd77a39559e0e52432eade
0287c4fb180244e6b3c599a9902507f05c8a7234
refs/heads/master
2023-08-02T17:14:06.178723
2023-07-31T10:46:53
2023-07-31T10:46:53
143,100,825
3
4
null
2023-05-25T05:50:55
2018-08-01T03:47:00
C++
UTF-8
C++
false
false
48,642
cpp
// Global variabls: // 0:vars:2 // 2:atom_0_X5_2:1 // 3:atom_0_X2_1:1 // 4:atom_1_X2_2:1 // 5:atom_1_X3_0:1 // Local global variabls: // 0:thr0:1 // 1:thr1:1 #define ADDRSIZE 6 #define LOCALADDRSIZE 2 #define NTHREAD 3 #define NCONTEXT 5 #define ASSUME(stmt) __CPROVER_assume(stmt) #define ASSERT(stmt) __CPROVER_assert...
[ "tuan-phong.ngo@it.uu.se" ]
tuan-phong.ngo@it.uu.se
60d7d3eb27c6fbbd4e60834340ee957609e0ba9a
04b9831df2d2d0e6d34556cc4e3426d1c1e25346
/razerz_v0.00.1/source/modualz/milieu/partical_env.cpp
a1850741e6a6a54a0d902bbef4cc9310e6454959
[]
no_license
zeplaz/razerz_backup
50f167a169a49701372676ed5a0aa78d933de427
f30567f2d5fbb83dac5a4da297c5e0cc23d5623f
refs/heads/master
2022-04-13T09:44:58.998155
2020-04-01T06:48:02
2020-04-01T06:48:02
231,964,105
0
0
null
null
null
null
UTF-8
C++
false
false
5,533
cpp
#include "partical_env.hpp" long comput_partic_sim::frame_count =0; void compute_partic_attracto::init() { glGenVertexArrays(1, &render_vao); glBindVertexArray(render_vao); set_uniform_loc(); // //glGenBuffers(1, &orgin_ID); //glBindBuffer(GL_UNIFORM_BUFFER, orgin_ID); //glBufferData(GL_UNIF...
[ "life.in.the.vivid.dream@gmail.com" ]
life.in.the.vivid.dream@gmail.com
fa366c25dab24747b281a19d30e5690155434fec
bb512814479e2ce521cc442f7bce776e6b78d1ef
/moore/moorenode/daemon.hpp
59b389f287c548f0ff175ac135fcbf8c3411610b
[ "BSD-2-Clause" ]
permissive
guanzhongheng/project_my
3cbdf94b7b4ba2f8fc9f91c028338285a4aade35
6268a73222dcf3263f5cf8192f374e5c7119ec29
refs/heads/master
2020-04-12T10:36:58.724854
2018-12-21T07:26:02
2018-12-21T07:26:02
162,435,264
3
0
null
null
null
null
UTF-8
C++
false
false
536
hpp
#include <moore/node/node.hpp> #include <moore/node/rpc.hpp> namespace moore_daemon { class daemon { public: void run (boost::filesystem::path const &); }; class daemon_config { public: daemon_config (boost::filesystem::path const &); bool deserialize_json (bool &, boost::property_tree::ptree &); void serialize_js...
[ "373284103@qq.com" ]
373284103@qq.com
a01111c3c75894761dceb209aff765f568dc0eb1
12f72860c03aae2895ad9cadfc760a71843afea6
/2013/software/src/sensors/camera3D/StereoSource.hpp
760867be4d2b47ad50dabdb8d935b236fdb276a2
[]
no_license
bennuttle/igvc-software
01af6034ab8cac8108edda0ce7b2b314d87aa39f
f8e42d020e92d23d12bccd9ed40537d220e2108f
refs/heads/master
2021-01-17T13:59:38.769914
2014-02-26T18:01:15
2014-02-26T18:01:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
856
hpp
#ifndef STEREOSOURCE_H #define STEREOSOURCE_H #include "sensors/camera3D/StereoPair.hpp" #include "sensors/DataStructures/StereoImageData.hpp" #include "events/Event.hpp" #include <boost/thread/thread.hpp> class StereoSource { public: StereoSource() : _running(true) {} inline bool Running(...
[ "alexander.trimm@gmail.com" ]
alexander.trimm@gmail.com
33f50f9c543a87bb1e97de48f6d63988be04f4d5
df1e5024eb33f5526e4495022539b7d87a2a234a
/jian/test.hpp
2694f0975265e3f14893e0e746f7921a86afd247
[]
no_license
hust220/jian
696e19411eca694892326be8e741caf4b8aedbf8
0e6f484d44b4c31ab98317b69883510296c20edb
refs/heads/master
2021-01-11T20:26:49.089144
2017-04-17T06:45:04
2017-04-17T06:45:04
79,116,594
0
0
null
null
null
null
UTF-8
C++
false
false
44
hpp
#pragma once #include "test/UnitTest.hpp"
[ "wj_hust08@hust.edu.cn" ]
wj_hust08@hust.edu.cn
bd42e4b7e2bade87b94ea776e5ce61d535c968e7
c03be8c14d1f50f0f5aa4140dcd72aae0e8d54a5
/chartdelegate.h
5a58e617c34f5f822d5a8dd47104e19a40cc9cfc
[]
no_license
reignofwebber/chart
74a26a549fc0b63be01cdfca4297c9c152a84019
4c69c1399c98c1bcba134fe774347ded8b287ad5
refs/heads/master
2020-04-14T00:17:47.836127
2019-01-04T07:48:46
2019-01-04T07:48:46
163,529,692
0
0
null
null
null
null
UTF-8
C++
false
false
831
h
#ifndef CHARTDELEGATE_H #define CHARTDELEGATE_H #include <QStyledItemDelegate> class ChartCheckBoxDelegate : public QStyledItemDelegate { public: ChartCheckBoxDelegate(QObject *parent = 0); void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const; bool ...
[ "shadowitnesslasher@gmail.com" ]
shadowitnesslasher@gmail.com
b1479c7d603d3575f0ce0e82de431cf475fcc7f2
e0bfa24bacce73eeb68673f26bd152b7963ef855
/workspace1/ABC過去問/ABC169/A.cpp
5160224546791fe1cc2026ebe5ac257574127d2a
[]
no_license
kenji132/Competitive-Programming
52b1147d5e846000355cd7ee4805fad639e186d5
89c0336139dae002a3187fa372fda7652fd466cb
refs/heads/master
2023-04-25T08:29:04.657607
2021-05-12T09:35:20
2021-05-12T09:35:20
314,996,525
0
0
null
null
null
null
UTF-8
C++
false
false
149
cpp
#include <bits/stdc++.h> using namespace std; int main(){ int a,b,ans; cin >> a >> b; ans = a*b; cout << ans << endl; return 0; }
[ "ue52483@gmail.com" ]
ue52483@gmail.com
90a7f97bf306efc26d68be3cb808f4adea4e30e6
d044d94f3af1f057c118a583ce3c05c597a6253d
/src/luabind/test/test_user_defined_converter.cpp
552680d6c5bc23f4b46e086ad1b9583cddd0f748
[ "MIT" ]
permissive
lonski/amarlon_dependencies
3e4c08f40cea0cf8263f7d5ead593f981591cf17
1e07f90ffa3bf1aeba92ad9a9203aae4df6103e3
refs/heads/master
2021-01-10T08:17:16.101370
2016-03-28T21:29:39
2016-03-28T21:29:39
43,238,474
0
0
null
null
null
null
UTF-8
C++
false
false
1,327
cpp
// Copyright Daniel Wallin 2008. Use, modification and distribution is // subject to 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) #include "test.hpp" #include <luabind/luabind.hpp> namespace { struct X { X(lua_Integ...
[ "michal@lonski.pl" ]
michal@lonski.pl
c6a30f65d2aa75eaf23c503ca5c134e2e51370c1
f5e74e06f86e3bc7f82fd02bbcdd2cbe465c75e2
/GameFramework/PP01.HelloSDL/InputHandler.cpp
fca198cc0bd728b0a3546a1465a3a0a9dc7d5ed4
[]
no_license
vRien/20171118
9bc719c71cd685dbe4571a19eb1701ae7b59a75f
12198866bb99caa305aa0ac98fb84e7091f7719b
refs/heads/master
2020-04-05T07:16:30.271418
2018-11-15T17:59:04
2018-11-15T17:59:04
156,669,485
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
2,012
cpp
#include "InputHandler.h" #include "Game.h" InputHandler* InputHandler::s_pInstance = 0; InputHandler::InputHandler() { m_mousePosition = new Vector2D(0, 0); for (int i = 0; i < 3; i++) { m_mouseButtonStates.push_back(false); } } void InputHandler::clean() { // ÇâÈÄ Ãß°¡ } void InputHandler::update() { S...
[ "kuna3844@naver.com" ]
kuna3844@naver.com
60e948562e9dfa8b11052231db2ee52982da881a
303b48eb9354338542e0a4ca68df1978dd8d038b
/include/fox/FXDVec.h
d5f5ca3c3cd9c41a471e629458a0f9c1aada6401
[ "BSD-3-Clause" ]
permissive
ldematte/beppe
fa98a212bbe4a27c5d63defaf386898a48d72deb
53369e0635d37d2dc58aa0b6317e664b3cf67547
refs/heads/master
2020-06-04T00:05:39.688233
2013-01-06T16:37:03
2013-01-06T16:37:03
7,469,184
1
0
null
null
null
null
UTF-8
C++
false
false
5,389
h
/******************************************************************************** * * * D o u b l e - V e c t o r O p e r a t i o n s * * ...
[ "lorenzo.dematte@gmail.com" ]
lorenzo.dematte@gmail.com
06a06baea8b762cf0a3f1c7b70cbbd386277fa01
42d4dd15792f5e86d8b2a629b82e11cc94bb45e2
/windows/RCTPdf/ReactPackageProvider.cpp
af554dd03afeaa06599e8e9e3ebaa33973ddede7
[ "MIT" ]
permissive
wonday/react-native-pdf
0286ab24119d36a27bb63389edde7d0ead5bf57f
ff4fa464fcad9adb388b977d0a8c70febad2ec8d
refs/heads/master
2023-07-22T16:48:40.187069
2023-06-25T16:49:30
2023-06-25T16:49:30
89,375,180
1,483
538
MIT
2023-08-30T08:45:33
2017-04-25T15:12:58
C++
UTF-8
C++
false
false
481
cpp
#include "pch.h" #include "ReactPackageProvider.h" #if __has_include("ReactPackageProvider.g.cpp") # include "ReactPackageProvider.g.cpp" #endif #include "RCTPdfViewManager.h" using namespace winrt::Microsoft::ReactNative; namespace winrt::RCTPdf::implementation { void ReactPackageProvider::CreatePackage(IReactPa...
[ "bartosz@janeasystems.com" ]
bartosz@janeasystems.com
44feb85996c247847678a8efb5ab3afa0979363f
9eea40ddd084afd5da7b057c21b7f1032b40375d
/v8-link/jsc-v8-isolate.cc.inl
f66797eccf75c2918e38e8e279e87b285ed4e426
[ "BSD-3-Clause" ]
permissive
zhj149/ngui
7ef982f5fb018532fed1c27a1285c87a9c73d449
f5c9a82b2ce64eb914727a23299dbb86286f26dc
refs/heads/master
2021-05-10T21:07:24.764653
2018-01-16T02:17:39
2018-01-16T02:17:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
23,069
inl
/* ***** BEGIN LICENSE BLOCK ***** * Distributed under the BSD license: * * Copyright (c) 2015, xuewen.chu * 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 sourc...
[ "louistru@hotmail.com" ]
louistru@hotmail.com
cd60407d8656305839b66062abeb0c9407381f9f
4351d2d9b23429ce0ea215e435cff91a9c7a37c3
/code_base/src/dynamic_modules/NonHoloEMA3D.cpp
a45b85af7fde0fe329b3b6064b5ce9e8074d221d
[]
no_license
islers/molar
bd0c802d936438a883dc19ca74e7508b79f2577d
e98de87b48862ec897256a1e172880d9d4de9521
refs/heads/master
2021-01-13T04:44:26.660386
2015-03-05T22:41:46
2015-03-05T22:41:46
28,885,944
0
0
null
null
null
null
UTF-8
C++
false
false
11,368
cpp
/* Copyright (c) 2014, Stefan Isler, islerstefan@bluewin.ch * This file is part of MOLAR (Multiple Object Localization And Recognition), which was originally developed as part of a Bachelor thesis at the Institute of Robotics and Intelligent Systems (IRIS) of ETH Zurich. MOLAR is free software: you c...
[ "islerstefan@bluewin.ch" ]
islerstefan@bluewin.ch
9260af6b2cb6800046b50d9bc3f194ab7e9ab64d
c7acadf346ad19d10d103cc6f4b29eb1d39c93a7
/Touch/Touch.ino
b83d241c05b24d44e64a5eed37d8b149ba7cca2f
[]
no_license
saparhadi/ESP32
312e0bfd0670eac4ecd4571a682346c156269eed
8d067afc9631c50ced076906e157b7c9d6396f5a
refs/heads/master
2020-08-21T13:37:24.896974
2019-11-04T09:18:33
2019-11-04T09:18:33
216,162,914
0
0
null
2019-10-19T07:23:20
2019-10-19T06:54:07
C++
UTF-8
C++
false
false
269
ino
int TOUCH = T3; //Harus ditambahin "T" soalnya pake sensor Touch, pake nama pin juga bisa int LED = 23; int TRESHOLD = 50; void setup() { Serial.begin(9600); Serial.println("Eh kesentuh :P"); } void loop() { Serial.println(touchRead(touch); delay(500); }
[ "saparhadi@gmail.com" ]
saparhadi@gmail.com
d2916283572c49c84e591846790dfd0b53deb643
e1c68264ea40e3318f22bbd3610b8eddb9191884
/snake_clion/view.cpp
267508215a20eefe54c2f47a83aa0c6748b8c8aa
[]
no_license
Arv1k/4_sem
6a5aef79ab33711066305c8aaf8bc771d10f7186
39347a655311a9ef7382a8f61703e4f66ddb5243
refs/heads/master
2021-01-02T16:57:48.102794
2020-07-17T20:23:42
2020-07-17T20:23:42
239,628,640
0
0
null
null
null
null
UTF-8
C++
false
false
396
cpp
#include "view.h" #include "tui.h" View* View::inst_ = nullptr; View::~View() { inst_ = nullptr; } View* View::get() { if (inst_ != nullptr) { return inst_; } inst_ = new Tui; return inst_; } void View::setOnTimer(int time, Timeoutable timer) { std::pair<long, Timeoutable> res; ...
[ "you@example.com" ]
you@example.com
40fe37f02eea19b0c99e8167dbb300a21a39aa7b
71599d9781f65a725e450208944c069a5b062358
/Codeforces/cf-215/A.cpp
4daa9a2f827283252d21152ec6eb9426482588c0
[]
no_license
shuangde/ACM-ICPC-Record
74babe24f5fe13ea5b9d33b29de5af138eef54cc
1f450d543e7c434af84c0dcaf9de752956aef94f
refs/heads/master
2021-01-17T12:07:19.159554
2014-08-16T08:04:02
2014-08-16T08:04:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,423
cpp
//shuangde #include <iostream> #include <cstdio> #include <algorithm> #include <vector> #include <queue> #include <cmath> #include <cstring> #include <string> #include <map> #include <set> #define MP make_pair #define SQ ((x)*(x)) #define CLR(a,b) memset(a, (b), sizeof(a)) #define cmax(a,b) a=max(a, (b)) #define cmin(...
[ "zengshuangde@gmail.com" ]
zengshuangde@gmail.com
d5d779f52a1f9951ebbf66aadf5204ebd47a740c
f9d043f436bd7127d02ba6fa79729c97800b65b9
/자료구조/lab 4 reform palindrome/lab 4 reform palindrome/소스.cpp
59c821c0492fadb8df54149bc5cf0d43af051b2f
[]
no_license
kjuk02/repository
90200ceb3be5f2df4231aac5843ca2dd26cb087c
294366b424512bd295e9d8a71f88195bbb25fc28
refs/heads/master
2022-01-06T12:31:13.538544
2019-05-04T05:16:47
2019-05-04T05:16:47
103,889,131
0
0
null
null
null
null
UHC
C++
false
false
2,409
cpp
#include <iostream> #include <cstdlib> #include<fstream> #include<string> #include<vector> const char stackSize = 100; char stack[stackSize]; int top; using namespace std; void create_stack(); void push(char num); void displayStack(); int pop(); int isFull(); int isEmpty(); int main() { string num; ifstream inst...
[ "kjuk02@naver.com" ]
kjuk02@naver.com
f9d84f692bfa046346544c26d7d05b93a209568e
c57819bebe1a3e1d305ae0cb869cdcc48c7181d1
/src/qt/src/3rdparty/webkit/Source/WebCore/platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp
66019e81b62fa6d29be395d7b699910543a313b6
[ "BSD-2-Clause", "LGPL-2.1-only", "LGPL-2.0-only", "Qt-LGPL-exception-1.1", "LicenseRef-scancode-generic-exception", "GPL-3.0-only", "GPL-1.0-or-later", "GFDL-1.3-only", "BSD-3-Clause" ]
permissive
blowery/phantomjs
255829570e90a28d1cd597192e20314578ef0276
f929d2b04a29ff6c3c5b47cd08a8f741b1335c72
refs/heads/master
2023-04-08T01:22:35.426692
2012-10-11T17:43:24
2012-10-11T17:43:24
6,177,895
1
0
BSD-3-Clause
2023-04-03T23:09:40
2012-10-11T17:39:25
C++
UTF-8
C++
false
false
43,845
cpp
/* * Copyright (C) 2007, 2008, 2009, 2010, 2011 Apple, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice,...
[ "ariya.hidayat@gmail.com" ]
ariya.hidayat@gmail.com
d98efbec5296d10dab3bd9501b7c859fd5c9949a
89d1563ba49502f20d1b0a2e531b9b93ba672b3d
/Network/X/Src/InputSystem.cpp
3f8ff3be7592b14a40a7928deeedad374f3c8852
[]
no_license
TyLauriente/Networking
55f3f3392360882f40f06fbc60e325b3299b6bd1
83d88a29dd9f9cfe14ce7c9d377e84cbb5f6e16f
refs/heads/master
2020-07-30T02:01:26.869261
2018-12-15T22:14:07
2018-12-15T22:14:07
210,048,076
0
0
null
null
null
null
UTF-8
C++
false
false
15,295
cpp
//==================================================================================================== // Filename: InputSystem.cpp // Created by: Peter Chan //==================================================================================================== #include "Precompiled.h" #include "InputSystem.h" ...
[ "tlauriente@gmail.com" ]
tlauriente@gmail.com
d274282d4c07683cddc7ebd32f133de1f7deab01
d2219fea4d37b8e608e52b9b9a7518d6b213bbbd
/Database/Strategy.cpp
dae67a30aecd0ea78ce764dd75306c4d357ee2e2
[ "BSD-3-Clause" ]
permissive
qijiezhao/gStore
a42403cd4a4f3f18489a466697f52b0e71833ee4
e33617ab9b096be4fecdd41710bde46a643c0a7a
refs/heads/master
2021-01-11T08:15:31.247834
2016-09-18T12:23:50
2016-09-18T12:23:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
17,218
cpp
/*============================================================================= # Filename: Strategy.cpp # Author: Bookug Lobert # Mail: zengli-bookug@pku.edu.cn # Last Modified: 2016-05-07 16:31 # Description: implement functions in Strategy.h ===========================================================================...
[ "zengli-bookug@pku.edu.cn" ]
zengli-bookug@pku.edu.cn
aadfdc0c72a4c93cb044f8db4540856e3cd0f765
91a882547e393d4c4946a6c2c99186b5f72122dd
/Source/XPSP1/NT/admin/wmi/wbem/providers/nteventprovider/dll/ntevtprov.cpp
10a6fd17b234c4a7680758e7e1f710e907ab1b1d
[]
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
15,622
cpp
//*************************************************************************** // // NTEVTPROV.CPP // // Module: WBEM NT EVENT PROVIDER // // Purpose: Contains the WBEM interface for event provider classes // // Copyright (c) 1996-2001 Microsoft Corporation, All Rights Reserved // //**************************...
[ "support@cryptoalgo.cf" ]
support@cryptoalgo.cf
57e4809d112a30b48080cf1543f4b6b93faaf56b
f8cdee63b259f1a2b9dfd40060bcd6436052314d
/aika.h
c927dc13d5ea7a3641064242168e9ab59cfeab09
[]
no_license
Jani-siv/Mystery-Cube-Quest
01baa7157925baaa8ebd18b75d0d93ce82f21400
4aca0135812dfd9bbfb2facd8826b855e8c64b5e
refs/heads/main
2023-02-03T18:46:44.700479
2020-12-12T11:22:58
2020-12-12T11:22:58
311,934,519
1
0
null
null
null
null
UTF-8
C++
false
false
1,616
h
#ifndef AIKA_H #define AIKA_H #include "lcd.h" #include "debug.h" class aika { public: bool yleinenAika = false; //aika keskeytyksen alustus unsigned long int keskeytysMillis = 0; void alustaAika(int maara); ...
[ "info@kengityspaja.fi" ]
info@kengityspaja.fi
cd76d22b15d24212e2d711c8b01bf8eda6e139ed
5456502f97627278cbd6e16d002d50f1de3da7bb
/ash/shared/immersive_fullscreen_controller_delegate.h
0af55cb7ffc2660c76cee4b206b5f3234095e4d4
[ "BSD-3-Clause" ]
permissive
TrellixVulnTeam/Chromium_7C66
72d108a413909eb3bd36c73a6c2f98de1573b6e5
c8649ab2a0f5a747369ed50351209a42f59672ee
refs/heads/master
2023-03-16T12:51:40.231959
2017-12-20T10:38:26
2017-12-20T10:38:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,654
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 ASH_SHARED_IMMERSIVE_FULLSCREEN_CONTROLLER_DELEGATE_H_ #define ASH_SHARED_IMMERSIVE_FULLSCREEN_CONTROLLER_DELEGATE_H_ #include <vector> ...
[ "lixiaodonglove7@aliyun.com" ]
lixiaodonglove7@aliyun.com
cf9dc3b898d492358b10c4c99be35e77fa7c633d
f04bb40794f407e077cf47aab643e8536a7384ec
/Video/cutImageTest/cutImageTest.cpp
eb550a8e40a59500d8818ec7b5451458f1a0e95d
[]
no_license
elfmedy/2013
50f98ca39ff723b869631912df4b2e0c64f52c26
fdc3bac5b17871baa22b1d044afd0a5a0e1fcbdc
refs/heads/master
2020-05-19T07:49:06.318059
2014-01-03T17:58:53
2014-01-03T17:58:53
10,138,872
2
0
null
null
null
null
GB18030
C++
false
false
223
cpp
// cutImageTest.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include "cutImage.h" int _tmain(int argc, _TCHAR* argv[]) { CutImage(10, 10, 100, 200, "in\\2.jpg", "out\\s2.jpg"); return 0; }
[ "flyoverthecity@gmail.com" ]
flyoverthecity@gmail.com
0f40bf1b3e0df596c14ca17287fa9ef43491e3a5
94db0bd95a58fabfd47517ed7d7d819a542693cd
/client/ClientRes/IOSAPI/Classes/Native/AssemblyU2DCSharp_EditerType4017711417.h
88b3e8e66e62437373bbd7db4f769974b7b17005
[]
no_license
Avatarchik/card
9fc6efa058085bd25f2b8831267816aa12b24350
d18dbc9c7da5cf32c963458ac13731ecfbf252fa
refs/heads/master
2020-06-07T07:01:00.444233
2017-12-11T10:52:17
2017-12-11T10:52:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
916
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include "mscorlib_System_Enum2459695545.h" #include "AssemblyU2DCSharp_EditerType4017711417.h" #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Win...
[ "1" ]
1
09744c7580262cd7c57ca7a1947365315e5215b0
ab5bd6ed10341b5c4d63fd04c4f6f809562c3485
/tensorflow/lite/delegates/gpu/cl/kernels/conv_buffer_1x1.h
89f0cae4ea44c9d9cc441799637fc84d3a313216
[ "Apache-2.0" ]
permissive
Arashtbr/tensorflow
925aef7fa7ffe99d0321fc8af13804b6dfe41b7a
4f301f599748928f6a3471d466731cfe5b536670
refs/heads/master
2023-01-14T01:40:57.436443
2020-11-21T00:05:08
2020-11-21T00:12:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,406
h
/* Copyright 2019 The TensorFlow Authors. 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 law or a...
[ "gardener@tensorflow.org" ]
gardener@tensorflow.org
a284ec2c62b6abeabb0b3e63b10ebfe1a5e0d8ac
24c1eae6026f1378172ee3ef4fd47ab39f6d7290
/adddialog.cpp
9e52d36910f0e0bd7a96b4f3aefa4b42954e3df9
[]
no_license
upcomingGit/PasswordManager
5fac90e36b75ded7a913d6eb0a1defb0df3db168
9c779285aa78bf901478d90530a8d8201b95ff54
refs/heads/master
2021-01-10T02:06:22.490500
2016-03-08T04:05:37
2016-03-08T04:05:37
53,294,753
0
0
null
null
null
null
UTF-8
C++
false
false
1,155
cpp
#include "adddialog.h" #include <QGridLayout> AddDialog::AddDialog(QWidget *parent) : QDialog(parent) { nameLabel = new QLabel("Username"); passLabel = new QLabel("Password"); desLabel = new QLabel("Description"); add = new QPushButton("Add"); close = new QPushButton("Close"); username = new ...
[ "ankur1992@gmail.com" ]
ankur1992@gmail.com
8830c64d213dd33a05b07c291928658dc3a5cf1e
379d37c01fc6e8ae01be14dae5bb17a2f6d0b8a7
/ZRXSDK2018/utils/amodeler/inc/morphmap.h
4050f60c6cfa5aa4b8bb0083e665891211ebd845
[]
no_license
xiongzhihui/QuickDim
80c54b5031b7676c8ac6ff2b326cf171fa6736dc
1429b06b4456372c2976ec53c2f91fd8c4e0bae1
refs/heads/master
2020-03-28T12:08:21.284473
2018-09-11T06:39:20
2018-09-11T06:39:20
148,272,259
0
1
null
null
null
null
UTF-8
C++
false
false
1,692
h
#ifndef AECMODELER_INC_MORPHMAP_H #define AECMODELER_INC_MORPHMAP_H #include "global.h" #include <vector> AECMODELER_NAMESPACE_BEGIN class DllImpExp MorphingMap { public: MorphingMap() {} MorphingMap(const MorphingMap&); ~MorphingMap(); MorphingMap& operator =(const MorphingMap&); void add (...
[ "38715689+xiongzhihui@users.noreply.github.com" ]
38715689+xiongzhihui@users.noreply.github.com
446ad44a598270ba5a31427a25bec4f974bf8205
9184c4403f1ff36ba7318fa5c08302db0dd37504
/include/apollo/gc.hpp
c8ff09fce3ca2694e4ad7b75d0c108e62a2a5701
[ "LicenseRef-scancode-unknown-license-reference", "BSD-2-Clause" ]
permissive
Oberon00/apollo
5c0c13799153deddf68aafccb2767788a4082d4f
5940d07f277951a7faad5c53eb9e5f44f12c7de7
refs/heads/master
2021-01-15T18:14:25.353251
2015-09-17T14:31:13
2015-09-17T14:31:13
25,267,679
34
7
null
null
null
null
UTF-8
C++
false
false
2,089
hpp
// Part of the apollo library -- Copyright (c) Christian Neumüller 2015 // This file is subject to the terms of the BSD 2-Clause License. // See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause #ifndef APOLLO_GC_HPP_INCLUDED #define APOLLO_GC_HPP_INCLUDED APOLLO_GC_HPP_INCLUDED #include <apollo/detail/meta_...
[ "cn00@gmx.at" ]
cn00@gmx.at
9cb4f059ed372a0a4f3041cea31f267f1da36885
a4bb94cfe9c0bee937a6ec584e10f6fe126372ff
/Drivers/Video/Console/Console.cpp
61c3ebf8a02b2cd6a3ad948192fecf6816fce2aa
[]
no_license
MatiasNAmendola/magneto
564d0bdb3534d4b7118e74cc8b50601afaad10a0
33bc34a49a34923908883775f94eb266be5af0f9
refs/heads/master
2020-04-05T23:36:22.535156
2009-07-04T09:14:01
2009-07-04T09:14:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
48,172
cpp
/* * Module Name: Console * File: Silver\Console\Console.cpp * */ #include "Drivers\Video\Console\Console.h" #if !defined ( __CONSOLE_CPP_ ) #define __CONSOLE_CPP_ char Console::is_console; unsigned int Console::last_result; unsigned char * Console::vid_mem; unsigned int Console::curr_x, Console:...
[ "codemaster.snake@gmail.com" ]
codemaster.snake@gmail.com
7c608cbddda993f15491fbac404d58d4489c7a49
3e6da13329b52b1eec7ebb872523ffcec6b9114c
/L08/E8.4/Program.cpp
3eb2cc5f94d17718fa7f2bf0cc16a848edf49bb7
[]
no_license
GreenStaradtil/AU-E19-E1OPRG
45d0d90e184564313a973b71822b73774ce9b888
47eed6970c86e0c054655e11fc56c6e69ebb605d
refs/heads/master
2022-03-11T03:36:30.180320
2019-11-20T01:02:03
2019-11-20T01:02:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
346
cpp
#include <stdio.h> #include "Weather.h" int main(int argc, char const *argv[]) { struct dataset entry1 = { 10, 20, 30, 40 }; struct dataset entry2 = { 1, 2, 3, 4 }; printf_s("Printing dataset with p-by-v\n"); printDataset(entry1); printf_s("\nPrinting dataset with p-by-r\n"); printDatasetPtr(&...
[ "kahr.rasmus@gmail.com" ]
kahr.rasmus@gmail.com
d47546a32b5232a983a35ef2edf4a8bc0c020a98
978f387f5280b3f9a0c43bf9896de9376602fbf0
/全局钩子注入/keyhook/keyhook/keyhook.cpp
08c647310258ed4811149ae64c2ba5faa6140624
[]
no_license
Neilai/game-hack
313228d347592c5423d15e7fdfa088eda8e4eb81
0c42ad71fbfcb2cd89bd05e11071616dcaae727c
refs/heads/master
2020-05-23T20:59:08.039503
2019-05-16T03:29:54
2019-05-16T03:29:54
186,942,572
2
1
null
null
null
null
UTF-8
C++
false
false
88
cpp
// keyhook.cpp : 定义 DLL 应用程序的导出函数。 // #include "stdafx.h"
[ "1131894367@qq.com" ]
1131894367@qq.com
f41fc318e95bf71ec4bf647746e1b9cbc709454c
be0d7f710f38f068faa0aa3227ac24a2a5450024
/Programación dinámica/35.cpp
d665f277b9a4ddf8c55d13a6842129bac687d7de
[]
no_license
WyrnCael/TAIS
297b4f1678772c282434ea54f146500bc081898a
a002cde88ffc80d8c73e6f5a48e379b7f202f7e2
refs/heads/master
2021-01-21T10:41:31.050264
2017-02-28T19:36:00
2017-02-28T19:36:08
83,471,170
0
2
null
null
null
null
UTF-8
C++
false
false
2,511
cpp
//TAIS04 Fernando Miñambres y Juan José Prieto // // El problema se resuelve utilizando una matriz para caluclar recursivamente // el numero letras que pueden formar un palíndromo desde i hasta j. Siendo: // // Para todo j >= i // Matriz[i][j] = 1; Si i = j; // Matriz[i][j] = Matr...
[ "juanjpri@ucm.es" ]
juanjpri@ucm.es
4ca035595152118991fb1d0867348c2c43067ea8
5509788aa5c5bacc053ea21796d3ef5ba878d744
/Practice/Other/Luogu 1049 装箱问题.cpp
3775e06c7d21bd96d120dbfe848ad43d8ea8720a
[ "MIT" ]
permissive
SYCstudio/OI
3c5a6a9c5c9cd93ef653ad77477ad1cd849b8930
6e9bfc17dbd4b43467af9b19aa2aed41e28972fa
refs/heads/master
2021-06-25T22:29:50.276429
2020-10-26T11:57:06
2020-10-26T11:57:06
108,716,217
3
0
null
null
null
null
UTF-8
C++
false
false
461
cpp
#include<iostream> #include<cstdio> #include<cstdlib> #include<cstring> using namespace std; const int maxV=20001; const int maxN=40; const int inf=2147483647; int V,N; int weight[maxN]; int F[maxV]; int main() { cin>>V>>N; for (int i=1; i<=N; i++) cin>>weight[i]; memset(F,0,sizeof(F)); for...
[ "1726016246@qq.com" ]
1726016246@qq.com
f6951a9e6ca158a4fa5572d21ddeb4c6d7a38237
15a35df4de841aa5c504dc4f8778581c00397c87
/Server1/Engine/Ext/netdsdk/src/Pipe.cpp
31d81f921e780b5f06b1829a7f38593b40fc99c8
[]
no_license
binbin88115/server
b6197fef8f35276ff7bdf471a025091d65f96fa9
e3c178db3b6c6552c60b007cac8ffaa6d3c43c10
refs/heads/master
2021-01-15T13:49:38.647852
2014-05-05T12:47:20
2014-05-05T12:47:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,388
cpp
#include "Pipe.h" #include "Debug.h" #include "SockAcceptor.h" #include "SockConnector.h" #include <unistd.h> #include <stropts.h> #include <sys/ioctl.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/tcp.h> Pipe::Pipe () { handles_[0] = NDK_INVALID_HANDLE; handles_[1] = NDK_INVALID_HANDLE; ...
[ "jjl_2009_hi@163.com" ]
jjl_2009_hi@163.com
a0e7e627330bec274fb795baa3a91f4fafa07f3b
1a60c841c4cf4159d9badacbe3e3c05dd4340d73
/week_2/2292_tjdwn9410.cpp
5e059555ae54c2c8aefb2a330725e5baf1bb8a8c
[]
no_license
sungjunyoung/algorithm-study
e5d38f0569ec7b639ebd905f0ef79398862696d2
5fb4bc9fa9f96a0d17a097ed641de01f378ead27
refs/heads/master
2020-12-03T03:46:05.244078
2017-10-14T08:01:25
2017-10-14T08:04:59
95,769,994
9
12
null
2017-10-14T08:05:00
2017-06-29T11:16:04
C++
UTF-8
C++
false
false
299
cpp
// // Created by MAC on 2017. 7. 3.. // #include<iostream> using std::cout; using std::endl; using std::cin; int main() { int N; int startValue=1; int res=1; cin>>N; while(N>startValue) { startValue += res*6; res++; } cout<<res<<endl; return 0; }
[ "abc3176@nate.com" ]
abc3176@nate.com
1ab8431b665fb21edb4324a9093c69c7049ece3d
8edde9d2e5cea812b4b3db859d2202d0a65cb800
/Engine/Graphics/GrUTCompress.cpp
1ead775b05360f91d775fa9a83c1a9a0ed14a5bc
[ "MIT" ]
permissive
shawwn/bootstrap
751cb00175933f91a2e5695d99373fca46a0778e
39742d2a4b7d1ab0444d9129152252dfcfb4d41b
refs/heads/master
2023-04-09T20:41:05.034596
2023-03-28T17:43:50
2023-03-28T17:43:50
130,915,922
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
55,040
cpp
//---------------------------------------------------------- // File: GrUTCompress.cpp // Author: Kevin Bray // Created: 11-17-08 // // Purpose: To provide compression services for the ubertexture // worker thread. // // Copyright © 2004 Bootstrap Studios. All rights reserved. //--------------------------------...
[ "shawnpresser@gmail.com" ]
shawnpresser@gmail.com
6f402149560789ca4042cdf028cc5e744cd0c7ad
512f6474f03964da335a32b7a6834ce1bbf4b651
/Player.cpp
0881b6ac9452bd9603911c871b20dd0d9207f7eb
[]
no_license
Eliaslb/Zelda
c797b1537f08ae39ae66f062012cfd1100b915a2
1a739871c670f6bf39a55233b11fd78fd49d7fb5
refs/heads/master
2021-01-20T11:01:05.316666
2017-08-28T16:30:34
2017-08-28T16:30:34
101,663,985
0
0
null
null
null
null
UTF-8
C++
false
false
3,220
cpp
#include "Player.h" Player::Player(Arduboy2 &arduboy, Animation2 &PlayerLEFTanim1, Animation2 &PlayerRIGHTanim1, Animation2 &PlayerUPanim1, Animation2 &PlayerDOWNanim1) { this->ardu = &arduboy; this->PlayerLEFTanim = &PlayerLEFTanim1; this->PlayerRIGHTanim = &PlayerRIGHTanim1; this->PlayerUPanim =...
[ "eliaslb584@gmail.com" ]
eliaslb584@gmail.com
bac5520dcbb84a30a8178f39e66441b4668bc6be
599aa4ba4755d6021d1329ea6495b0d460af7606
/Platforms/hackerEarth/monthlyEasy/mtd.cpp
f860fbde58d4643896acea5d17afccf07ca079a4
[]
no_license
manosriram/Algorithms
96109c86bb38a0bad43f6d6c465b224051145123
894a37d420aa65fab1e45bcef8d9f1ef262f4aaa
refs/heads/master
2022-12-21T21:32:53.005160
2020-09-24T15:50:58
2020-09-24T15:50:58
159,975,079
7
3
null
null
null
null
UTF-8
C++
false
false
658
cpp
#include <iostream> using namespace std; void removeE(int g, int arr[],int n) { for (int t=n;t>=0;t--) { if (arr[t] == g) { for (int h=t;h<n-t;h++) { arr[h] = arr[h+1]; } } } } int main() { int n,a,b,arr[10000]; int i,j,t; int count=1; int sum1=0; cin ...
[ "mano.sriram0@gmail.com" ]
mano.sriram0@gmail.com
1f7b72cab0a0bb8e47da77df247bdc6b6b59a3fa
abdb28b3a907236ee75cdd8a8a49c4a8280c3c33
/FinalProject/StockAccount.cpp
239278fe72bd6dabc02f8dd53cc582bfa514b14f
[]
no_license
Aaron723/503Assignments-new-
81d92db8dacf289d25ce7e8ee904e502a07cf8ae
1788626c0d8d49d8e6ee47ed78f33f5f213081d1
refs/heads/master
2020-04-01T01:54:29.191928
2018-12-17T22:41:48
2018-12-17T22:41:48
152,757,388
0
0
null
null
null
null
UTF-8
C++
false
false
9,034
cpp
// // Created by Zi Wan on 12/9/18. // #include "StockAccount.h" void StockAccount::setCASH_BALANCE(double stockBalance) { CASH_BALANCE=stockBalance; } StockAccount::StockAccount(){ readPortfolio();//every time construct stock account, we need portfolio information } StockAccount::~StockAccount() {} void Sto...
[ "w745207699@gmail.com" ]
w745207699@gmail.com
67df2629c6da09829d66ee120c50e9c896a84471
0f3d13bd7d68efbed8c7db1abcac57f8bd797458
/HEPfit/examples-src/LibMode_header/libmode_header.cpp
7a7dcee4c80eac0d32f702ec089e7dbbbdcaa00a
[ "DOC" ]
permissive
talismanbrandi/Belle_1809.03290
5b48b1fee290b12159326e04f72640898663540c
b6608353f9c685a95f9a9d2fe2677c3d128baf8a
refs/heads/master
2020-05-27T05:06:30.404976
2019-05-28T17:02:13
2019-05-28T17:02:13
188,494,216
0
0
null
null
null
null
UTF-8
C++
false
false
3,137
cpp
/* * Copyright (C) 2014 HEPfit Collaboration * * * For the licensing terms see doc/COPYING. */ /** * @example libmode_header.cpp * This is an example of how to compute observables from the input parameters * defined in the file InputParameters.h. * */ #include <iostream> #include <HEPfit.h> #include <Input...
[ "apaul2@alumni.nd.edu" ]
apaul2@alumni.nd.edu
7883b573bdc66f6999ae56ae24991fc9f42610e2
b8be015984622307394dc919ab711417da4fa911
/Length of Last Word.h
cd54d6144712901fa709405f2a7c4159a8594ed3
[]
no_license
boyxgc/Leetcode
de41651416e5aec30666f67653ab7736e0edc2aa
bd09a470628f7112198b70d52d63b30409cac12f
refs/heads/master
2021-01-22T06:37:00.824562
2014-12-05T03:16:11
2014-12-05T03:16:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
481
h
class Solution { public: int lengthOfLastWord(const char *s) { int size = 0; const char *s1 = s; while(*(s1++)) { size++; } int lastword = size-1; while(lastword >= 0 && s[lastword] == ' ') lastword--; int lastwordsize = 0; ...
[ "boyxgc@gmail.com" ]
boyxgc@gmail.com
7d24c20c45672137603f10ae304b6d51202d5e12
25f8cc14652d2d4a799fb4e946d79b2672d24662
/TestCases/main.cpp
0441bab5def7c96415d4610406c42e802cfe7941
[]
no_license
da-x-ace/openSSL-compatible-RSA-Engine
2c313fb693d23c4bab44cf399c0c0c62ab30d70d
899676109e699b996ed65fa73ef51ab94084f2c1
refs/heads/master
2016-08-03T14:43:15.560671
2013-01-31T02:44:14
2013-01-31T02:44:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
70,661
cpp
#include <iostream> #include <stdio.h> #include <gmp.h> #include <string.h> #include <vector> #include <fstream> #include <unistd.h> #include <stdlib.h> #include <fcntl.h> #include <sys/types.h> #include <openssl/evp.h> #include <sys/syscall.h> #include <openssl/sha.h> #define MODULUSSIZE 1024 //No. of bits in n #d...
[ "prankur.07@gmail.com" ]
prankur.07@gmail.com
dd65570b9ce936d8b256816347695d10cda4f77f
8b63f0deb717cbd11a13f418d70f18a612c99d56
/Metos_Numericos/6-Runge-Kutte.cpp
3e63cc4ee1ded8b4cbe6bd79f5ffe8ff2355f4d9
[]
no_license
Israel-Eskape/C-
ebb5aeacbb6f9603b6b1ec79f51c81c033188a0a
58ac60d42d57634974bc8d73beed655d7683fb47
refs/heads/master
2022-04-19T23:40:40.912906
2020-04-21T01:46:09
2020-04-21T01:46:09
257,428,376
0
0
null
null
null
null
UTF-8
C++
false
false
549
cpp
#include <stdio.h> #include <stdlib.h> #include <math.h> double yi(double y,double k1,double k2,double h){ return y+(0.5*k1+0.5*k2)*h; } double fun(double x,double y){ return x-y; } int main(){ double y,x,h,k1,k2,r; int yf=10; y=2; h=0.2; x=0; for(int i=0;i<yf/...
[ "isra.ixoye@gmail.com" ]
isra.ixoye@gmail.com
15b771928b361c5b13dc56109c65a3bc6d15ef4e
5885fd1418db54cc4b699c809cd44e625f7e23fc
/codeforces/1167/d.cpp
98262d5a7737484a17355b2854185cb07d3650cb
[]
no_license
ehnryx/acm
c5f294a2e287a6d7003c61ee134696b2a11e9f3b
c706120236a3e55ba2aea10fb5c3daa5c1055118
refs/heads/master
2023-08-31T13:19:49.707328
2023-08-29T01:49:32
2023-08-29T01:49:32
131,941,068
2
0
null
null
null
null
UTF-8
C++
false
false
1,651
cpp
#include <bits/stdc++.h> using namespace std; #define _USE_MATH_DEFINES #define For(i,n) for (int i=0; i<n; i++) #define FOR(i,a,b) for (int i=a; i<=b; i++) #define Down(i,n) for (int i=n-1; i>=0; i--) #define DOWN(i,a,b) for (int i=b; i>=a; i--) typedef long long ll; typedef long double ld; typedef pair<int,int> pii...
[ "henryxia9999@gmail.com" ]
henryxia9999@gmail.com
b5d4c2a972249ffed244f9592d42a62a2264ab8c
a565dc8a731c4166548d3e3bf8156c149d793162
/PLATFORM/TI_EVM_3530/SRC/DRIVERS/PM/DLL/pmrelation.cpp
689b19fed64d53a6d09859b9c68a3571d70956ce
[]
no_license
radtek/MTI_WINCE317_BSP
eaaf3147d3de9a731a011b61f30d938dc48be5b5
32ea5df0f2918036f4b53a4b3aabecb113213cc6
refs/heads/master
2021-12-08T13:09:24.823090
2016-03-17T15:27:44
2016-03-17T15:30:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,324
cpp
// // Copyright (c) Microsoft Corporation. All rights reserved. // // // Use of this sample source code is subject to the terms of the Microsoft // license agreement under which you licensed this sample source code. If // you did not accept the terms of the license agreement, you are not // authorized to use this samp...
[ "ruslan.sirota@micronet-inc.com" ]
ruslan.sirota@micronet-inc.com
2ce6f67ba7f336772b326ad9853252225a43a99a
5bb7cf6f6f38e8a96ef5d522d26cf78c7c097c41
/src/engine/server/library/serverGame/src/shared/command/CommandQueue.cpp
d581b8aeb5090b282605f42ba1df8338eab51244
[]
no_license
hackerlank/SWG_Client_Next_Main
1c88015af11bd42c662a7d7c4fe0807924f4077a
d737257b8fc28f7ad4d8d02113e7662682187194
refs/heads/master
2021-01-12T06:25:56.627527
2016-06-01T19:32:59
2016-06-01T19:32:59
77,359,203
6
4
null
2016-12-26T05:09:07
2016-12-26T05:09:06
null
UTF-8
C++
false
false
54,330
cpp
// ====================================================================== // // CommandQueue.cpp // // Copyright 2002 Sony Online Entertainment // // ====================================================================== #include "serverGame/FirstServerGame.h" #include "serverGame/CommandQueue.h" #include "UnicodeUti...
[ "lightlordmh@hotmail.com" ]
lightlordmh@hotmail.com
daba678609848f35e837db30825e75b51624993c
c05238c76e2d1dff1bca000c1893d49fef58c963
/base/component/exception.cpp
0856c004ba9022a43711920a6ff7109c1978ae79
[]
no_license
firejh/server
949d371223abbd6890e7b4171a55417fbac7bb23
3a5beaf0890db6975e24eebda2fb9029d7ef61f6
refs/heads/master
2021-06-18T04:54:44.251910
2017-07-06T06:04:43
2017-07-06T06:04:43
95,762,205
1
0
null
null
null
null
UTF-8
C++
false
false
1,289
cpp
#include "exception.h" #include <iostream> #include <sstream> #include <string.h> #include <stdlib.h> namespace base{ namespace component{ ExceptionBase::ExceptionBase(const std::string& msg, const std::string& file, const std::string& func, ...
[ "centos@localhost.localdomain" ]
centos@localhost.localdomain
8421bd189ced236256f3be76fdc339ae7bdbfc86
74af32d04639d5c442f0e94b425beb68a2544b3c
/LeetCode/Normal/1400-1499/1431.cpp
228c14d475eea3e1b864489ef4375205c5454dc0
[]
no_license
dlvguo/NoobOJCollection
4e4bd570aa2744dfaa2924bacc34467a9eae8c9d
596f6c578d18c7beebdb00fa3ce6d6d329647360
refs/heads/master
2023-05-01T07:42:33.479091
2023-04-20T11:09:15
2023-04-20T11:09:15
181,868,933
8
0
null
null
null
null
UTF-8
C++
false
false
431
cpp
#include <bits/stdc++.h> using namespace std; class Solution { public: vector<bool> kidsWithCandies(vector<int> &candies, int extraCandies) { int n = candies.size(); int maxCandies = *max_element(candies.begin(), candies.end()); vector<bool> ret; for (int i = 0; i < n; ++i) ...
[ "dlvguo@qq.com" ]
dlvguo@qq.com
c6936387cf0bd8b26139ea46d938f1643fbf610a
34e11b37fada3d5290509b50d1f9c312225f613b
/InsertionSort.cpp
7d82977bfd96056b99248dd78d004f8d2b187551
[]
no_license
MiladEsp/cpp-algorithms
282ee498829ac0f048874f729a52aaaa16d9f6ec
f20ee6669d95b8ba3f87eeaa35c6fee7d39e985b
refs/heads/master
2022-12-25T12:18:55.639870
2020-10-05T02:05:56
2020-10-05T02:05:56
295,762,044
0
0
null
null
null
null
UTF-8
C++
false
false
1,058
cpp
#include <iostream> #include <vector> template <typename T> void insertionSort(std::vector<T> &vec, bool ascending) { int i, j; T key; for (j = 1; j < vec.size(); j++) { key = vec[j]; i = j - 1; if (ascending) { while (i >= 0 && vec[i] > key) { ...
[ "32962296+MiladEsp@users.noreply.github.com" ]
32962296+MiladEsp@users.noreply.github.com
e806a2fa13a3b535b0b1363fc49aa2bf0d7de57f
16a022f0ff5c3dbe6e4e1009014e452c4af62e74
/src/qt/mintingview.cpp
9a227e8565e14d4cdc0edf4ff2b53823c3696911
[ "MIT" ]
permissive
likecoin-script/novacoin
bc51b2d34cb224463f688402a7133a221c07236a
3ee4915dfcd6f53516c9d649063c69ff1d61ca2e
refs/heads/master
2021-01-17T11:42:00.846171
2014-11-29T23:47:31
2014-11-29T23:47:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,957
cpp
#include "mintingview.h" #include "mintingfilterproxy.h" #include "transactionrecord.h" #include "mintingtablemodel.h" #include "walletmodel.h" #include "guiconstants.h" #include "guiutil.h" #include "csvmodelwriter.h" #include <QHBoxLayout> #include <QHeaderView> #include <QVBoxLayout> #include <QTableView> #include...
[ "fsb4000@yandex.ru" ]
fsb4000@yandex.ru
769f486f9eaea63e238ccf9611d4d47453dd6995
44b2b74338fd359e6535b216319799a1af2ec83c
/communect/searchuser.cpp
2ecafed1eb302d7b447f980bd778bd8a4fbf6939
[]
no_license
nozberkaryaindonesia/public
b0cb38f125012d6e931d46266d480729d422705e
528104029b7f8ebe5734ae6cc4374b5b84d6ef62
refs/heads/master
2022-06-05T16:02:33.100468
2014-04-07T06:27:34
2014-04-07T06:27:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
220
cpp
/*#include "searchuser.h" #include "ui_searchuser.h" searchuser::searchuser(QWidget *parent) : QDialog(parent), ui(new Ui::searchuser) { ui->setupUi(this); } searchuser::~searchuser() { delete ui; } */
[ "festinsalazarsison@gmail.com" ]
festinsalazarsison@gmail.com
cfcdaf92ae1a9e6512a390c6755aed5288ccb417
2ca36f1406d6e6acad6e4f3663d1a1da4fe1ba25
/main/chase_value.h
60b4b1d38c7975b218a78574d9d02e49925e8410
[]
no_license
je-pu-pu/hand
ce24eacdfaa551a85ff2e2ad7e98b82b62d29541
bdbc33d5e4912972e0af8ab3cb529be06c9cfb88
refs/heads/master
2020-03-11T11:30:12.162397
2018-05-06T15:48:30
2018-05-06T15:48:30
129,971,200
1
0
null
null
null
null
UTF-8
C++
false
false
1,123
h
#ifndef COMMON_CHASE_VALUE_H #define COMMON_CHASE_VALUE_H #include "math.h" namespace common { template< typename Type > class chase_value { private: Type value_; Type target_value_; Type speed_; public: chase_value( Type value, Type target_value, Type speed ) : value_( value ) , target_v...
[ "je@je-pu-pu.jp" ]
je@je-pu-pu.jp
9458a17564ceb99412ab938caf4f18fe654636ef
b367fe5f0c2c50846b002b59472c50453e1629bc
/xbox_leak_may_2020/xbox trunk/xbox/private/xdktools/Producer/StyleDesigner/TabPatternPattern.cpp
e032a8bb3ada599c58ae1105cfff41338c332049
[]
no_license
sgzwiz/xbox_leak_may_2020
11b441502a659c8da8a1aa199f89f6236dd59325
fd00b4b3b2abb1ea6ef9ac64b755419741a3af00
refs/heads/master
2022-12-23T16:14:54.706755
2020-09-27T18:24:48
2020-09-27T18:24:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
32,271
cpp
// TabPatternPattern.cpp : implementation file // #include "stdafx.h" #include "StyleDesignerDLL.h" #include "Style.h" #include "Pattern.h" #include "PatternLengthDlg.h" #include "TimeSignatureDlg.h" #include "RhythmDlg.h" #include "TabPatternPattern.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FI...
[ "benjamin.barratt@icloud.com" ]
benjamin.barratt@icloud.com
b31b67909a500246f4c3e972b4947bf2aea749ff
961f6147855cb608eefd2ccb7927e65311133efa
/library/binsaver/ut/binsaver_ut.cpp
20e4b45044a65ae5fd4efc22db00fcd35b755f8a
[ "Apache-2.0" ]
permissive
kyper999/catboost_yandex
55a79890be28d46748cb4f55dd7a8ad24ab7b354
91c41df3d4997dbab57fc1b8a990017270da47c6
refs/heads/master
2022-10-31T11:21:22.438222
2017-07-18T10:25:29
2017-07-18T10:25:29
97,590,200
0
1
NOASSERTION
2022-10-23T09:35:09
2017-07-18T11:27:38
C
UTF-8
C++
false
false
5,563
cpp
#include <library/binsaver/bin_saver.h> #include <library/binsaver/util_stream_io.h> #include <library/unittest/registar.h> #include <util/stream/buffer.h> #include <util/generic/map.h> struct TBinarySerializable { ui32 Data = 0; }; struct TNonBinarySerializable { ui32 Data = 0; TString StrData; }; stru...
[ "exprmntr@pepe.search.yandex.net" ]
exprmntr@pepe.search.yandex.net
3f0b05fa48c45733ac1251a4a7b2c9c5011829ff
470f1ea0c29e3c2b3e039dd390ff308e2a3d64b6
/homework/points2.cpp
92057a46218063fb5f148fb77bbbc7201dec0e77
[]
no_license
HOSHICHEN7267/1092CP2
655f81efd9281eb522d1c33f4168c855593a3b8c
c8cae852279269949141ba16ac714656ed5c24ac
refs/heads/master
2023-06-07T18:54:29.435412
2021-06-22T06:22:42
2021-06-22T06:22:42
344,451,013
0
0
null
null
null
null
UTF-8
C++
false
false
887
cpp
#include <iostream> #include <algorithm> #define SIZE 10000 using namespace std; int main(){ int num = 0; int ans = 0; float slope[SIZE] = {}; int points[SIZE][2] = {}; cin >> num; for(int i = 0 ; i < num ; ++i){ cin >> points[i][0] >> points[i][1]; } for(int i = 0 ; i < nu...
[ "antonychen5ds2@gmail.com" ]
antonychen5ds2@gmail.com
58493d8bed5ecc0ae128aa4b5b0a1e1dec31af9b
4da66ea2be83b62a46d77bf53f690b5146ac996d
/modules/assimp/assimp/code/CreateAnimMesh.cpp
1a052849bb705597fcfab64c71d2d4430556b78a
[ "BSD-3-Clause", "Zlib" ]
permissive
blitz-research/monkey2
620855b08b6f41b40ff328da71d2e0d05d943855
3f6be81d73388b800a39ee53acaa7f4a0c6a9f42
refs/heads/develop
2021-04-09T17:13:34.240441
2020-06-28T04:26:30
2020-06-28T04:26:30
53,753,109
146
76
Zlib
2019-09-07T21:28:05
2016-03-12T20:59:51
Monkey
UTF-8
C++
false
false
3,731
cpp
/* --------------------------------------------------------------------------- Open Asset Import Library (assimp) --------------------------------------------------------------------------- Copyright (C) 2016 The Qt Company Ltd. Copyright (c) 2006-2012, assimp team All rights reserved. Redistribution and use of this...
[ "blitzmunter@gmail.com" ]
blitzmunter@gmail.com
3e3f20f3a22598e0dd694d6fdc5fa0408a2c0552
f2ae99a0fa0e73188f68e0b6d9d6e0c30a24367d
/기초알고리즘/2283_boj(동전1).cpp
05d59ec23688faf139e06a20bf8e15687ebe9c91
[]
no_license
kiseop91/Algorithm
69181d57acfe7a3e7e4696eb215c693b53ef5bec
4a62e85cce7db04c17c936bae2e885e8c237bc66
refs/heads/master
2020-04-10T03:13:17.389509
2019-07-18T08:36:21
2019-07-18T08:36:21
160,764,342
2
0
null
null
null
null
UTF-8
C++
false
false
350
cpp
#include <cstdio> int main() { int n, k; int coins[101]; int d[10001] = { 0 }; scanf("%d %d", &n, &k); for (int i = 1; i <= n; i++) { scanf("%d", &coins[i]); } d[0] = 1; for (int i = 1; i <= n; i++) { for (int j = 1; j <= k; j++) { if (j >= coins[i]) { d[j] += d[j - coins[i]]; } } } print...
[ "kiseop91@naver.com" ]
kiseop91@naver.com
455514f11af827e6fc36ff4b1e28c6611fd9521c
a3b3b096fc709a4519a8fc143ad864f936e72d06
/examples/sqlite3_webquery/sqlite3_webquery.ino
7180e291061be26964724400f4227da4214601e3
[ "Apache-2.0" ]
permissive
minimum-necessary-change/esp_arduino_sqlite3_lib
baaf9712d6a6904abb61abf08c692f50d614226d
2b94d624fdc43fe49e868a2d0932c88d914b9553
refs/heads/master
2020-04-25T10:37:35.241016
2019-06-24T08:11:08
2019-06-24T08:11:08
172,715,844
0
0
Apache-2.0
2019-06-24T08:11:10
2019-02-26T13:22:43
C
UTF-8
C++
false
false
8,523
ino
/* This example shows how to retrieve data from Sqlite3 databases from SD Card through the Web Server and display in the form of HTML page. It also demonstrates query filtering by parameter passing and chunked encoding. Before running please copy following files to SD Card: examples/sqlite3_small_d...
[ "arun@siara.cc" ]
arun@siara.cc
96d2a3d2f6c921b8d477df7390e7338e9a5deda9
106023d31ce8cd8db977b8f624a2c3fa1a2e0b25
/src/rpc/mining.cpp
ff1d9afb999f63020345909a45f9a1c082e06b1b
[ "MIT" ]
permissive
aissty/rockcoin
06345dc0d8b9056740692601300261a605345e71
75e15231d3b8cbf7532741f26f6f0e5a13c223e7
refs/heads/master
2021-01-25T09:53:59.781189
2018-03-04T19:25:28
2018-03-04T19:25:28
123,329,520
0
0
null
null
null
null
UTF-8
C++
false
false
42,932
cpp
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2016 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 "amount.h" #include "chain.h" #include "chainparams.h" #i...
[ "aissty@qq.com" ]
aissty@qq.com
47c52f62c32dabd6b2804693f66fdfdd707b6fc7
c6881dbb2cb0aea8ac39c809aa5d339c9e15ac09
/Blockchain/nameclaim.cpp
37a2ae949f27d126a29dd3d7b55cc86da074e52c
[]
no_license
HungMingWu/blockchain-demo
d62afbe6caf41f07b7896f312fd9a2a7e27280c7
ebe6e079606fe2fe7bf03783d66300df7a94d5be
refs/heads/master
2020-03-21T22:33:38.664567
2018-10-01T10:12:40
2018-10-01T10:12:40
139,134,108
0
0
null
null
null
null
UTF-8
C++
false
false
5,046
cpp
#include "nameclaim.h" #include "hash.h" #include "util.h" #include "Log.h" #include <string> using namespace std; std::vector<unsigned char> uint32_t_to_vch(uint32_t n) { std::vector<unsigned char> vchN; vchN.resize(4); vchN[0] = n >> 24; vchN[1] = n >> 16; vchN[2] = n >> 8; vchN[3] = n; ...
[ "u9089000@gmail.com" ]
u9089000@gmail.com
5b0b66aed7ff6b3f5191221a850fbc4d11ee6035
5474747cb6ec8f0fe72b4d6320ff51e04e35946e
/training/Source.cpp
be3ef3091d6f42d6cbb8bbc798b94071b279d9f6
[]
no_license
SergeyShopik/Cpp_Warehouse_Managament
50dd84bfe1621f7e5001304afa50a3517693c0a3
bf9d15c55e00854df9283b2a57aca3c2676dcc11
refs/heads/master
2023-01-27T22:56:58.547499
2020-12-11T19:36:42
2020-12-11T19:36:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,938
cpp
#include<iostream> #include<cctype> #include<cstring> #include<cstdlib> const int SIZE = 100; //warehouse managament struct inv_type { char item[40]; double cost, retail; int on_hand, lead_time; } invtry[SIZE]; void init_list(); int menu(); void input(int); void enter(); void update(); void display(); void find(); v...
[ "sergey.shopik101@gmail.com" ]
sergey.shopik101@gmail.com
d6a6819b69fe3a6bb68a0208cf37c4afd9fb06a4
eef9cdafb7476427d194374cc11a54a068c30325
/overallControl.cpp
61bd3e32b26c32e93d61056c0605554b2396ebdb
[]
no_license
geetika016/FindMeAPet
3988ecbb87fa0c92c2424f8b628d741cf99810b6
43a7dcceb1c01a170d3101c30017a541df89b02b
refs/heads/master
2020-06-20T09:43:33.569960
2019-07-15T22:44:58
2019-07-15T22:44:58
197,078,766
0
0
null
null
null
null
UTF-8
C++
false
false
40,316
cpp
#include "overallControl.h" OverAllControl::OverAllControl() { proxy = new Proxy; } OverAllControl::~OverAllControl() { delete proxy; } void OverAllControl::launch() { dbControl = new DatabaseControl; if (initializeDB()) proxy->displayRequest(); } void OverAllControl::initializeHelper(QHash<...
[ "geetika.shrma16@gmail.com" ]
geetika.shrma16@gmail.com
7b742403a29b8b88c41698af9d7532552888f0fd
880b21dd63bd95f69978ac7fc18be59f691c8935
/src/wallet/rpcnames.cpp
67c3839101e31f9417ead0cd79a4ec9ec2b23a4d
[ "MIT" ]
permissive
sovr610/xaya
c88f60bb72138180d2df6c630a52c44ccc37f8a6
a1ba991b476eaa49397e2d054be3241db3727831
refs/heads/master
2022-10-01T17:45:38.814386
2020-06-05T11:53:03
2020-06-08T13:55:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
22,394
cpp
// Copyright (c) 2014-2020 Daniel Kraft // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <base58.h> #include <coins.h> #include <consensus/validation.h> #include <init.h> #include <interfaces/chain.h> #include <key_i...
[ "d@domob.eu" ]
d@domob.eu
8f56f1db67726fe16f815bb7dcd50cad43c33e15
db6d5226ad3d8d213e06d59d3998a4ce2e9030bd
/src/addrman.cpp
b27f403849e3d5445adfbe9c30285bc66f89d3b7
[ "MIT" ]
permissive
Schilling99/SchillingCoin
9536c00d1bd8eef55482a398f3b5f12429938cb2
c9d7c4f70341e7ab552131e7e4a018197bc8558a
refs/heads/master
2022-12-26T14:58:40.917535
2020-10-08T12:33:38
2020-10-08T12:33:38
302,329,522
1
2
null
null
null
null
UTF-8
C++
false
false
16,094
cpp
// Copyright (c) 2012 Pieter Wuille // Copyright (c) 2012-2014 The Bitcoin developers // Copyright (c) 2017-2019 The PIVX developers // Copyright (c) 2018-2020 The SchillingCoin developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-licen...
[ "59433840+Schilling99@users.noreply.github.com" ]
59433840+Schilling99@users.noreply.github.com
9af94c742012d2c814f28c61c6fc3989cad7e2ed
c4026d5ff8cdb876ddb9111df22ce0e4ad3058b2
/codigosC++/testEpp/testEpp/testEpp.cpp
2a590c14fdd309941ce2aaaf52af096577ad0d7b
[]
no_license
NoelGaspar/WacBoard
c8335c2807c16a1d31216b6be83d69f78b23f088
810938cb2543a3f551d024d1c6680947ad6d0f5f
refs/heads/master
2020-04-13T13:18:38.772225
2019-01-03T03:28:56
2019-01-03T03:28:56
163,226,293
0
1
null
null
null
null
ISO-8859-3
C++
false
false
11,339
cpp
// testEpp.cpp : Defines the entry point for the console application. #include "stdafx.h" #include <windows.h> #include <stdio.h> #include <iostream> #include <fstream> #include <stdlib.h> #include <string.h> #include <time.h> #include "dpcdecl.h" #include "depp.h" #include "dmgr.h" #include "dpcutil.h" #include "dpcde...
[ "waaraya@uc.cl" ]
waaraya@uc.cl
f64df2b94f4b1b2a86840084189f9565e180cabf
c81133690291377794e35afc4dcf2763a4b2a12d
/src/proxy_lib.cpp
ce9cdf8f24376dfec86d1575f544a692d7a4f822
[]
no_license
T-Maxxx/iw3linker_vs
3666c4646b4ca4e0c8065c1a902350eab4ae97ce
4fa22fa00bcd4601bf5641199cc336571879a7ef
refs/heads/master
2021-01-24T04:43:45.438553
2020-06-12T13:24:36
2020-06-12T13:26:43
122,948,449
1
3
null
null
null
null
UTF-8
C++
false
false
2,304
cpp
#include "proxy_lib.hpp" #include <cstdio> template<class FP> FP GetLibFunction(HMODULE hLib_, const char* FunctionName_) { return reinterpret_cast<FP>(GetProcAddress(hLib_, FunctionName_)); } CProxyLib::CProxyLib() { char path[MAX_PATH] = { '\0' }; char sysPath[MAX_PATH - 13] = { '\0' }; GetSystem...
[ "tmax.tver.95@gmail.com" ]
tmax.tver.95@gmail.com
a49d62dc597ce3adc898ffcdd354b5273b356e84
b77b470762df293be67877b484bb53b9d87b346a
/game/editor/EditModeSceneImpl.h
27efa2967507ce9874804a364d0d14bfd3cdb297
[ "BSD-3-Clause" ]
permissive
Sheph/af3d
9b8b8ea41f4e439623116d70d14ce5f1ee1fae25
4697fbc5f9a5cfb5d54b06738de9dc44b9f7755f
refs/heads/master
2023-08-28T16:41:43.989585
2021-09-11T19:09:45
2021-09-11T19:09:45
238,231,399
1
1
null
null
null
null
UTF-8
C++
false
false
2,086
h
/* * Copyright (c) 2020, Stanislav Vorobiov * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this * list of ...
[ "sheffmail@mail.ru" ]
sheffmail@mail.ru
b189572e70472c26b01c47daea76cd9caab28501
6beb9371bf20461c218a534ea9aabf73727456c0
/WS06/in-lab/Car.cpp
826805572ee822c3bfe272d4f466e3698c5ef00a
[]
no_license
minhqto/oopsiestreefourfive
aef9398a45eabfc62b8a8bf8ff8d5c2d21e44ea5
cb8a5a745dfd50477316337d99522bf54ae07dfe
refs/heads/master
2022-03-15T01:14:25.639532
2020-01-02T04:30:42
2020-01-02T04:30:42
208,258,444
0
0
null
null
null
null
UTF-8
C++
false
false
1,917
cpp
// Name: Minh To // Seneca Student ID: 125526186 // Seneca email: qto@myseneca.ca // Date of completion: 31 Oct 19 // // I confirm that the content of this file is created by me, // with the exception of the parts provided to me by my professor. #include "Car.h" namespace sdds { Car::Car() { maker =...
[ "minhqto3@gmail.com" ]
minhqto3@gmail.com
c72ab318a1314d7a1d024e8dc7aaa0ca85bdac53
98e40260cddd889669396c8328805268346684e7
/src/mineField.h
c4e6d9275062ba6eac3db4b5f2756858bc5c04ca
[]
no_license
FightingSu/mine_sweeper
4e7f891bba9cdbe70deaf559df3a11f1ea3fa623
cc7a538b8870dbdf1bcba0f2a32c5de038c149ec
refs/heads/main
2023-04-02T12:22:33.118838
2021-04-07T07:36:07
2021-04-07T07:36:07
308,811,309
1
0
null
null
null
null
UTF-8
C++
false
false
1,405
h
#ifndef _MINE_FIELD_H_ #define _MINE_FIELD_H_ #include "blockWidget.h" #include <cstdlib> #include <ctime> #include <QWidget> #include <QVector> #include <QMessageBox> #include <QMouseEvent> #include <QDebug> class mineField : public QWidget { Q_OBJECT public: mineField(QWidget* parent = nullptr, int _width =...
[ "ww951127.ok@hotmail.com" ]
ww951127.ok@hotmail.com
e6038e7dcca49ac7daaa4389f6ba0be8e791b711
f7ff42ef0bb9b9b1223bd7851e31070044a977b2
/temp/find_address.cpp
426f38b9902ce64ff7cfcbee084a9ece6a40c1c0
[]
no_license
yvesmartindestaillades/RRL_pouch_motors_control
42250c9672c6cf0a678e2535897f58b453a9fa95
42b32829e8dc36356c31acb6a1a79056a3cf7bba
refs/heads/master
2023-04-02T17:31:28.724360
2021-04-17T18:09:58
2021-04-17T18:09:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,254
cpp
/**************************************************************************/ /*! @file read_simple_angle.ino @author SOSAndroid (E. Ha.) @license BSD (see license.txt) read a simple angle from AS5048B over I2C bus @section HISTORY v1.0 - First release */ /********************************...
[ "yves.mrtn98@gmail.com" ]
yves.mrtn98@gmail.com
d68d5dc0b28f35dd3d671c078c41659f6288d908
3e80a79b455d2c7ab6e5e39d97ec813ff1e8512f
/EditorTextoSln/EditorCPP2015/stdafx.cpp
f592706449921a1cc4ea812ef5a16e620804850e
[ "MIT" ]
permissive
CampioniMan/EditorCPP
6656691d69888944e316de0423e8c228330c2649
41f237a42af8ac5bc89027424c2dd8d8d8536e6f
refs/heads/master
2021-01-18T18:10:26.158644
2016-11-18T20:36:32
2016-11-18T20:36:32
69,965,394
0
0
null
null
null
null
UTF-8
C++
false
false
292
cpp
// stdafx.cpp : source file that includes just the standard includes // EditorCPP2015.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
[ "campioni.daniel@gmail.com" ]
campioni.daniel@gmail.com
f2e0a2924468f1e593445878edd0e3318c7fb77e
5752ccaf99fc23ad5d22e8aa2e7d38b0e06c1ad4
/test/timer.hpp
23331a6cbd8b5b6fc5c351f2ca9cb8327a384871
[]
no_license
EoghanMcGinty/xcelerit_test
1c43db44db5773f8e7acee625b72a8fe1fbc4316
98ec76850c615e523497fd45a12436670f89d0cc
refs/heads/master
2020-08-09T02:15:46.373115
2019-10-09T17:07:13
2019-10-09T17:07:13
213,975,512
0
0
null
null
null
null
UTF-8
C++
false
false
622
hpp
#include <iostream> #include <chrono> class Timer { public: Timer() { startTime = std::chrono::high_resolution_clock::now(); } long int stop() { auto endTime = std::chrono::high_resolution_clock::now(); auto start = std::chrono::time_point_cast<std::chrono::microseconds>(startTime...
[ "eoghanm19@gmail.com" ]
eoghanm19@gmail.com
f7a68585d3ca11e6ff92fe2ea4c38c8c7e0e395d
02099155d15b3d65330abc7276b13c8deff68e94
/B/B. Petya and Countryside/main.cpp
e2e84479e9c7db2144ca35e695e0c611be158735
[]
no_license
xUser5000/competitive-programming
d7c760fa6db58956e472dd80e24def0358bbb5a8
90337c982dd3663a69f2d19021e692f1edb1b3a5
refs/heads/master
2023-06-26T21:56:02.452867
2021-07-23T22:39:49
2021-07-23T22:39:49
288,557,139
1
0
null
null
null
null
UTF-8
C++
false
false
522
cpp
#include <iostream> using namespace std; int main() { int n; cin >> n; int arr[n]; for (int i = 0; i < n; i++) cin >> arr[i]; int ans = 1; for (int i = 0; i < n; i++) { int d = 1; for (int j = i + 1; j < n; j++) { if (arr[j] <= arr[j - 1]) d++; else break...
[ "abdallahar1974@gmail.com" ]
abdallahar1974@gmail.com
8177a20561454d860f25fe4dce77c068f6bd7237
2d36ac7285664ce798edb27bafa00e0dbc0f25fb
/LSL/liblsl/external/lslboost/date_time/gregorian/greg_month.hpp
e9d3aa485fa1de590c08a9c2d97cf9384e4dc7b5
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
nagarjunvinukonda/Brain-Computer-Interface-for-Bionic-Arm
af1a6241df167e747a7d9426e497f95dda632fda
839cb0dc798d2bf274d3df7c4db0fef62af3770d
refs/heads/master
2023-02-13T12:02:36.692225
2021-01-14T08:32:35
2021-01-14T08:32:35
297,540,583
2
0
null
null
null
null
UTF-8
C++
false
false
3,508
hpp
#ifndef GREG_MONTH_HPP___ #define GREG_MONTH_HPP___ /* Copyright (c) 2002,2003 CrystalClear Software, Inc. * Use, modification and distribution is subject to the * Boost Software License, Version 1.0. (See accompanying * file LICENSE_1_0.txt or http://www.lslboost.org/LICENSE_1_0.txt) * Author: Jeff Garland, Bart...
[ "vinukondanagarjun4@gmail.com" ]
vinukondanagarjun4@gmail.com
f250189da39de20a4448c28e9ec26ac17563d6ba
7121e3df80afdc58fdc10c664c08aee411a78181
/src/chrome/browser/ui/libgtkui/gtk_ui.cc
6bc83d0bfc97104f65da0c1a78ece232bdcc5b10
[ "BSD-3-Clause" ]
permissive
ochrisoyea/AccessControlListsintheDOM
93d0a1f77f7f3af864d4a2942e4590af9065a7d8
9a8796f899592d236628f4d3007337ff5743c32f
refs/heads/master
2020-06-08T14:31:37.838842
2019-06-22T16:17:41
2019-06-22T16:17:41
193,242,663
0
0
null
2019-06-22T14:24:31
2019-06-22T14:24:31
null
UTF-8
C++
false
false
43,883
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 "chrome/browser/ui/libgtkui/gtk_ui.h" #include <dlfcn.h> #include <gdk/gdk.h> #include <math.h> #include <pango/pango.h> #include <cmath> #...
[ "heatherfarrar.ima@gmail.com" ]
heatherfarrar.ima@gmail.com
3ebeedf97df49842ffcfcfedb7331250015f06c8
07a72a30913757756484c60402007ad39154b2f4
/Spider/Worker.cpp
8d00a3dde2098813a7445d44b10b6d05d789e695
[]
no_license
SammyEnigma/ImageSpider
d767275feea58f5d0a8b40f7cbb49ec70d02f341
6bf4e9d8085ec080d9f9bc06fb083a23153bb827
refs/heads/master
2021-07-20T03:26:27.602635
2016-02-20T03:43:56
2016-02-20T03:43:56
223,331,944
0
0
null
2020-08-01T12:57:47
2019-11-22T05:43:19
null
UTF-8
C++
false
false
1,681
cpp
#include "Worker.h" Worker::Worker(QObject *parent) : QObject(parent) { //http://sexy.faceks.com/ //http://www.2xiezhen.com/meinvxiezhen/ startUrl = QUrl("http://sexy.faceks.com/"); // startUrl = QUrl("http://www.2xiezhen.com/meinvxiezhen/"); QString referer = "http://" + startUrl.host(); DataQu...
[ "yuri.young@newdebug.com" ]
yuri.young@newdebug.com
c66afabc1ff3c9d43a80f7f7ed592e835939795e
b3679befe0405fbb04b3b8e331055e1d04704819
/src/cl_sphere.cpp
f09b8ecdadef40277f3980997ffa4947346dbca9
[ "MIT" ]
permissive
gmmoreira/ruby-ffi-opencl
f3d5c1ffe249d437439ab3195bcff48805873d24
48363889d01428a1d9df78690db7b437974a545c
refs/heads/master
2021-01-11T08:24:45.982661
2016-11-03T01:28:57
2016-11-03T01:28:57
72,287,687
1
0
null
null
null
null
UTF-8
C++
false
false
1,028
cpp
#include "cl_sphere.h" #include "cl_platform.hpp" #include "cl_device.hpp" #include <cstring> using std::string; using std::vector; using std::strcpy; const char * string_to_char(string data) { auto c_data = (char *) malloc(sizeof(char) * (data.size() + 1)); strcpy(c_data, data.c_str()); return c_data; } cl_...
[ "guilhermerx7@gmail.com" ]
guilhermerx7@gmail.com
ec27883f3a712e4cc23567b6e8b2d992fd684b8f
becc5bffc7a29491a09780c57e89f5ab8d688299
/Code/src/simcube/simcube_projection-galactic/fits_simimg.cpp
b7e4539fc627ed9602457940fff8480abc09e5dc
[ "Apache-2.0" ]
permissive
VisIVOLab/ViaLacteaVisualAnalytics
6186d282f553e63984bac9f6086ca326d3ac8503
fbd5da6dc28c1f32632a7622193c03a98263903b
refs/heads/master
2023-08-21T19:46:05.667116
2023-06-01T14:30:43
2023-06-01T14:30:43
269,041,293
1
0
Apache-2.0
2023-09-11T08:39:46
2020-06-03T09:09:00
C++
UTF-8
C++
false
false
3,503
cpp
#include "fits_simimg.hpp" #include <fitsio.h> #include <cassert> #include <cstdio> #include <cstring> #include <iostream> #include <map> #include <string> using namespace std; string get_errstatus(int status) { char err_text[32]; // CFITSIO doc: max 30 char error text fits_get_errstatus(status, err_text); ...
[ "giuseppe.tudisco@inaf.it" ]
giuseppe.tudisco@inaf.it
9f86d9166140fef0455357fd0d9e6b87fa56e3fa
6c57b1f26dabd8bb24a41471ced5e0d1ac30735b
/BB/include/BB/Serial/SerialMessage.h
3bcaedf8cff29c8c0a4520c42fcbfebaaeaa4140
[]
no_license
hadzim/bb
555bb50465fbd604c56c755cdee2cce796118322
a6f43a9780753242e5e9f2af804c5233af4a920e
refs/heads/master
2021-01-21T04:54:53.835407
2016-06-06T06:31:55
2016-06-06T06:31:55
17,916,029
0
0
null
null
null
null
UTF-8
C++
false
false
1,219
h
/* * SerialMessage.h * * Created on: 18.5.2014 * Author: JV */ #ifndef SERIALMESSAGE_H_ #define SERIALMESSAGE_H_ #include <vector> #include <string> #include "BB/Sensor/SensorData.h" namespace BB { /* * byte sequence * 0 - start byte * 1 - NodeID * 2 - NodeStatus * 3 - NodeType * 4 - Message...
[ "jan.vana@tbs-biometrics.com" ]
jan.vana@tbs-biometrics.com
4026209bb982fc198cd3f1eda31ea3f3fb757153
5ae308aaa7bb2e60b1ddff28fcaf39567da1b6ae
/LCP/lcp_074_search_a_2D_matrix.cpp
7c4af2d1f617bfa0f15ed800596c4be892f02961
[]
no_license
jiahonglin/LCP
55cde187f98b8a013544f95aea6087df92516fc3
1805972511193dd91103ced834bdd35302481e98
refs/heads/master
2023-08-17T06:59:00.287333
2023-08-16T15:34:14
2023-08-16T15:34:14
189,690,649
2
0
null
null
null
null
UTF-8
C++
false
false
1,468
cpp
class Solution { public: bool searchMatrix(vector<vector<int>>& matrix, int target) { int m = matrix.size(); int n = matrix[0].size(); bool bFind = false; if(m == 1){ for(int j=0;j<n;j++){ if(matrix[0][j] == target){ bFind=true; ...
[ "jiahonglin17@gmail.com" ]
jiahonglin17@gmail.com
37d9f26142043f7e9671c4145c998b08f8aac179
8687a237b885bb7a116410491e48c35d444745b5
/c++/primer_plus_s_pratt/ch_12/pe_2/include/string2.h
befd489d13e2ea2f9251f323c4a68d73227cb3c6
[ "MIT" ]
permissive
dinimar/Projects
150b3d95247c738ca9a5ce6b2ec1ed9cee30b415
7606c23c4e55d6f0c03692b4a1d2bb5b42f10992
refs/heads/master
2021-06-11T20:34:29.081266
2021-05-15T19:22:36
2021-05-15T19:22:36
183,491,754
0
0
MIT
2019-04-25T18:47:39
2019-04-25T18:47:39
null
UTF-8
C++
false
false
1,404
h
// // Created by Dinir Imameev on 11/21/19. // Github: @dinimar // #ifndef STRING2_H_ #define STRING2_H_ #include <iostream> using std::ostream; using std::istream; class String { private: char * str; // pointer to string int len; // length of string static int num_strings; // number of objects stat...
[ "dinir.imameev@gmail.com" ]
dinir.imameev@gmail.com
d16d901662b1158fd7289b98503415a1efa58400
59819ec8eb426ec0cdf4d187c41961b9a35cfe09
/questions_on_functions/dec_to_binary.cpp
6c2c866ef10d08dee7ffd66701d848eba5913f1a
[]
no_license
deep1358/CPP-Programs
46d0a84e2d1790983641303921fec82733cffbd5
f5eb80f0fca195ef40300ea5c13adb896d6ee978
refs/heads/master
2023-08-18T11:08:17.678754
2021-08-26T12:26:26
2021-08-26T12:26:26
373,787,578
0
0
null
null
null
null
UTF-8
C++
false
false
279
cpp
#include <bits/stdc++.h> using namespace std; void dec_to_bin(int n) { int ans = 0; int c = 0; while (n > 0) { int temp = n % 2; ans += pow(10, c) * temp; c++; n /= 2; } cout << ans; } int main() { int n; cin >> n; dec_to_bin(n); return 0; }
[ "deepshah1358@gmail.com" ]
deepshah1358@gmail.com
ffaa53a6d966d9872692c9fc4b814cc96d412bb0
0b34dc130e8296d3d61eedf37452be5de41af1c2
/OpenGl/OpenGL超级宝典完整源码(第五版)/OpenGL超级宝典完整源码(第五版)/Src/Chapter07/TextureArrays/TextureArrays.cpp
6175095d59282c7ccfb534788f26f04a7c793668
[]
no_license
BIbiLion/LS_Wqiakun2017Test
67a77c07a33ea4d5f308492580a403774de99b30
2955f20d8ac63acd8ace2a553f2e062e9ac26e92
refs/heads/master
2021-01-20T14:19:28.468757
2017-09-15T08:04:55
2017-09-15T08:04:55
90,591,454
2
3
null
null
null
null
UTF-8
C++
false
false
9,071
cpp
// TextureArrays.cpp // OpenGL SuperBible // Demonstrates Passing a TextureArray to a shader // Program by Richard S. Wright Jr. #include <GLTools.h> // OpenGL toolkit #include <GLFrustum.h> #include <Stopwatch.h> #ifdef __APPLE__ #include <glut/glut.h> #else #define FREEGLUT_STATIC #include <GL/glut.h> #endif GLShad...
[ "wqiankun89@163.com" ]
wqiankun89@163.com
f8c0f50ebc607cae607e6f1a3040fd48d3d59752
374444870cff54414655655ebfb994717e2907b2
/SemGapI/Week5/1SumOfDigits.cpp
fd030c1a51f3a0582bce931a14092395d7a69fad
[ "BSD-3-Clause" ]
permissive
AnkitApurv/MCA
7d7d35a0c45bfa1337de4f3e55f5bf810fb62c06
e6240fc326a282369e0ca173da28944cf516fbbe
refs/heads/master
2023-03-22T05:56:09.187082
2020-03-23T18:35:32
2020-03-23T18:35:32
166,032,236
1
0
BSD-3-Clause
2021-03-20T03:19:42
2019-01-16T11:54:18
ASP
UTF-8
C++
false
false
807
cpp
/* @name 1SumOfDigits.cpp @desc to find the sum of the digits of a number using recursion. @author Ankit Apurv 180970042 @date 04/01/2019 */ #include <iostream> using namespace std; /* @desc computes sum of digits recursively @args num : integer, number whose digits are to be added sum : integer, variable ...
[ "k.ankit.capricon@gmail.com" ]
k.ankit.capricon@gmail.com
6f024c9ba4a90cc8ccdbaa344501abb857db7eeb
5626349a40a2a0a73cee8d88264ad791fc25791a
/src/aft/aftma/aftma_blockallocator.h
fcbca3b00c68a51f56cce34f7fde6314ca7075ce
[]
no_license
lyell/aegis
ae8600c2b334ad1db3c4005a74a43b4099966701
61952676c1d6eb0823e5ff8a7097cc29bb6308f7
refs/heads/master
2020-12-24T08:55:11.755560
2018-01-06T13:09:01
2018-01-06T13:09:01
26,701,231
1
0
null
null
null
null
UTF-8
C++
false
false
650
h
#ifndef INCLUDED_AEGIS_AFTMA_BLOCKALLOCATOR_H #define INCLUDED_AEGIS_AFTMA_BLOCKALLOCATOR_H #include <aftma_allocator.h> #include <map> namespace aftma { class BlockAllocator : public aftma::Allocator { public: BlockAllocator(); virtual ~BlockAllocator(); virtual void* allocate(size_t size)...
[ "lyell@sophicstudios.com" ]
lyell@sophicstudios.com
ff966d913d5427f17ec9fd7e32dd7d537cdf1ff7
6e57bdc0a6cd18f9f546559875256c4570256c45
/external/pdfium/core/fpdfapi/render/cpdf_imagecacheentry.h
2bede23e628d28b72affbe8c617dbaaf2c083a51
[ "BSD-3-Clause" ]
permissive
dongdong331/test
969d6e945f7f21a5819cd1d5f536d12c552e825c
2ba7bcea4f9d9715cbb1c4e69271f7b185a0786e
refs/heads/master
2023-03-07T06:56:55.210503
2020-12-07T04:15:33
2020-12-07T04:15:33
134,398,935
2
1
null
2022-11-21T07:53:41
2018-05-22T10:26:42
null
UTF-8
C++
false
false
1,984
h
// Copyright 2016 PDFium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com #ifndef CORE_FPDFAPI_RENDER_CPDF_IMAGECACHEENTRY_H_ #define CORE_FPDFAPI_RENDE...
[ "dongdong331@163.com" ]
dongdong331@163.com