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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
5ad01c19a208311fddadc62ec878f62667e36e89 | e12e7c819194c9ffa3b9208851e87cf2772b19be | /parser.cpp | 1f2877496d3667138360ff7f5b308d5318edd4a8 | [
"MIT"
] | permissive | JoyHsiao/POSD_HW7 | d0f089222fec3a14f5b7cd0744bb62aed553ef92 | 10bd09d87c08ff23d4e9eab71192555a73bed33d | refs/heads/master | 2021-05-06T11:54:56.999256 | 2017-12-06T10:21:16 | 2017-12-06T10:21:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,418 | cpp | #include "parser.h"
Parser::Parser(Scanner const& scanner)
: _scanner(scanner), _currentToken(NONE), _exprRoot(nullptr)
{
}
Term* Parser::createTerm()
{
int token = _scanner.nextToken();
_currentToken = token;
if(token == VAR)
{
return new Variable(symtable[_scanner.tokenValue()].first);... | [
"slip1995@gmail.com"
] | slip1995@gmail.com |
11d287f8548888c876ecf392e13f67bab389f4dd | fe60f3bb0720155b009cb551387c38ecc96fdedb | /MenuItem.cpp | 36dfcfe15f6b111ba5d4cdeb1c6288397b0cf995 | [] | no_license | oscarso2000/A6-Menu-Update | 1fc587ca23732fa431beaee09980e4930fea2779 | 9d4fa690fa3ce00c61679842ed8d921b940b533b | refs/heads/master | 2020-08-16T00:46:09.471443 | 2019-10-16T03:27:34 | 2019-10-16T03:27:34 | 215,432,799 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 369 | cpp | //CS 2024 -- A6
//Written by Oscar So (ons4)
//October 15, 2019
#include <iostream>
#include "MenuH.h"
#include "MenuItemH.h"
using namespace std;
MenuItem::MenuItem(string title, char prompt){
mTitle = title;
mPrompt = prompt;
}
char MenuItem::getPromptChar(){
return mPrompt;
}
void MenuItem::display(){
... | [
"os2304@columbia.edu"
] | os2304@columbia.edu |
863ee53409f28b484e9f8d7abd4d8f7120c3d1c8 | 85ec0860a0a9f5c0c0f0d81ce3cc0baf4b2a812e | /tools/cppfrag2html/Main.cpp | 45564a3ba1706088c4ef3a31ef8dc38995e53dce | [] | no_license | slaakko/soulng | 3218185dc808fba63e2574b3a158fa1a9f0b2661 | a128a1190ccf71794f1bcbd420357f2c85fd75f1 | refs/heads/master | 2022-07-27T07:30:20.813581 | 2022-04-30T14:22:44 | 2022-04-30T14:22:44 | 197,632,580 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,253 | cpp | #include <sngcpp20/lexer/CppTokenLexer.hpp>
#include <sngcpp20/lexer/CppTokenLexerTokens.hpp>
#include <sngxml/dom/Element.hpp>
#include <sngxml/dom/Document.hpp>
#include <sngxml/dom/CharacterData.hpp>
#include <sngxml/xpath/InitDone.hpp>
#include <soulng/util/InitDone.hpp>
#include <soulng/util/Path.hpp>
#include <so... | [
"slaakko@gmail.com"
] | slaakko@gmail.com |
4d52490b1432705a504f8cdfdaf4d559a2ca9cab | 59d48e2e57b99900cda47f2718f4fd917a87b707 | /WorkersRightsComputer/WorkPeriod.h | 8a2ffceb7d4c756a3a4c0cee35606b5d437d7ba9 | [] | no_license | YoavHaifa/WorkersRightsComputer | acad8c152ba56d3a6ef77e53e8e08fdab62c26ec | c6443e63dc19fe01cfb9d94387bb350f292a126f | refs/heads/master | 2023-08-09T20:21:37.254929 | 2023-07-29T17:32:46 | 2023-07-29T17:32:46 | 185,610,201 | 1 | 0 | null | 2020-01-07T21:38:39 | 2019-05-08T13:21:13 | C++ | UTF-8 | C++ | false | false | 2,328 | h | #pragma once
#include "MyTime.h"
#include "MonthInfo.h"
class CWorkPeriod
{
public:
CWorkPeriod(void);
bool LastYearContains(class CHoliday &holiday);
void Reset(void);
void WriteToLetter(class CHtmlWriter &html);
CString GetPeriodForLetter(void);
CString GetPeriodForLetterHebrew(void);
bool IsValid(bool bMus... | [
"yoav.bar.haifa@gmail.com"
] | yoav.bar.haifa@gmail.com |
b447dd6cfb754e4167b6a0d90567ae55c322c9c8 | 5ee7b59b955ebde297f0dd924382a96a79771681 | /plnrcmbd/CrdPlnrTpo/PnlPlnrTpoList_blks.cpp | f994d017b61518c94b13f55b6729b83cc4c0dcc3 | [] | no_license | epsitech/planar | a3b22468e6718342218143538a93e7af50debee0 | e97374190feaf229dac4ec941e19f6661150e400 | refs/heads/master | 2021-01-21T04:25:32.542626 | 2016-08-07T19:20:49 | 2016-08-07T19:20:49 | 48,572,177 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,023 | cpp | /**
* \file PnlPlnrTpoList_blks.cpp
* job handler for job PnlPlnrTpoList (implementation of blocks)
* \author Alexander Wirthmueller
* \date created: 4 Dec 2015
* \date modified: 4 Dec 2015
*/
/******************************************************************************
class PnlPlnrTpoList::VecVDo
***... | [
"awirthm@gmail.com"
] | awirthm@gmail.com |
a91d032571d91875783aaf2b02a99da09aec638a | 299e9042038df49256162a1608b2f419049f333e | /For your Arduino library folder/LC_baseTools/lists.cpp | 908992e7e4618bccb7ed8c0e0a2663db6a0110c7 | [] | no_license | leftCoast/RPN_Calculator | 34251e2477d135a2fa07719385cbddbfb36396bb | d62eb46f6a748f951bb36aff5f71ecd856930260 | refs/heads/master | 2021-01-11T18:40:00.495871 | 2020-08-04T07:38:29 | 2020-08-04T07:38:29 | 79,593,685 | 7 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 5,979 | cpp | #include "lists.h"
// *************** linkListObj ********************
// A none too bright node with a tail.
linkListObj::linkListObj(void) {
next = NULL;
}
linkListObj::~linkListObj(void) {
// Bit of trouble here. We are single linked, so we
// have no idea who's pointing to us. Therefore we must
// ... | [
"gitHub@leftcoast.biz"
] | gitHub@leftcoast.biz |
f550eb48b8218edf99d39d0ae0266d54f21604ec | 157fd7fe5e541c8ef7559b212078eb7a6dbf51c6 | /TRiAS/TRiAS/Extensions/FakeMFC/Dummy3.cxx | 43fd43a79701a3fc4ff5d8319d2086d7669216ed | [] | 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 | ISO-8859-1 | C++ | false | false | 311 | cxx | // DummyVarianten für diverse Funktionen --------------------------------------
// File: DUMMY3.CXX
#include "fakemfcp.hxx"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
BOOL GetTypeLibName (TCHAR *)
{
return false; // kein TypeLibName
}
| [
"Windows Live ID\\hkaiser@cct.lsu.edu"
] | Windows Live ID\hkaiser@cct.lsu.edu |
b4e490af857d7ee4f20b67a3e9ee2ba3b9701ed1 | 7e5be101928eb7ea43bc1a335d3475536f8a5bb2 | /2015 Training/11.23/1008.cpp | 4467a13b3d5ac10a5530bb3eab9e8187bbe375a5 | [] | no_license | TaoSama/ICPC-Code-Library | f94d4df0786a8a1c175da02de0a3033f9bd103ec | ec80ec66a94a5ea1d560c54fe08be0ecfcfc025e | refs/heads/master | 2020-04-04T06:19:21.023777 | 2018-11-05T18:22:32 | 2018-11-05T18:22:32 | 54,618,194 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,033 | cpp | //
// Created by TaoSama on 2015-11-23
// Copyright (c) 2015 TaoSama. All rights reserved.
//
//#pragma comment(linker, "/STACK:1024000000,1024000000")
#include <algorithm>
#include <cctype>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <iomanip>
#include <iostream>
#include <map>
... | [
"lwt1367@gmail.com"
] | lwt1367@gmail.com |
28e6adc9015f49d30105a5f052a7318cc78e450c | bce3dfcb2ab801087b663c56f590a8affa7495d0 | /src/qt/sendcoinsdialog.cpp | ffc269199c7006cceac81a3ac51ae7bb6292ea24 | [
"MIT"
] | permissive | botslim/botslim_03.githab.io | cc9c61a1b51cc3ab7bd359ca9b95922ada6b033d | 3bd14fb80553e20aaa7a76ef2d8e84658e69fabb | refs/heads/master | 2021-04-18T22:38:39.456638 | 2018-02-24T15:54:16 | 2018-02-24T15:54:16 | 126,571,147 | 2 | 0 | MIT | 2018-03-24T06:08:18 | 2018-03-24T06:06:18 | C++ | UTF-8 | C++ | false | false | 37,066 | cpp | // Copyright (c) 2011-2015 The Bitcoin Core developers
// Copyright (c) 2014-2017 The Rapture Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "sendcoinsdialog.h"
#include "ui_sendcoinsdialog.h"
#include... | [
"rapturecoredev@gmail.com"
] | rapturecoredev@gmail.com |
f8c5b92e5ed5a6f5a0773741ec0f037a9f584389 | 0efb71923c02367a1194a9b47779e8def49a7b9f | /Oblig1/les/0.94/phi | 2861248dc9c50ab27da2fd6757f65d46093c6bcc | [] | no_license | andergsv/blandet | bbff505e8663c7547b5412700f51e3f42f088d78 | f648b164ea066c918e297001a8049dd5e6f786f9 | refs/heads/master | 2021-01-17T13:23:44.372215 | 2016-06-14T21:32:00 | 2016-06-14T21:32:00 | 41,495,450 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 214,484 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.4.0 |
... | [
"g.svenn@online.no"
] | g.svenn@online.no | |
3c0ba481c932f443ec23c3e2b1b5e17974a320ce | d71469139a43ba2cf3715a40844afe5158460fd4 | /POCH.cpp | 6bf7654f4c0db14fe12c02acf9b0e683717367a6 | [] | no_license | rot4ry/numerical-methods | 2535c40951e983c8b6ed67c1f5867f8b8264090b | dd0b8fb623ed4c288d2a4535a8d60d6dd7da20f1 | refs/heads/master | 2022-03-27T04:16:25.215055 | 2020-01-15T21:24:56 | 2020-01-15T21:24:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,723 | cpp | #include <iostream>
#include <math.h>
using namespace std;
double F(double x);
void RSP(double x, double h, double i);
void RSC(double x, double h, double i);
void RST(double x, double h, double i);
int main(){
double x=1;
double h=1e-4;
double i=0;
cout.precision(10);
cout<<"h = "<<h<<endl;
... | [
"wojtekw233@gmail.com"
] | wojtekw233@gmail.com |
f3c8942b4f6c33dfc45d3d5d5eddba887a227e6b | ef2d4ed65259b3f614426664939e9fb938715299 | /darknet/examples/yolo.c | 4ddb69a3e53b2123ccb89026645a66c044047faa | [
"MIT",
"LicenseRef-scancode-yolo-1.0",
"WTFPL",
"LicenseRef-scancode-yolo-2.0",
"GPL-3.0-only",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | guanshuicheng/invoice | 292ab7bd20ab07d4bdf9ca0f60ae2cf0e3bb06a4 | bd201ed8e977421277775075a107a475bce0490d | refs/heads/master | 2023-06-24T05:20:37.849072 | 2023-06-16T02:56:09 | 2023-06-16T02:56:09 | 200,155,602 | 1,399 | 379 | MIT | 2023-03-25T01:35:03 | 2019-08-02T03:06:41 | C | UTF-8 | C++ | false | false | 11,043 | c | #include "darknet.h"
char *voc_names[] = {"aeroplane", "bicycle", "bird", "boat", "bottle", "bus", "car", "cat", "chair", "cow", "diningtable", "dog", "horse", "motorbike", "person", "pottedplant", "sheep", "sofa", "train", "tvmonitor"};
void train_yolo(char *cfgfile, char *weightfile)
{
char *train_images = "/da... | [
"18010149119@163.com"
] | 18010149119@163.com |
f46119d319b9090d89521a298a23e4c8fe261bd9 | a6ebc74b5b27c537a939ff54b53b08640fb3cf04 | /mp_music/catch_fileinfo.cpp | 19657a78e91189803b2fb134c7c8db9e469cd73c | [] | no_license | Pluto-kk/Practice | 711ac5e8d8ec9a3ba0b4e40798da1e0c69890953 | 29cdae7156fe9b8ff71e18623f71e27f0d4ec1d2 | refs/heads/master | 2022-11-26T18:01:35.860998 | 2020-07-12T05:05:29 | 2020-07-12T05:05:29 | 211,463,397 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,608 | cpp | #include "catch_fileinfo.h"
#include <QtCore/QString>
#include <qstring.h>
#include <QString>
#include <dirent.h>
#include "gb2312_ucs2.h"
struct fileinfolink info_link;
QString buf;
QString mp3=".mp3";
void mydir(struct dirent *dir,QString file)//筛选mp3文件并存入链表
{
buf=dir->d_name;
qDebug()<<buf<<buf.mid(buf.leng... | [
"1583471689@qq.com"
] | 1583471689@qq.com |
4b3a93d4655594d41c86ce9a76b3f93b35db5977 | b40f4bd914c97494500e41d8fb9f795ae4e0e22f | /Cpp/stalls.cpp | c7b0923286155f84d9d2b7a92013d28a321bfd5b | [] | no_license | tkhurana96/compProgramming | 19ba3ae137ead76ab9f9c8db1e73166474e8f6c6 | 0aa74b2c8fefc0e42facd1367e123f03bfb8de30 | refs/heads/master | 2021-01-22T11:21:42.106381 | 2017-05-28T21:27:56 | 2017-05-28T21:27:56 | 92,688,052 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,694 | cpp | #include <algorithm>
#include <iostream>
#include <tuple>
#include <utility>
#include <vector>
using ll = long long int;
void updateVec(std::vector<std::tuple<ll, ll>> &vec, ll firstHalf,
ll firstHalfTimes, ll secondHalf, ll secondHalfTimes) {
vec.erase(vec.begin());
if (secondHalf > firstHalf) {... | [
"tusharkhurana99@gmail.com"
] | tusharkhurana99@gmail.com |
95c65b44f128f0e6f753505eec514edf8afff512 | 31475b58b676a174d89b3130f869656366dc3078 | /public/var.h | a546dc71faca527a3428cdd4bf9717955b963944 | [] | no_license | cooper-zhzhang/engine | ed694d15b5d065d990828e43e499de9fa141fc47 | b19b45316220fae2a1d00052297957268c415045 | refs/heads/master | 2021-06-21T07:09:37.355174 | 2017-07-18T14:51:45 | 2017-07-18T14:51:45 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 11,443 | h | //--------------------------------------------------------------------
// 文件名: var.h
// 内 容:
// 说 明:
// 创建日期: 2007年2月5日
// 创建人: 陆利民
// 版权所有: 苏州蜗牛电子有限公司
//--------------------------------------------------------------------
#ifndef _PUBLIC_VAR_H
#define _PUBLIC_VAR_H
#include <wchar.h>
#include "i_var.h"
// 可变... | [
"1542971595@qq.com"
] | 1542971595@qq.com |
29a6e86ca95de746cd799d65849115ca7fe189d5 | 9715e37bd071969246ae5584b514b3f23dd65bf5 | /tasks/include/tasks/serial.h | 035523d0ab828f18955e3d37e9fcc915aca0f565 | [
"Zlib"
] | permissive | iganinja/olagarro | b593f117041b14addaf9e676f2075b2aa806afa4 | 62d35bada76f04a176c5ac7a7ad3ed0b7b831e11 | refs/heads/master | 2023-03-19T12:45:47.669826 | 2023-03-12T18:47:51 | 2023-03-12T18:47:51 | 23,021,493 | 6 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 440 | h | #ifndef SERIAL_H
#define SERIAL_H
#include "task.h"
#include <vector>
namespace Olagarro
{
namespace Tasks
{
TaskUP makeSerial(std::vector<TaskUP>&& tasks);
template<typename... Tasks>
TaskUP serial(Tasks&&... tasks)
{
TaskUP tasksArray[] = {std::move(tasks)...};
return makeSerial(std::vector<TaskUP>{std::... | [
"gammenon@gmail.com"
] | gammenon@gmail.com |
6489d83f107d0bdf01c98fc2367fdac01f642c20 | 404f653eec4f0cd40ee704718cbe16293d58f37d | /string/verify/Zalgorithm.cpp | 454c8937b950c5d2df660cc70051198387f13904 | [] | no_license | dedentete/library | 5b0ac9c2528ebf01a4a1707f4349d8e7ecc59809 | 5c395188893c17591b2f4ce033f36a00bc10d50d | refs/heads/master | 2022-09-20T08:29:01.338080 | 2022-08-07T08:44:50 | 2022-08-07T08:44:50 | 211,706,088 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,213 | cpp | // ABC-141-E
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (n); i++)
#define ALL(v) (v).begin(), (v).end()
using ll = long long;
using P = pair<int, int>;
const int INF = 1e9;
const long long LINF = 1e18;
const long long MOD = 1e9 + 7;
const long long B = 1007;
template <typename ... | [
"51981069+dedentete@users.noreply.github.com"
] | 51981069+dedentete@users.noreply.github.com |
d05fa3199cbcc2e928a371e4ff0d15fc3222b1b6 | d209bace8bcf307448316c356578f1d602f140c1 | /suturo_manipulation_gripper_controller/hack_for_groovy/pr2_gripper_sensor_msgs/PR2GripperReleaseActionGoal.h | fbdfd23eec94474a6c244de8144e511c49d0f8e0 | [] | no_license | SUTURO/legacy_suturo_manipulation | 39de35adc0388e2513d85e843ec6e1ddab3ea1c8 | 200c4da883279af4f7d9b991061d81d42259dd76 | refs/heads/master | 2021-05-29T16:59:41.057026 | 2014-05-16T11:07:09 | 2014-05-16T11:07:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,924 | h | /* Auto-generated by genmsg_cpp for file /tmp/buildd/ros-groovy-pr2-object-manipulation-0.7.5/debian/ros-groovy-pr2-object-manipulation/opt/ros/groovy/stacks/pr2_object_manipulation/manipulation/pr2_gripper_sensor_msgs/msg/PR2GripperReleaseActionGoal.msg */
#ifndef PR2_GRIPPER_SENSOR_MSGS_MESSAGE_PR2GRIPPERRELEASEACTIO... | [
"stelter@tzi.de"
] | stelter@tzi.de |
cbeade5a81f68bcff86bad475a015865b12cc275 | b4385ed5294d7af6a0873fe735fb20af3aaa61d4 | /include/openssl/cbc_256.hpp | 924981a2e4c11be36837d0d5456226b39549b0ee | [] | no_license | lobsterb/examples | bc1646c8d368a3a1482a3391dbf7ddc2ad056a4c | db0bd99470e6de2f179042fc7d35ecdc4cb87236 | refs/heads/master | 2020-11-29T18:32:57.906834 | 2019-12-26T04:03:43 | 2019-12-26T04:03:43 | 230,190,071 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 7,097 | hpp | #pragma once
class cipher_aes_cbc_256
{
public:
// 采用默认填充方式
// 该函数用来处理字符数据, 虽然是分块加解密, 也不适合传入太大数据
std::string cbc_256_string(unsigned char const * const key, unsigned char const * const iv, std::string const& data, int mode)
{
EVP_CIPHER_CTX *ctx = nullptr;
EVP_CIPHER const *ec = EVP_aes_25... | [
"chensilu@test.com"
] | chensilu@test.com |
a70a12a4afce897fa28450ac45618f7f156b001e | 9678f45d262f11bc0e4c814f73e3210cce592c8c | /src/RSys/Interface/RChart.cc | 0e4849528ce112929d973db39be71ad0420acc6a | [] | no_license | tuxmark5/RSys | 9aaa210fd780a01c2b973321beec85089c801773 | a92a8645e76eab4ac53beedb22f5e8428393db60 | refs/heads/master | 2021-01-23T22:07:09.246031 | 2011-12-27T22:35:08 | 2011-12-27T22:35:08 | 2,438,907 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 5,039 | cc | #include <KDChart/KDChartBarDiagram>
#include <KDChart/KDChartLegend>
#include <KDChart/KDChartLineAttributes> // ?
#include <KDChart/KDChartLineDiagram>
#include <RSys/Interface/RChart.hh>
#include <RSys/Interface/RCoordinatePlane.hh>
#include <RSys/Interface/RResultsModel.hh>
/***************************************... | [
"tuxmarkv@gmail.com"
] | tuxmarkv@gmail.com |
a51ff8648ff22447b8a7a078157526f35c2a4620 | ff747500fa9167ce56c958a76fd2d733e7f2e567 | /Lab5/associativeRoster.cpp | e4186a8277df41386f27d2eded242d5473fd25a0 | [
"MIT"
] | permissive | NLaDuke/CSIII-Labs | 8c283aaa4ad58938d91b27e954d1a8f478816039 | 8f2658d6fcf6cc838bbef17bc5110a10c742bf0e | refs/heads/main | 2023-08-08T02:34:05.223977 | 2021-09-19T22:52:45 | 2021-09-19T22:52:45 | 408,253,673 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,607 | cpp | #include <fstream>
#include <iostream>
#include <vector>
#include <list>
#include <string>
#include <cstdlib>
#include <map>
#include "student.hpp"
using std::string; using std::getline;
using std::list; using std::vector;
using std::move; using std::map;
//--------------------------
// File: associativeRoster.cpp
... | [
"naladuke09@gmail.com"
] | naladuke09@gmail.com |
cf629db025b4bacf91430c6eb0f063c1df0ed28d | f473fc724b0abc19fc86cbedc60e84353220ad26 | /src/utilities.cpp | ad06e060d4e550bff154fcb8f40412ec11e650ad | [] | no_license | ELD/JackCompiler | 08e97c09232e617743bc0c3be7e892316f7e619e | 8abe5387096184fc5e8e2e308746c229888a00e2 | refs/heads/master | 2020-04-14T16:52:11.106882 | 2015-05-02T17:40:09 | 2015-05-02T17:40:09 | 32,471,134 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 565 | cpp | #include "../headers/utilities.hpp"
vector<path> getFilesInProject(string const& pathName)
{
vector<path> files;
filesystem::path p{pathName};
if (is_regular_file(p)) {
files.emplace_back(p);
return files;
}
for (auto const& file : make_iterator_range(recursive_directory_iterator{p... | [
"eric.dattore@gmail.com"
] | eric.dattore@gmail.com |
456f3bf0c7d2303c95e66c99c7dfff6f6e67d2ed | cfb663c1c2191b3bc82eed3af800b98e38910927 | /src/tests/testlogger.cpp | 79ecd093ef978012b7e819cf9bcd8a3311e0e5ad | [
"BSD-3-Clause"
] | permissive | kaidokert/old-esteid-stack | c77865cf7e7f4e4faf719202d49c6138ac5c94a6 | 0391bbf600556dc8527c4f87eed2c95afc878ab4 | refs/heads/master | 2020-04-19T03:51:19.679916 | 2016-08-25T04:35:49 | 2016-08-25T04:35:49 | 66,524,204 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 590 | cpp | #include <smartcard++/common.h>
#include <smartcard++/helperMacro.h>
#include "utility/logger.h"
#include <iostream>
using std::endl;
int main(int argc,char **argv) {
unsigned char bytebuf[] = {0x01,0x02,0xDE,0xAD};
ByteVec buffer(MAKEVECTOR(bytebuf));
logger buf;
std::cout << "--1" << std::endl;
buf << "mush... | [
"kaidokert@28238cf3-8f3b-0410-a026-c956796b7a59"
] | kaidokert@28238cf3-8f3b-0410-a026-c956796b7a59 |
7a005c6587127d453d67111967b8f1d14b901d93 | 085f59477009f38844b19e5d077307fcc9954d88 | /branches/JinHUANG/jtflib/algorithm/src/main.cpp | bfa5fcc3743f16059ed29b9bc227cbe8306e82f3 | [] | no_license | senjay/zju_geo_sim_sdk | e58916bde012bf747a5e91d9a1fc99b5f717ac71 | 38edc0ad9fcc5ff8f12f9d13b508c9418c989cb8 | refs/heads/master | 2021-06-07T05:33:39.091411 | 2016-08-19T01:33:47 | 2016-08-19T01:33:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,418 | cpp | #include "../include/gauss_elimination.h"
#include <iostream>
using namespace std;
using namespace boost;
int main()
{
vector<double> x(5);
boost::dynamic_bitset<> flag(5);
jtf::algorithm::gauss_eliminator<double> ge(x,flag);
{jtf::algorithm::equation<double> eqn;
eqn.add_expression(jtf::algorithm::make_... | [
"jtf198711@gmail.com"
] | jtf198711@gmail.com |
ecdb738eb9ad05a7607c2e0f0c4efb4809ea24ea | 1590a04ae16eef2e29efa3efbe05e0d7050b598d | /Sprite.cpp | b4836b0a810ab37dd9f90df2bafe99d5da5533f5 | [] | no_license | JinwooYang/Fortress | d1fa815deeafe0ba905d656d148dd0ba0e6e9d82 | 2f6e8783e0495b8d7cc6c285d453b760539bc5f7 | refs/heads/master | 2021-09-28T02:34:55.551163 | 2018-11-13T12:13:59 | 2018-11-13T12:13:59 | 36,806,648 | 0 | 0 | null | 2018-11-13T12:14:00 | 2015-06-03T13:48:57 | C++ | UTF-8 | C++ | false | false | 2,883 | cpp | #include "DXUT.h"
#include "Sprite.h"
#include "TextureManager.h"
#include "Camera.h"
#include "Director.h"
#include "UserDefines.h"
USING_NS_DX2DX;
Sprite::Sprite(LPCWSTR fileDir) :
_Texture(TextureManager::GetInstance()->GetTexture(fileDir)),
//_d3dColor(D3DCOLOR_XRGB(255, 255, 255)),
_wFrame(1),
_hFrame(1),
_Anima... | [
"k2yd1754@naver.com"
] | k2yd1754@naver.com |
e52362addf96e14a449253b5b86e1fdfcdde16bf | d4240a19b3a97e8c4a39a7925e8046ead6642d19 | /2016/Enceladus/Temp/StagingArea/Data/il2cppOutput/Mono_Security_Mono_Security_Cryptography_RSAManage3034748747.h | fe13dac3d211415cf4fcb7daadc4a4cf982e72a4 | [] | no_license | mgoadric/csci370 | 05561a24a8a6c3ace4d9ab673b20c03fc40686e9 | 9ffd5d0e373c8a415cd23799fc29a6f6d83c08af | refs/heads/master | 2023-03-17T18:51:45.095212 | 2023-03-13T19:45:59 | 2023-03-13T19:45:59 | 81,270,581 | 2 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 7,221 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
// Mono.Math.BigInteger
struct BigInteger_t925946153;
// Mono.Security.Cryptography.RSAManaged/KeyGeneratedEventHandler
struct KeyGeneratedEventHandler_t108853710;
#include "mscorlib... | [
"goadrich@hendrix.edu"
] | goadrich@hendrix.edu |
3784393e5b40232ee499f12db59c50b4c1feb9ae | a73097eda5e421bb5ad0840d68d766ce990c5288 | /_include/convert.cpp | 8019b8950fd61f38067d6e0fb745ac50916ae1e2 | [] | no_license | VITALIIKRIVEL/HeatCounter | 3bbcfd14c5176780d547f9946a5c470f4fb2e3a3 | f632a8cf349212ed7c9e1e6dd3a6083c508be306 | refs/heads/master | 2020-05-14T16:27:16.218027 | 2019-05-08T06:08:00 | 2019-05-08T06:08:00 | 181,872,194 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,628 | cpp | #include <QLocale>
#include "convert.h"
namespace nayk {
//=======================================================================================================
const QChar charXML[] = {'"', '&', '<', '>', '\n', '\r'};
const QString stringXML[] = {""", "&", "<", ">", " ", "&#... | [
"vitaliy.krivel@yandex.ru"
] | vitaliy.krivel@yandex.ru |
25607f6e9f5c5935577042fbe36d04c15e390e88 | 485094046c68092619404845a4bdf68df14b55c5 | /RGB7Segment.h | 52768ed45539cefe56a83f6b48c3daa841c63c6e | [
"MIT"
] | permissive | boxysean/Adafruit_RGB7Segment | a84b0c7ecfd8f61557b3de4615d6956bf3ed09bb | c202ea92adb66d4166a38456d9bc12a43b13c77a | refs/heads/master | 2020-04-05T23:04:56.112674 | 2014-08-25T18:29:18 | 2014-08-25T18:29:18 | 22,962,005 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 804 | h | /*
RGB7Segment.h - Library for running RGB 7 Segment.
Adafruit product: https://www.adafruit.com/products/1399
Created by Sean McIntyre, August 2014.
Released into the public domain.
*/
#ifndef RGB7SEGMENT_H
#define RGB7SEGMENT_H
#include "Arduino.h"
#include "Tlc5940.h"
#define RGB7SEGMENT_NUM_PINS 24
#defin... | [
"boxysean@gmail.com"
] | boxysean@gmail.com |
de7e31b04a6dd2963030c077570569ead20ed879 | 4530bf91a9c173ddce5a2ebec821e7819c114056 | /mainwindow.cpp | 0f2245314c261662a3f7d4832eb81abaa20ebaeb | [] | no_license | Maxeg13/Kohonen-map-MyoArmband | 1eb2d26ec80bdd570e08323bf39687a6b0378a2c | f2cc523937311b8885d2a072d040f404ecfe2ae5 | refs/heads/master | 2021-01-01T16:21:31.456219 | 2018-02-22T10:50:59 | 2018-02-22T10:50:59 | 97,810,067 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,833 | cpp | #include "mainwindow.h"
#include "headers.h"
#include "stand_dev.h"
//SERIAL may be defined in mainwindow.h
#ifdef SERIAL
#include "serialqobj.h"
#include <QThread>
#else
#include "datacollector.h"
#include "stand_dev.h"
//#include "pca.h"
#endif
#include "drawing.h"
//#include "layer_koh.h"
usi... | [
"chibisaincrada@gmail.com"
] | chibisaincrada@gmail.com |
082fe48c54741b11926cdfc71f44ef0895de95c8 | 271ee7f9b31c4053442d1e488bcf7113b984e9a3 | /Covid Challenge/Round-3/judge/submissions/97110206/t5.cpp | bb79e418b0bd3ea951bf900251fb519648233121 | [] | no_license | amirghx/Algorithms_Jupyter | 3f3e196a43023c3f231adaddb57c1b55e1202d1c | adceb29cc6a7618e9040eae809f8e027dfe90593 | refs/heads/master | 2023-01-22T19:27:51.767018 | 2020-12-07T16:46:53 | 2020-12-07T16:46:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,578 | cpp | #include<bits/stdc++.h>
using namespace std;
string outputString = "";
int numberOfOrders = 0;
typedef pair<int, long int> pp;
const int maxN = 520, maxM = maxN*maxN, maxK = 2*maxN; // k is longest path
const long int bigNumber = 1e9 * 1e8;
int m,n;
int p[maxN];
//int c[maxN][maxN];
vector <pp> neighbers[maxN];
void ... | [
"kianoosh.abbasi76@gmail.com"
] | kianoosh.abbasi76@gmail.com |
9e6e6a8fb6646f76c2ae8a3b00e3ce7c7cece740 | 9ed0ca49d7fddf6ecb1784d15709a3235cba37b4 | /Source/Tools/Builder/DependencyDatabase.h | 5bc33439ca144e8a1858558a34bcdfad176f7159 | [
"MIT"
] | permissive | simeks/Sandbox | 1332422161924dd490bd70cac8d791a6bfb67492 | 394b7ab774b172b6e8bc560eb2740620a8dee399 | refs/heads/master | 2020-05-17T08:45:03.388896 | 2017-03-05T14:10:37 | 2017-03-05T14:10:37 | 83,967,032 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,491 | h | // Copyright 2008-2014 Simon Ekström
#ifndef __BUILDER_DEPENDENCYDATABASE_H__
#define __BUILDER_DEPENDENCYDATABASE_H__
#include "CompilerSystem.h"
namespace sb
{
class FileSource;
class DependencyDatabase
{
public:
/// @param file_source FileSource for the asset source folder
DependencyDatabase(FileSource* ... | [
"simon.ekstrom@gmail.com"
] | simon.ekstrom@gmail.com |
d606c112645b649bcb60dea71e308a46db99eab9 | 5cbb83aa80e4db64c2c91548cf3bc03642a57271 | /rust-cc/cont.cc | 6c46739de5a9e8fa436343b01de26c84b48b8292 | [
"MIT"
] | permissive | ekimb/contig-connectors | 27b680cb622543fc478892fb3aeebb311a44b3b5 | 053af1d14b12e00686d619a22556e2a901cbd2d7 | refs/heads/main | 2023-08-14T22:11:14.581431 | 2021-10-04T11:35:27 | 2021-10-04T11:35:27 | 411,280,286 | 2 | 3 | MIT | 2021-10-04T11:35:28 | 2021-09-28T12:52:18 | C++ | UTF-8 | C++ | false | false | 1,233,448 | cc | Input file: contigs_ref_mmap.fa
Format: FASTA
Center: ["SRR492191_k119_1690"], member count: 1
Member: ["SRR492195_k119_1417"]
Center: ["SRR492196_k119_1526"], member count: 0
Center: ["SRR492184_k119_1431"], member count: 2
Member: ["SRR492189_k119_10863"]
Member: ["SRR492196_k119_5253"]
Center: ["SRR492184_k119_2995"... | [
"ekimb@mit.edu"
] | ekimb@mit.edu |
b7a30c58e9ed5ba411641e30cc6924513b7ecc8d | 43c412ac0edf8f1a63d729f7215b39d925695e7c | /p2Testing/MakeFiles/first/third/LeafNode.h | 824c3f77cec49a2768fcb61239b0fcb669f14a00 | [] | no_license | aTonyXiao/OOProgramming | a74bb9df0e5da35045e8fd8eb614caf6c51bcbc4 | b29a0fe1085bfbf97c99e211a3ad0a924dea285b | refs/heads/master | 2021-06-11T16:50:58.224397 | 2017-03-18T01:41:32 | 2017-03-18T01:41:32 | 85,368,231 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 644 | h | #ifndef LeafNodeH
#define LeafNodeH
#include "BTreeNode.h"
class LeafNode:public BTreeNode
{
int *values;
public:
LeafNode(int LSize, InternalNode *p, BTreeNode *left,
BTreeNode *right);
void addToLeft(int value, int last);
void addToRight(int value, int last);
void addToThis(int value);
void addValue... | [
"tony.xiao95@icloud.com"
] | tony.xiao95@icloud.com |
56a9c0afca074a93df3fbac218c51007ed7bb1e2 | 9058a5332c0a23b9b0c09c4bd1fd28adeda1f535 | /DediwareSourceCode/dialogNuMicro/Dlg_Nano102.cpp | c8e089bc0fd5945069c5d988209d38c4d32bdeb3 | [] | no_license | AllenJunior/Allen | 4fe92340cb3bd7b03c2a72492d16821fe994acc7 | e21d4e247736c5847b113f9ef103d57930643ee4 | refs/heads/My-Design | 2020-05-19T19:49:20.275658 | 2017-02-05T07:12:07 | 2017-02-05T07:12:07 | 40,643,800 | 0 | 0 | null | 2017-02-05T07:38:07 | 2015-08-13T06:59:32 | C++ | UTF-8 | C++ | false | false | 8,922 | cpp | // Dlg_Nano102.cpp : implementation file
//
#include "stdafx.h"
#include "Dlg_Nano102.h"
#include "afxdialogex.h"
#include "../common/prog_info.h"
#include "numeric_conversion.h"
// Dlg_Nano102 dialog
IMPLEMENT_DYNAMIC(CDlg_Nano102, CMFCPropertyPage)
CDlg_Nano102::CDlg_Nano102(struct chip_info_c * ChipInfo, unsigne... | [
"allenliu521@gmail.com"
] | allenliu521@gmail.com |
bc7da08efeba489ee33cc2c336f0c91177bbbe94 | a163f71536060038c4f66354ddba258b7b1c9860 | /src/composed-graph.cpp | ef23bdea43a278c4363661a3319e0ac69343eae3 | [] | no_license | tunyash/disj_paths_bd_tw | f1e7222935fcd64f52371975d48467d391ede963 | 3b5eb389ab79a3e28b983e762867a16fa0aea2a2 | refs/heads/main | 2023-06-13T04:36:49.461550 | 2021-07-03T20:23:20 | 2021-07-03T20:23:20 | 375,112,297 | 0 | 0 | null | 2021-07-05T06:11:05 | 2021-06-08T18:48:19 | C++ | UTF-8 | C++ | false | false | 6,673 | cpp | #include "path-decomposition.h"
#include "nice-path-decomposition.h"
#include "composed-graph.h"
std::vector<NicePathDecomposition> get_path_dec_U(Graph &g, std::vector<std::vector<vertex_t>> &U) {
std::vector<NicePathDecomposition> res;
for (auto _set : U) {
Graph ng = get_good_subgraph(g, _set);
... | [
"gribennikvitalij@gmail.com"
] | gribennikvitalij@gmail.com |
3be450e7a49637c7044e684bdf84292345c2c3a2 | d69c127ab5770980cd9a2633277394b5767cbb80 | /file handling/takingfilenamefromuser.cpp | 54a3c7165e38ecb299b9cb39f894c9611efcc372 | [] | no_license | Himanshuraj7/Basic-CPP-programs | f04973cb76cfc6ee813dc7b9b284b5e2ff6d9c37 | 6907f812ac4cfcc947c562872aa8a7caba588645 | refs/heads/master | 2021-06-18T09:28:10.713922 | 2017-06-03T07:58:26 | 2017-06-03T07:58:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 808 | cpp | #include<iostream>
#include<conio.h>
#include<fstream>
using namespace std;
int main()
{
char ch;
char filename[7];
cout<<"enter the file name";
cin>>filename;
ofstream out;
out.open(filename);
cout<<"enter dta";
while(ch!='.')
{
ch=getche();
if(c... | [
"himanshuraj3619@gmail.com"
] | himanshuraj3619@gmail.com |
aa3afefbb34dc12e7b5a372caa9cde5e91780de2 | 663f383139bc5aadf47127a0b53ebb5ce9e91f8b | /TheEssenceOfAGoodDay/Gfx/DirectX11/pch.h | 766f1821610f4e5f51145b2a7a1af4aab3a17701 | [
"MIT"
] | permissive | ongornbk/TheEssenceOfAGoodDay | 90826b8ed9c461ce648cd63b5823cb27576f3606 | f9a89228d49d52fd0a6c22428f88d687b341330b | refs/heads/master | 2020-04-29T11:42:39.923689 | 2019-03-30T02:00:19 | 2019-03-30T02:00:19 | 176,109,201 | 0 | 0 | MIT | 2019-03-30T02:00:20 | 2019-03-17T14:00:10 | C++ | UTF-8 | C++ | false | false | 1,875 | h | //--------------------------------------------------------------------------------------
// File: pch.h
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PART... | [
"ongornbk@gmail.com"
] | ongornbk@gmail.com |
bf7f12acb27e8426312ff3b28dbd30bdeda6e8ae | 4c23be1a0ca76f68e7146f7d098e26c2bbfb2650 | /ic8h18/0.004/FC6H12OOH-F | cbda7995799abec4d7d374d3ab14a83376f598e8 | [] | no_license | labsandy/OpenFOAM_workspace | a74b473903ddbd34b31dc93917e3719bc051e379 | 6e0193ad9dabd613acf40d6b3ec4c0536c90aed4 | refs/heads/master | 2022-02-25T02:36:04.164324 | 2019-08-23T02:27:16 | 2019-08-23T02:27:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 843 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*-------... | [
"jfeatherstone123@gmail.com"
] | jfeatherstone123@gmail.com | |
2abc70bb5ecbcd4819b57aa619a2307699856fe8 | 599b4d589ef7011494109ac91c63662aca7912b2 | /Source/KAPMainPanel.cpp | 4fb25bb451f92a8bcba93bb5447d3635c055720d | [] | no_license | nberr/KadenzeAudioPlugin | 989d38bd5eae10ada931d0c3f61f7ddfa19ed61e | b735323db93216ba95081589062cbf84aa6c9019 | refs/heads/master | 2021-06-25T15:19:43.551235 | 2021-03-02T19:40:35 | 2021-03-02T19:40:35 | 208,204,428 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,392 | cpp | /*
==============================================================================
KAPMainPanel.cpp
Created: 19 Aug 2019 8:10:42pm
Author: Nicholas Berriochoa
==============================================================================
*/
#include "KAPMainPanel.h"
#include "KAPParamete... | [
"nberriochoa@gmail.com"
] | nberriochoa@gmail.com |
3d7967e38beb2f00200076dbcaeb2218e5b05d0e | 1c33b6fd7fbf966a961ccd679ad2ba344f2fc05f | /2018/Alternate.cpp | 8f950030e58646b0e4e301219a872ee954e4b9cc | [] | no_license | zim2510/Online-Judge-Solves | f57170e5bf14f339944079ed62bed01bdc5b27e3 | 949ab3cfba0cc7ec4ffaa6f2b3e5b0c517d9377a | refs/heads/master | 2022-01-07T10:23:12.653572 | 2019-05-19T11:30:58 | 2019-05-19T11:30:58 | 135,351,009 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 651 | cpp | #include <bits/stdc++.h>
using namespace std;
vector<int>BIT;
int n, q;
void update(int id){
while(id<=n){
BIT[id]++;
id+=id&(-id);
}
}
int query(int id){
int res=0;
while(id){
res+=BIT[id];
id-=id&(-id);
}
return res;
}
int main(){
freopen("in.txt", "r", stdin);
freopen("out.txt", "w", stdout);
... | [
"zim2510@gmail.com"
] | zim2510@gmail.com |
10b6901edc6025533c318fa09a5824ab576e09aa | 4f574e031237b0439637509c70f549d26cf627e5 | /src/headers/core/core_functions.h | c70a5c386f7afddc32ab271e434666290e1f0aab | [] | no_license | bcthund/Project_Parsec | 0d0bd8b732a1ac4d2a1b0119386f2acfa43ca64b | 4c5e1ba6721db4256a17533d659cb92683d4e8c2 | refs/heads/master | 2023-03-02T04:29:51.216173 | 2020-10-21T04:44:08 | 2020-10-21T04:44:08 | 280,711,098 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,835 | h | /*
* core_functions.h
*
* Created on: Dec 15, 2018
* Author: bcthund
*/
#ifndef HEADERS_CORE_CORE_FUNCTIONS_H_
#define HEADERS_CORE_CORE_FUNCTIONS_H_ 1
#include "extern.h"
//#include <variant> // Doesn't work
#include <any>
#include <iostream>
#include <fstream>
#include <cstring>
#include <assert.h>
#incl... | [
"bthundereagle@gmail.com"
] | bthundereagle@gmail.com |
819782ee088b08b36a80cd4b058d9f6628288e7a | 29dc2a8250110fc666185c781a9a4a40ba032d88 | /week3/shin/9_5.cpp | 3faba4a01d2de5fdf4a67b72f365b6483a268431 | [] | no_license | sangyeol-kim/knu_likelion_study | 46ca01253ba8bf84f7460ecc5dc323c1ce171eb2 | 2a9976bf3d0ffadd3a37f879ce0e7f551a2ee475 | refs/heads/master | 2020-05-01T09:08:18.927499 | 2019-05-27T10:54:15 | 2019-05-27T10:54:15 | 177,392,934 | 0 | 4 | null | 2019-05-27T10:54:16 | 2019-03-24T09:13:26 | Python | UTF-8 | C++ | false | false | 390 | cpp | #include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
/*
*/
vector<int> v;
int main(){
int n;
scanf("%d", &n);
while(n > 0){
int temp = n%10;
n /= 10;
v.push_back(temp);
}
sort(v.begin(), v.end());
auto i = v. rbegin();
while( i != v.ren... | [
"bg1346@naver.com"
] | bg1346@naver.com |
1074ac9960a1a1b74456d5d0ef49f040410bfac7 | 3bcb2427f40033a1ef3a45d6655fb46cc2591de9 | /Clank/src/cl/Graphics/D3DTypes.h | 3b30184acfd2f98480373da21d668ba86fe53485 | [
"MIT"
] | permissive | Repertoi-e/Clank | f5337870b02797bb90843e09fbb315dc6928fc54 | 3f954f90af9853ca0a7ad6638efd3644c98c8d40 | refs/heads/master | 2020-12-02T16:43:00.384424 | 2017-09-13T12:30:55 | 2017-09-13T12:30:55 | 96,573,146 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,606 | h | #pragma once
#include "cl/stdafx.h"
#include <dxgi.h>
namespace cl {
enum class Format : u32
{
UNKNOWN = 0,
RGBA32_TYPELESS = 1,
RGBA32_FLOAT = 2,
RGBA32_UINT = 3,
RGBA32_SINT = 4,
RGB32_TYPELESS = 5,
RGB32_FLOAT = 6,
RGB32_UINT = 7,
RGB32_SINT = 8,
RGBA16_TYPELESS = 9,
RGBA16_FLOAT = 10,
... | [
"dsotirov@windowslive.com"
] | dsotirov@windowslive.com |
040b21624cfc5f5a1dd6dc906e707f3a7e2bc523 | f399db3738cd4e489e7546568d115a08f8221cd4 | /src/UCSingleton.h | 18f43fd3bad210872a9ad010b9d0d63f40ad9282 | [] | no_license | okinp/UberCode | 938282c9f3a94b54e5a53e8d5ddbbb29eeec662d | bea26a39f8b0fe877cfbedc1cb06266e6d179863 | refs/heads/master | 2021-01-16T00:28:28.918107 | 2012-10-03T20:33:01 | 2012-10-03T20:33:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,530 | h | #pragma once
namespace Uber
{
/*!
* Template Singleton implementation, use it through derivation
* NOTE: If using macro UCSINGLETON( classname ): do not declare Ctor/CpyCtor/Dtor or operator=
* they are handled by base class, for initialization/uninitialization use virtual methods
* NOTE: If NOT using macro UCSINGLETO... | [
"rsommeregger.mmt-m2011@fh-salzburg.ac.at"
] | rsommeregger.mmt-m2011@fh-salzburg.ac.at |
1d5ee606afd1ceda0c15703156f8348d8416930a | 31fb2551f63ef470cb1963071527fbdf20167246 | /include/GMPhysicsList.hh | 8123c4b2d1297b6dc5c6fefe37874b61f7526e6c | [] | no_license | zhangyz37/GeigerMuller | 19551d8dbc0f9946a46713b4c28a884b07742fdd | c18e2966dae210b4030506dd6561c5a45aaf633f | refs/heads/master | 2020-03-23T15:51:09.455644 | 2017-10-10T10:55:10 | 2017-10-10T10:55:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,120 | hh | /**
* @file /Geiger_Muller/include/GMPhysicsList.hh
* @authors Balázs Demeter <balazsdemeter92@gmail.com>, Balázs Ujvári <balazs.ujvari@science.unideb.hu>
* @date 2015/09/31 <creation of 1.0>
*
* @section DESCRIPTION
*
* The Geant4 simulation of a Geiger-Muller counter. Header to physics list for EM processes.... | [
"balazsdemeter92@gmail.com"
] | balazsdemeter92@gmail.com |
2332e2a5bc403aa7d8a06d4c2fd2748c0c2e7848 | 32d1d6b2e12c353f4c5da2495e9822c082c3d060 | /VariablesVideo/VariablesVideo/Source.cpp | 0953b1c68686a284317b7ddc1a0a5a74d84fd197 | [] | no_license | ztmurphy21/ZTM-Coding-Notes--C---Video-on-Variables | 8f4acb5f36c312aa21b59ad70066cb7ee76b7c56 | 96e23fb891a51a2597ee5712bc9536a3294a9315 | refs/heads/master | 2020-06-16T10:57:55.979589 | 2019-07-06T14:48:41 | 2019-07-06T14:48:41 | 195,547,906 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 440 | cpp | /*
This is a simple program that will declare and output two variables
Author: Zachary Murphy
Date Modified Last: 7/6/2019
*/
//required statments
#include <iostream>
#include <conio.h>
#include <string>
using namespace std;
int main() {
//declarations
int balance = 1000;
string myName = "Zachary Murphy";
//outp... | [
"ztmurphy21@gmail.com"
] | ztmurphy21@gmail.com |
b5b2e7d9a9e533c280d3ebad55921eb688700b89 | 44932fc508a1739bbb339f705357bbd5c26a9aae | /Practica1/patronVisitante/Ejercicio1/PatronVisitante/nbproject/Tarjeta.h | f09a65a3ee1e511a1e6ac21c7e4d3e4575c75e1c | [] | no_license | migueg/Practicas-DS | 2e6cccebeb7501657548fbee5da0fe8e9ac3a771 | 3650049413632143f57e9f7bc1415adff572342e | refs/heads/master | 2022-09-06T22:11:44.363378 | 2020-05-24T18:51:27 | 2020-05-24T18:51:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 603 | h | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: Tarjeta.h
* Author: Usuario
*
* Created on 1 de marzo de 2020, 18:26
*/
#ifndef TARJETA_H
#define TARJETA_H
clas... | [
"juanfrandm98@gmail.com"
] | juanfrandm98@gmail.com |
1b82daa8c276551e3ce38166109e59a76a3e9724 | 726c1d88fba83f3c838b06d45401663002e5abe1 | /GP3 Coursework/mainGame.cpp | 633b8b937e48bba84005c457f8fb5b9c2aaaa62a | [] | no_license | JackOswald/Space-Shooter | 8a61d2efc8ebbdfd56ef7f2eb91e8df86f3e6aef | a403ac44017d86dcfa52375827c38257f1246060 | refs/heads/master | 2022-03-20T15:55:27.330283 | 2019-10-28T22:20:50 | 2019-10-28T22:20:50 | 116,637,487 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,035 | cpp | #define WIN32_LEAN_AND_MEAN
#define WIN32_EXTRA_LEAN
#define GLX_GLXEXT_LEGACY //Must be declared so that our local glxext.h is picked up, rather than the system one
//#include <windows.h>
#include "GameConstants.h"
#include "windowOGL.h"
#include "cWNDManager.h"
#include "cMaterial.h"
#include "cLight.h"
#include "... | [
"jack_oswald_cfc@hotmail.com"
] | jack_oswald_cfc@hotmail.com |
cfa9fa53a3263b818abd3e054314b9cbe31ca9e9 | c1571bbb63c76a9d84c52d5f336f76d461fecdab | /greenfox/week-04/day-02/DiceSet/main.cpp | 01f53cc67469e996f5cdbd021ecb4a848874dc79 | [] | no_license | green-fox-academy/rab.peti | a084ba10fd316bac557dc2beba17bb6a75fb46aa | 896b87803fbcfb93838d68f63e5ffed927659f95 | refs/heads/master | 2020-04-02T17:22:08.547050 | 2019-09-24T06:48:45 | 2019-09-24T06:48:45 | 154,655,058 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 701 | cpp | #include <iostream>
#include "diceSet.h"
int main(int argc, char* args[])
{
// You have a `DiceSet` class which has a list for 6 dices
// You can roll all of them with roll()
// Check the current rolled numbers with getCurrent()
// You can reroll with roll()
// Your task is to roll the dices until... | [
"rab.peter97@gmail.com"
] | rab.peter97@gmail.com |
ce29f29033f43bf9c9652c572ceb1e910d724b78 | 662a11bf08a4e70a5e854e33c627362ac279a22c | /LEGENDARY_CODIGO_3.0/src/Main.cpp | 363aba5750a64d13a46377e13c73d7860c691eca | [] | no_license | IFRN-SC/Legendary | 830e921b7055837f43ec0d0e6dd5866a415b60e1 | d887b579d301e67f6bc60a24136198b7c3c9b059 | refs/heads/master | 2020-03-13T16:34:45.357305 | 2018-10-19T18:07:36 | 2018-10-19T18:07:36 | 131,201,359 | 0 | 0 | null | 2018-08-15T00:45:44 | 2018-04-26T19:28:12 | C++ | UTF-8 | C++ | false | false | 564 | cpp | #include <robo_hardware2.h>
#include <Servo.h>
#include "MenuIniciar.h"
#include "Estrategia.h"
#include "Calibragem.h"
MenuIniciar menuIniciar;
Estrategia estrategia;
Calibragem calibragem;
void setup() {
Serial.begin(9600);
robo.configurar(false);
robo.habilitaTCS34();
calibragem.printDadosEEPROM();
menu... | [
"startonze@gmail.com"
] | startonze@gmail.com |
63e84971aa126fe85a056c6604891b32ba857e28 | a15200778946f6f181e23373525b02b65c44ce6e | /Algoritmi/2019-09-04/all-CMS-submissions/2019-09-04.10:18:53.387821.VR423929.hanoi_equal_disks.cpp | 63deca5729ba2f83772631f4895170fe36500736 | [] | no_license | alberto-uni/portafoglioVoti_public | db518f4d4e750d25dcb61e41aa3f9ea69aaaf275 | 40c00ab74f641f83b23e06806bfa29c833badef9 | refs/heads/master | 2023-08-29T03:33:06.477640 | 2021-10-08T17:12:31 | 2021-10-08T17:12:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,213 | cpp | /**
* user: VR423929
* fname: BRAGAGLIO
* lname: MORENO
* task: Prob2_hanoi_equal_disks
* score: 20.0
* date: 2019-09-04 10:18:53.387821
*/
#include <cassert>
#include <cstdio>
const int DEBUG =0;
const int MAXN = 100000;
int arr[MAXN];
int t,N;
int d[MAXN+1];
typedef long long unsigned int llu;
llu num_mosse =0;
... | [
"romeo.rizzi@univr.it"
] | romeo.rizzi@univr.it |
943df3afcb5797251a00559e832754170fc41a8d | e9e3d752ea203a631a4b9b4732e8907542214974 | /Raptor_code3.0_minsum_10000_0.2/Decode.cpp | 6f6fb1fd5974ebc00e051dff616a7858326e5e54 | [] | no_license | jiewend/ModuleTest | 7896186e6fe66515862194061e6471c1ab470c52 | 9c01820934e8d4a76a3d09637536ff0cfd029746 | refs/heads/master | 2020-03-10T01:03:51.895170 | 2018-11-23T11:48:37 | 2018-11-23T11:48:37 | 129,099,481 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 23,171 | cpp | #include"RandNum.h"
#include"RandNum1.h"
//#include"Encode.h"
#include"Decode.h"
#include"stdafx.h"
using namespace std;
//extern CWHRandNum rndGen1;
// RandNum1 rndGen2;
int CDecode::Decode_Gau(int cc_len,int *cc,int mm,int iter,double *ccc,int *uu,int **HH,double **QQ,double **RR,double sigma)
{ ... | [
"jiewend@outlook.com"
] | jiewend@outlook.com |
a52725a13048ea77e19be987222f0cc203ddc58e | 6c08b2cd7043a1b543dacc64f3bc96cdcffbf07e | /11current/DirectX11_AA_Engine/Math/Vector2.h | 4a1b1db18ed9c3bc3801fcdc3d2bc992d5f7a3ea | [] | no_license | Visin1991/AAGameEngine | 4d1222adf51d6988959bb3d5c49dd21f13373e0f | 91ec01b435e351cdb1abbe8c9959aba5ebea21e4 | refs/heads/master | 2020-07-03T18:49:20.122705 | 2016-08-27T06:49:26 | 2016-08-27T06:49:26 | 66,692,892 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,110 | h | /*
AA Engine
Copy right: Zhu,Wei Visin
Date: 17_12_2015
*/
#ifndef _VECTOR2_H_17_12_2015
#define _VECTOR2_H_17_12_2015
#include <iostream>
namespace AAEngine
{
struct Vector2
{
Vector2();
//Vector2(const Vector2& copy);
Vector2(float ax, float ay);
//unary operator
Vector2 operator+() const;
Ve... | [
"zhuzhanhao1991@gmail.com"
] | zhuzhanhao1991@gmail.com |
71563cbe93cb9bd8848119b3bcc7910223ee554f | 1791461e6740f81c2dd6704ae6a899a6707ee6b1 | /HSAHRBNUOJ/P13xx/P1304.cpp | 5a10a93f26d0c13d73acb4f718a023ce355e180e | [
"MIT"
] | permissive | HeRaNO/OI-ICPC-Codes | b12569caa94828c4bedda99d88303eb6344f5d6e | 4f542bb921914abd4e2ee7e17d8d93c1c91495e4 | refs/heads/master | 2023-08-06T10:46:32.714133 | 2023-07-26T08:10:44 | 2023-07-26T08:10:44 | 163,658,110 | 22 | 6 | null | null | null | null | UTF-8 | C++ | false | false | 1,672 | cpp | #include <cstdio>
#include <cstring>
#include <algorithm>
#define MAXN 10010
using namespace std;
struct link
{
int to, val, nxt;
};
link e[MAXN << 1];
int head[MAXN], cnt;
int n, T, u, v, w, k;
int dep[MAXN], LCAFather[MAXN][16], _2pow[16], LCADis[MAXN][16], ans;
inline void add(int u, int v, int w)
{
e[cnt] = (l... | [
"heran55@126.com"
] | heran55@126.com |
24140ae802dc79bf9f0643c1de6904e6ba75a710 | 45a5b73565b28383406e3c73646291c68eef8d12 | /Strings/length.cpp | e2c7ff84b260a2089bdd412008a88fe1ac693e21 | [] | no_license | karan-vk/AlgoAB | 67eaa486353681eda247df4f50f7fdf5b8304b08 | 3043d060de4ad94180f498caf5f143e1234bbbab | refs/heads/main | 2023-05-09T08:09:32.529969 | 2021-06-04T18:17:10 | 2021-06-04T18:17:10 | 363,999,776 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 220 | cpp | #include <iostream>
int main(int argc, char const* argv[]) {
char stri[] = {'w', 'e', 'l', 'c', 'o', 'm', 'e', '\0'};
int i;
for (i = 1; i < stri[i] != '\0'; i++) {
}
std::cout << i << std::endl;
return 0;
} | [
"karanvknarayanan@gmail.com"
] | karanvknarayanan@gmail.com |
0b5da8cc57c92ce9d57f45628000a77fa5893e65 | 558c55cff02b8dee466faaa4a0d64d0aef0d5d0a | /ExploreTopTagger.h | 2d52d64feffc51d05db2dd870728a49002befadb | [] | no_license | StealthStop/Exploration | bf3c0d148e02b3051ba9f21e6fb21fca301b636a | f220ef8afb0b221da636dd04f69d36c5ed096301 | refs/heads/master | 2021-09-12T16:42:27.154074 | 2018-04-18T21:10:28 | 2018-04-18T21:10:28 | 104,011,984 | 0 | 4 | null | 2018-04-18T21:10:29 | 2017-09-19T01:46:34 | C | UTF-8 | C++ | false | false | 683 | h | #ifndef ExploreTopTagger_h
#define ExploreTopTagger_h
#include <TH1D.h>
#include <TH2D.h>
#include <TEfficiency.h>
#include "NtupleClass.h"
//#include "samples.h"
#include <map>
#include <string>
class ExploreTopTagger : public NtupleClass {
public :
std::map<std::string, TH1D*> my_histos;
std::map<std::stri... | [
"nadja.strobbe@cern.ch"
] | nadja.strobbe@cern.ch |
fe24a28da5e262a50ad1f8e063ae65096eb1d242 | c20c4812ac0164c8ec2434e1126c1fdb1a2cc09e | /Source/Source/KGUI/script/kconstmgr.cpp | e33a64c6a86c619f1a87bc589af73d95575f68ea | [
"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 | UTF-8 | C++ | false | false | 7,933 | cpp | #include "stdafx.h"
#include "KG3DEngine/KG3DInterface.h"
#include "./kconstmgr.h"
#include "./kwndclassscripttable.h"
#include "./kscriptloader.h"
#include "../elem/wndframe.h"
#include "../elem/autolocatewnd.h"
#include "../elem/Components/item.h"
#include "../elem/Components/itemimage.h"
#include "../KGUI.h"
#includ... | [
"dark.hades.1102@GAMIL.COM"
] | dark.hades.1102@GAMIL.COM |
17762e862987bd3c7b11bbfa1526369999e38ac8 | 9f206fad262ca02b78a53172c0dae064ba932597 | /Control_scripts/W_maze/Blink_button/Blink_button.ino | 122c6a582aa7434d5ad300f64b71fc1fed6a20db | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | erinhp8/CEH2 | a58c69fd0f11d6116b94ad0ddeb9570e1b63c67e | f18aef006b653035a31fe99606cdf409079a38ab | refs/heads/master | 2023-06-27T22:33:22.709603 | 2021-07-15T20:14:16 | 2021-07-15T20:14:16 | 383,573,856 | 0 | 0 | MIT | 2021-07-16T18:23:37 | 2021-07-06T19:08:54 | MATLAB | UTF-8 | C++ | false | false | 3,339 | ino | /* W-Maze Control script,
* Based on sections from:
* Teensyduino Tutorial #1 http://www.pjrc.com/teensy/tutorial.html
* This example code is in the public domain.
*
* NeoPixel simple sketch (c) 2013 Shae Erisson
* released under the GPLv3 license to match the rest of the AdaFruit NeoPixel libr... | [
"ecarmichael@gmail.com"
] | ecarmichael@gmail.com |
6b821d44436203bcc1ee0b2c7010b5eb1ed3f2aa | c9b0dcab4bcffe4315be0df4cd9055819dc469a8 | /work/protobuf/protobuf_extension/unetanalysis.177000.178000.pb.h | 1e09c5cb6e0fff2ee610480dfa2300feb34f36d3 | [] | no_license | exuuwen/study | 83250f1cde1afff937963912fdd026df2cf48bd0 | c92b937351c2084759cf0a11cc535f5fb97488a3 | refs/heads/master | 2023-04-09T21:34:31.042551 | 2023-03-27T09:28:00 | 2023-03-27T09:28:00 | 61,179,598 | 6 | 6 | null | null | null | null | UTF-8 | C++ | false | true | 16,172 | h | // Generated by the protocol buffer compiler. DO NOT EDIT!
// source: unetanalysis.177000.178000.proto
#ifndef PROTOBUF_unetanalysis_2e177000_2e178000_2eproto__INCLUDED
#define PROTOBUF_unetanalysis_2e177000_2e178000_2eproto__INCLUDED
#include <string>
#include <google/protobuf/stubs/common.h>
#if GOOGLE_PROTOBUF_... | [
"wenx05124561@163.com"
] | wenx05124561@163.com |
55bb8a1bca619112e411c6fd319ee29027eb9dca | c877f7132d7209627a9d2fb0a989ab3bcb089009 | /main.cpp | ae0bd54014ccd428e6ea64fdc937993b8c40027d | [] | no_license | GremSnoort/Calc | 1b27a61b70bc9803fdb46cbf601f563b19535c58 | db3be371b13744db0f1ef3c947ca227077292a6b | refs/heads/master | 2021-08-19T12:47:26.929834 | 2017-11-26T20:41:53 | 2017-11-26T20:41:53 | 110,814,906 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 287 | cpp | #include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.setMaximumHeight(630);
w.setMaximumWidth(500);
w.setMinimumHeight(630);
w.setMinimumWidth(500);
w.show();
return a.exec();
}
| [
"grem_snoort@protonmail.com"
] | grem_snoort@protonmail.com |
63e5c24f6bbdad5adf8bd61fa88882387fe6f98a | 048fddf3e02996a50163d014987d2a1e0f852b05 | /20131112/d.cpp | 3a271d5d36b8203c24652048fc104179961dccf6 | [] | no_license | muhammadali493/Competitive-coding | 2a226d4214ea2a9c39dcd078d449d8791d80a033 | 0a6bb332fb2d05a4e647360a4c933e912107e581 | refs/heads/master | 2023-07-17T08:40:06.201930 | 2020-06-07T07:41:39 | 2020-06-07T07:41:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 807 | cpp | #include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;
typedef long long LL;
const int N = 11;
const LL LINF = 0x7777777777777777ll;
int dg[N], n, k;
LL ans;
bool check(LL n) {
if (k == 0 && n == 0) return 0;
n = abs(n);
while (n != 0) {
if (n % 10 == k) return 0;
n... | [
"lester.yangyongsen@gmail.com"
] | lester.yangyongsen@gmail.com |
66d82e5bbdc72f68d6915f567e68ad005a4b5843 | 2c68a80bfed28f550edd9d7032aade194df1a426 | /cpp/src/pool.cpp | d8879a45fdf681057a9acc4dbf5e328d85adf1c0 | [] | no_license | SPNSPN/mal | 1acdaa18a6228395126487f94303c867814d0158 | 45bc16fd16c70a86b385bcd69380f118f7735ad5 | refs/heads/master | 2022-03-01T07:57:02.790686 | 2022-02-06T08:24:08 | 2022-02-06T08:24:08 | 178,662,092 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,271 | cpp | #include <sstream>
#include <iomanip>
#include <algorithm>
#include "pool.h"
const Byte Pool::IsAlive = 0x80;
const Byte Pool::Marked = 0x40;
const Byte Pool::Marked_R = 0xbf;
const Addr Pool::nil = 0;
const Byte Pool::NilT = 0x00;
const Byte Pool::InumT = 0x01;
const Byte Pool::ConsT = 0x02;
const Byte Pool::Qu... | [
"kusamoti@gmail.com"
] | kusamoti@gmail.com |
17ae8cfbe2234a018fc8759c95eec7441fb04c6e | 41f1b4fbe1aa63b4062c53e2b1d98c2b7a5557ec | /language-cpp/flow.hpp | 472eb7a341a3979dd44e3848f94573019c444df1 | [] | no_license | jleben/streams | 8f23c12906e0d2a3bb2a7dcc166a3b6930990693 | dcb62f16b46f713601b8e60b6fa25756a19a591f | refs/heads/master | 2020-06-01T13:52:27.932934 | 2014-04-29T04:03:36 | 2014-04-29T04:03:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,734 | hpp | #include "utility.hpp"
#include "meta.hpp"
#include <array>
#include <tuple>
#include <cstdlib>
#include <iostream>
#include <algorithm>
#include <initializer_list>
#include <utility>
using namespace std;
namespace streams {
/////////////// IO Introspection //////////////
template<typename proc, typename input>
st... | [
"jakob.leben@gmail.com"
] | jakob.leben@gmail.com |
7c347625f6335b5e96fbb01b0bb551289a26618a | 9e3a5246694df906de23d1d1468907bf9c35847f | /cppPrimerLearn/leetcode/tree/smallestFromLeaf.cpp | 7d4a7226bc6b1d07b21c8dec02a5164c51cd1332 | [] | no_license | yenan2500254897/cppLearn | 84d15f026e22b11d9db6a3128d572c4617f71f69 | 7a70ee8299ca3db902d36ef1de81aa5992d8f1bd | refs/heads/master | 2023-02-16T21:10:17.381626 | 2021-01-17T02:47:52 | 2021-01-17T02:47:52 | 270,897,775 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,143 | cpp | #include<iostream>
#include<queue>
#include<vector>
#include<algorithm>
using namespace std;
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
string smallestFromLeaf(TreeNode* root) {
queue<TreeNode*> nodesQueue;
queue<string> record;
vector... | [
"smy960204"
] | smy960204 |
e61371d8ecdf36a559233f8f21a8a959e5049598 | e8a268beb1f83b7a913f3e2045c3a8e3d03a7bc0 | /proj3/Train.h | e000bfd600f5d4c6ce852adc8d69ef334bfe1eb7 | [] | no_license | CarolineVantiem/CMSC-202-Projects | 2432ecada4b074dbb707f2540daad470b984219d | 381b49de1d1aa15fb16709755ce6627cc23d76a8 | refs/heads/master | 2021-07-19T17:36:37.905764 | 2020-10-01T22:49:43 | 2020-10-01T22:49:43 | 217,575,774 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,586 | h | /* Name : Train.h
Project: CMSC 202 Project 3, Spring 2018
Project Design: Felipe Bastos
Desc: This file contains the classdef for the Train class. The Train
is the linked list in this project. The Car class is the individual nodes.
*/
#ifndef TRAIN_H
#define TRAIN_H
#include "Car.h"
class ... | [
"cvantie1@linux6.gl.umbc.edu"
] | cvantie1@linux6.gl.umbc.edu |
2c2c07d0bd7b9db640b6c80b3348d0c67579379b | 0b66399ced2c7b50f5ee53c81562dab79b33ed67 | /MyCardDemo2/Generated Files/winrt/impl/Windows.UI.Xaml.Interop.0.h | dce182cb16bd70b9f55dd0c741134103ceee2094 | [] | no_license | wcj233/MyCardDemo_winrt | 091bab68e175ef15592ec577238fddd18f98d011 | 194aabb320949e7b7fcffec0f5b47a3a0ab87c58 | refs/heads/master | 2020-06-23T09:13:13.642856 | 2019-07-24T07:20:21 | 2019-07-24T07:20:21 | 198,580,469 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,919 | h | // WARNING: Please don't edit this file. It was generated by C++/WinRT v2.0.190506.1
#ifndef WINRT_Windows_UI_Xaml_Interop_0_H
#define WINRT_Windows_UI_Xaml_Interop_0_H
namespace winrt::Windows::Foundation
{
struct EventRegistrationToken;
}
namespace winrt::Windows::UI::Xaml::Interop
{
enum class NotifyCollect... | [
"v-faywan@microsoft.com"
] | v-faywan@microsoft.com |
57161c7b75ebe213450c23c260d829b01424a253 | b5724bd5bbd632158ce1e9f8ccd8785c726000b0 | /engine/src/Scene/Entity.cpp | 850b6c7c6d25a601af76c905b26ccbd0f721f7f5 | [] | no_license | Rexagon/360vr | daa43e08751925bf5858410e0465a151f6a62dfb | 6bd1b9d58669ab0bba0fd9eb01173c1aea91114c | refs/heads/master | 2020-04-09T04:38:36.953665 | 2019-03-10T20:56:22 | 2019-03-10T20:56:22 | 160,030,554 | 4 | 0 | null | 2019-03-07T10:01:57 | 2018-12-02T09:08:33 | C++ | UTF-8 | C++ | false | false | 402 | cpp | #include "Scene/Entity.h"
void ej::Entity::setName(const std::string& name)
{
m_name = name;
}
const std::string& ej::Entity::getName() const
{
return m_name;
}
void ej::Entity::setTransform(const Transform& transform)
{
m_transform = transform;
}
ej::Transform& ej::Entity::getTransform()
{
return m_transform;
... | [
"reide740@gmail.com"
] | reide740@gmail.com |
a2be82d4e6bb4a3b6d81010f9a7720a9af412e20 | f99c5f5edb84136d7fc5986f6dbe8aa23b187208 | /SciColorerV8/scimessages.inl | 66c4d3e1bba68fa331886308ea2e859afb44c7ab | [] | no_license | artbear/snegopat_scripts | 8122caf9ff0265dbdf5e2b09896faa99b9afc8ab | ddf2d35d007b11df77f7d3ad068758bb289bb611 | refs/heads/master | 2020-05-19T16:06:20.192274 | 2014-04-23T15:47:30 | 2014-04-23T15:47:30 | 18,855,623 | 3 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 17,604 | inl | SCI_START 2000
SCI_OPTIONAL_START 3000
SCI_LEXER_START 4000
SCI_ADDTEXT 2001
SCI_ADDSTYLEDTEXT 2002
SCI_INSERTTEXT 2003
SCI_CLEARALL 2004
SCI_CLEARDOCUMENTSTYLE 2005
SCI_GETLENGTH 2006
SCI_GETCHARAT 2007
SCI_GETCURRENTPOS 2008
SCI_GETANCHOR 2009
SCI_GETSTYLEAT 2010
SCI_REDO 2011
SCI_SETUNDOCOLLECTION 201... | [
"metaeditor"
] | metaeditor |
5a85486d68648fa75493b50200a5e5df20303866 | 8bd82f8b2a202970fb9024241757011586a0ec6d | /project4/ackModule.cc | 6659d85b7dca5e5e8f7a4d7e1b3d8287738ae9ca | [] | no_license | wuyangzhang/ECE544-CommunicationNetworkII | 86ffb4423295e4680156e206b16149d5994b3ce8 | 7b8a4964724ca88e28973b5b34444ca12227d68f | refs/heads/master | 2022-12-15T15:43:25.664116 | 2020-09-16T18:32:18 | 2020-09-16T18:32:18 | 52,574,565 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,071 | cc | /**
* Created by Wuyang on 4/19/16.
* Copyright © 2016 Wuyang. All rights reserved.
* Final Project of ECE 544 Communication Network II 2016 Spring
*/
#include <click/config.h>
#include <click/confparse.hh>
#include <click/error.hh>
#include <click/timer.hh>
#include <click/packet.hh>
#include "packet.hh"
#inclu... | [
"qingshanyouyou@gmail.com"
] | qingshanyouyou@gmail.com |
8e8c60de068edf62e86c82d13b31056ff74bf22a | 69cc9eca8a1bd26e07f54c8c9e177d9e29dd29e8 | /myDrawingTool/src/ofApp.cpp | 6abd9763b6306686860bb123f8fb8d039e8eb43f | [] | no_license | katiesmillie/openFramworks_sfpc | 5158a1240b2003cff59ac57dbf0a98aa21b64dc8 | 280630b21adaf978b0a5a3610dad8f57c0f446c3 | refs/heads/master | 2021-03-12T22:35:41.267545 | 2015-05-19T14:07:50 | 2015-05-19T14:07:50 | 33,367,487 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,199 | cpp | #include "ofApp.h"
//--------------------------------------------------------------
void ofApp::setup(){
ofBackground(0);
ofSetBackgroundAuto(false);
ofSetCircleResolution(100);
ofEnableAlphaBlending();
}
//--------------------------------------------------------------
void ofApp::update(){
... | [
"katiesmillie@gmail.com"
] | katiesmillie@gmail.com |
abbcb6c950addbf1915a5c0f58f40fec71d36066 | 531ae49ca54812b82c06431a6640ec4840dd17ed | /atcoder/ABC/105/b.cpp | 78b250fdea63a9bc9fa440d3da6475982b54bd2d | [] | no_license | at0x0ft/CompetitiveProgramming | 09ec53253153c44dc77049c0fc9eb93958822dbd | d8642135da45647291774f7aaf8a0b313f28c9d3 | refs/heads/master | 2021-07-12T03:04:58.505411 | 2020-06-14T15:02:36 | 2020-06-14T15:02:36 | 139,337,982 | 0 | 0 | null | 2019-11-16T11:42:46 | 2018-07-01T14:57:29 | C++ | UTF-8 | C++ | false | false | 295 | cpp | #include <bits/stdc++.h>
using namespace std;
int main() {
int n;
scanf("%d", &n);
if(n % 2 != 0) n -= 7;
while(n >= 0) {
if(n % 4 == 0) {
printf("Yes\n");
break;
}
n -= 14;
}
if(n < 0) printf("No\n");
return 0;
} | [
"at0p0ft@outlook.com"
] | at0p0ft@outlook.com |
85fd872da6f88e9f8145b6b59f9c13f7e3dc5121 | 36c3b70b7dbdc4158d6db6bb19279b1e91a3800e | /data/tplcache/ca715f7d181f49aac1c3f6f6a983b99f.inc | a64e12a67b677f285d89cdfa44762d468b9a4449 | [] | no_license | heaven1998/zhimeng | 854182aa60555165e91b903b2fec21164d16a078 | 465ed4298156e32a8071f0dd0f81b4bb0a8ab876 | refs/heads/master | 2020-04-25T15:25:08.466604 | 2019-02-27T08:46:55 | 2019-02-27T08:46:55 | 172,878,244 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 238 | inc | {dede:pagestyle maxwidth='800' pagepicnum='12' ddmaxwidth='200' row='3' col='4' value='2'/}
{dede:img ddimg='/uploads/allimg/190123/1-1Z123130625.jpg' text='' width='500' height='326'} /uploads/allimg/190123/1-1Z123130625.jpg {/dede:img}
| [
"917015746@qq.com"
] | 917015746@qq.com |
b98024b81dc6d0ca1848e0d30f285f425851b0c3 | 62c45c77da533177b2cf234733cf34f18dfaf94a | /elang/base/atomic_string_test.cc | f555cc6a661d394cc4c1917fdb9e92a526f44121 | [
"Apache-2.0"
] | permissive | eval1749/elang | ff76d95c0000ed1d61434b387d319f950f68509a | 5208b386ba3a3e866a5c0f0271280f79f9aac8c4 | refs/heads/master | 2020-04-29T17:44:53.579355 | 2015-12-11T18:51:34 | 2015-12-11T18:51:34 | 28,262,329 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 865 | cc | // Copyright 2014-2015 Project Vogue. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "elang/base/atomic_string.h"
#include "elang/base/atomic_string_factory.h"
#include "gtest/gtest.h"
namespace elang {
namespace {
TEST... | [
"eval1749@gmail.com"
] | eval1749@gmail.com |
f8074240b787c3296ddb8d3d0953a58673f2041c | 7925aeb2fda7314a487774e82f2bea63ae75e0d3 | /chapter_nine/practise9-31.cpp | 97a507a411708d488bd4b5f12881f5445f440def | [] | no_license | zkx349113864/c-_primer_5th | ab3dcb431c7c4634c3f83af1e13affc3523d73ed | b3fd7c3d3dd9f57b8e8033e79d09876edb5e0293 | refs/heads/master | 2022-02-18T22:55:05.898786 | 2019-10-07T11:53:24 | 2019-10-07T11:53:24 | 192,095,363 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 659 | cpp | #include <iostream>
#include <vector>
#include <string>
#include <list>
#include <forward_list>
using std::cin;
using std::cout; using std::endl;
using std::vector;
using std::string;
using std::list;
using std::forward_list;
using std::advance;
int main()
{
list<int> vi = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
auto ... | [
"zhang349113864@gmail.com"
] | zhang349113864@gmail.com |
42b27333dc1a488803a3be3f1f6e49c33e190c7e | 55aaa0a5abaaf4a1792a232fc9081d4205b5b0ed | /gameplaymessage.hpp | 9c71e72df6b2436340cff43e92d06075b6610452 | [] | no_license | ashev-dev/gpacman_client | 71a3528d31b6135e7e1e9a094f46e2fa4b06688c | 8f760c8c3f2e571de9db2a36ded874a3cde97896 | refs/heads/master | 2023-02-12T16:53:40.610024 | 2021-01-11T16:09:37 | 2021-01-11T16:09:37 | 327,401,653 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 755 | hpp | #ifndef GAMEPLAYMESSAGE_HPP
#define GAMEPLAYMESSAGE_HPP
#include <SFML/Graphics.hpp>
class GamePlayMessage {
public:
GamePlayMessage(sf::Vector2u p);
GamePlayMessage(sf::Vector2u p, bool food_del);
GamePlayMessage(){};
std::string to_string() { return login_ + message_string; };
void from_string(std::strin... | [
"mail@ashev.ru"
] | mail@ashev.ru |
fb7fcde0b81abbdd90b9e57dc8415ecb1c6deed6 | 0aafb315f9f71723e54779c69c937dc7eaa5e3be | /candles.cpp | c342f2ffcb94ce439c6cb672f4fa38689c02f7a4 | [] | no_license | tapanprakasht/Codeforce-solutions | 9d7b0bf64cbcf4e3dfacb3d4191371f64a563b6c | f4000e9bc02ac3f12c6dd7eed1a1387ff16da928 | refs/heads/master | 2021-01-21T13:11:33.149287 | 2018-02-24T15:24:42 | 2018-02-24T15:24:42 | 54,405,054 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 193 | cpp | #include<iostream>
using namespace std;
int main(int argc, const char *argv[])
{
int a,b,count;
cin>>a>>b;
count=a;
while(a>=1)
{
a=a/b;
count+=a;
}
cout<<count<<"\n";
return 0;
}
| [
"tapanprakasht@gmail.com"
] | tapanprakasht@gmail.com |
dd50d365bb2437418f06146bd1f2555552d23171 | 38c10c01007624cd2056884f25e0d6ab85442194 | /blimp/net/test_common.cc | 989d028ba6a7449c2c249f7482ee44ad1e9046ba | [
"BSD-3-Clause"
] | permissive | zenoalbisser/chromium | 6ecf37b6c030c84f1b26282bc4ef95769c62a9b2 | e71f21b9b4b9b839f5093301974a45545dad2691 | refs/heads/master | 2022-12-25T14:23:18.568575 | 2016-07-14T21:49:52 | 2016-07-23T08:02:51 | 63,980,627 | 0 | 2 | BSD-3-Clause | 2022-12-12T12:43:41 | 2016-07-22T20:14:04 | null | UTF-8 | C++ | false | false | 923 | 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 "blimp/net/test_common.h"
#include <string>
#include "base/sys_byteorder.h"
#include "blimp/net/common.h"
#include "net/base/io_buffer.h"
name... | [
"zeno.albisser@hemispherian.com"
] | zeno.albisser@hemispherian.com |
05f9b28d5f0875c3c8c5bf747bc7aeecd832c9c2 | 5265aba15263abb4946f9b075414bef0a48434d2 | /test/interview/designpatterns/src/smart_ptr/src/test_smart_ptr/common/smart_ptr.h | 9f76e1d73f84d9b85478946d8e47e3ca6e9eccbd | [] | no_license | ircc/test-code-backup | 441bc10126d61802c6754fff2aa2ab26ca7df8ab | 51d148ee0beda2be78ee7f7ad556ab8b6410304f | refs/heads/master | 2021-01-10T09:48:35.131406 | 2018-07-11T23:49:39 | 2018-07-11T23:49:39 | 46,389,344 | 1 | 1 | null | null | null | null | GB18030 | C++ | false | false | 4,933 | h | //file smart_ptr.h
#ifndef __SMART_PTR_H__
#define __SMART_PTR_H__
/***************************************************************************************************
* 1、 File : smart_ptr.h
* 2、 Version : *.*
* 3、 Description: 智能指针类
* 4、 Author : ray
* 5、 Created : 15/6/24 15:54:11
* 6、 History : ... | [
"happyhaoyun@qq.com"
] | happyhaoyun@qq.com |
d70200279ba99e9758edd18bdda032f375775adc | b47774037606c1188cf3898a5ce8e8128da7ae7c | /jni/v8bindings/util3d/V8ArrayType.h | c525c6c26fc3ce82d7d2fb19062af6cb1628b345 | [] | no_license | liuyouzhao/conanx | 74ab0ac803de25883158939d4fccc48c93295760 | 84240f1da8b51f5ed6264d95ce54d6aac65fccb3 | refs/heads/master | 2021-01-21T17:13:10.109486 | 2017-08-26T14:28:06 | 2017-08-26T14:28:06 | 91,940,312 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,165 | h | #ifndef V8ARRAYTYPE_H
#define V8ARRAYTYPE_H
#include "defines.h"
#include "V8ArrayBufferView.h"
#include "V8ArrayBuffer.h"
#include <v8.h>
#undef LOG_TAG
#define LOG_TAG "V8ArrayType"
namespace DCanvas
{
template <typename T>
class V8ArrayType: public ObjectWrap
{
public:
static void DoNothing(v8::Local<v8::Strin... | [
"liuyouzhao@hotmail.com"
] | liuyouzhao@hotmail.com |
f8e4d092c20a3d86bd586ec999ff7c32108f5631 | 3ff1fe3888e34cd3576d91319bf0f08ca955940f | /vod/src/v20180717/model/DescribeRebuildMediaTemplatesRequest.cpp | d91936c72bc65bb6545532603c9fc0fedc5d3d3f | [
"Apache-2.0"
] | permissive | TencentCloud/tencentcloud-sdk-cpp | 9f5df8220eaaf72f7eaee07b2ede94f89313651f | 42a76b812b81d1b52ec6a217fafc8faa135e06ca | refs/heads/master | 2023-08-30T03:22:45.269556 | 2023-08-30T00:45:39 | 2023-08-30T00:45:39 | 188,991,963 | 55 | 37 | Apache-2.0 | 2023-08-17T03:13:20 | 2019-05-28T08:56:08 | C++ | UTF-8 | C++ | false | false | 4,659 | cpp | /*
* Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. 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
... | [
"tencentcloudapi@tencent.com"
] | tencentcloudapi@tencent.com |
c9cb8e8349ca2c29501d9eca8f623e13c6c5bd15 | e64be2479c3e002d245877c0c72fd775b97dd2e0 | /Panel/NetSpeedPanel.cpp | fccacffa0400f4bbb116041b18de103d8676d009 | [] | no_license | Diandian-2250/Qt-CustomControls | 0a1bc63bd7ecc130187b3e93bca8cadba57b865f | b01871cb7192630159e6d163f047b83e55cc688a | refs/heads/master | 2022-12-12T09:11:18.257296 | 2020-08-31T05:19:56 | 2020-08-31T05:19:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,372 | cpp | #include "NetSpeedPanel.h"
#include<QResizeEvent>
#include <QPainter>
#include <math.h>
#include <qmath.h>
#include <qDebug>
#include "ui_NetSpeedPanel.h"
#pragma execution_character_set("utf-8")
NetSpeedPanel::NetSpeedPanel(QWidget *parent)
: QWidget(parent)
{
ui = new Ui::NetSpeedPanel;
ui->setupUi(this);
}
NetS... | [
"405126907@qq.com"
] | 405126907@qq.com |
0bcfc31b8f14e0c33500c4d8caf668979b4eb574 | 1071479d426e2971f509a655b1b5f328760de373 | /deps/usr/include/opencv2/core/base.hpp | b319df6f3843926ec8e194512fd692ccd2987673 | [
"MIT"
] | permissive | clynamen/OpenCV.jl | 63d4c101e084cdca95e18eea897b129931cb92bc | ec92601a74b849875f3fe0fddbfe664d6166db6f | refs/heads/master | 2020-05-24T21:39:35.215649 | 2019-05-19T21:28:43 | 2019-05-19T21:28:43 | 187,479,976 | 1 | 0 | NOASSERTION | 2019-05-19T13:25:47 | 2019-05-19T13:25:47 | null | UTF-8 | C++ | false | false | 26,659 | hpp | /*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, instal... | [
"mxsstr93@gmail.com"
] | mxsstr93@gmail.com |
51e21febe791b709746cd6c57320fae4a8c8a1a0 | ed997b3a8723cc9e77787c1d868f9300b0097473 | /libs/math/test/test_ellint_1.hpp | 3d83d01be13f6a524060c28ccf9c54adabd3b982 | [
"BSL-1.0"
] | permissive | juslee/boost-svn | 7ddb99e2046e5153e7cb5680575588a9aa8c79b2 | 6d5a03c1f5ed3e2b23bd0f3ad98d13ff33d4dcbb | refs/heads/master | 2023-04-13T11:00:16.289416 | 2012-11-16T11:14:39 | 2012-11-16T11:14:39 | 6,734,455 | 0 | 0 | BSL-1.0 | 2023-04-03T23:13:08 | 2012-11-17T11:21:17 | C++ | UTF-8 | C++ | false | false | 5,732 | hpp | // Copyright John Maddock 2006.
// Copyright Paul A. Bristow 2007, 2009
// Use, modification and distribution are 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)
#ifdef _MSC_VER
# pragma warning(disable : 4756) // ove... | [
"johnmaddock@b8fc166d-592f-0410-95f2-cb63ce0dd405"
] | johnmaddock@b8fc166d-592f-0410-95f2-cb63ce0dd405 |
c7320e7739dabaa680e33f2814530280c9804598 | ca99eb7b01bf1fb400adc3ae3c16d5a29416e8a4 | /snapshotgenerator/cmake-build/generated_src/improbable/vector3.cc | 68b9ba81a59250cbe42218943440c688bec9943c | [] | no_license | JordanKeiTaylor/cpp_tutorial | 100f0eb95d204fa76ed3144447d651da8baaa2a1 | a11648014f40779eb0f69f48819413794910d3c7 | refs/heads/master | 2020-05-19T15:29:39.147125 | 2019-05-21T15:17:38 | 2019-05-21T15:17:38 | 185,086,036 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 4,198 | cc | // Generated by SpatialOS codegen. DO NOT EDIT!
// source: improbable/vector3.schema
#include "improbable/vector3.h"
namespace improbable {
// Serialization helpers.
//----------------------------------------------------------------
namespace detail {
void Write_Vector3d(
const ::improbable::Vector3d& data, ::w... | [
"jordan@improbable.io"
] | jordan@improbable.io |
88f9231bc0d3cdbcb1b519490a3e93c5de07265f | 50ccfe18a118a96eadeafb124bd56f3203047669 | /CipherMaker/PlumCrypt.h | 6ff39c5e76fed4e6e6650925c807338a10bcd2f5 | [] | no_license | Alopex6414/CipherMaker | 2e76148360145fd2ded9979269afe3068ab774da | 4bbaf9b57acc7bc32d6dfa3ec1eb64c258626304 | refs/heads/master | 2018-11-24T01:35:09.240336 | 2018-09-04T15:23:03 | 2018-09-04T15:23:03 | 116,478,352 | 0 | 1 | null | null | null | null | GB18030 | C++ | false | false | 2,212 | h | /*
* COPYRIGHT NOTICE
* Copyright(c) 2017, Team Shanghai Dream Equinox
* All rights reserved.
*
* @file PlumCrypt.h
* @brief This Program is PlumCrypt DLL Project.
* @author Alopex/Helium
* @version v1.01a
* @date 2017-12-13 v1.00a alopex Create Project.
* @date 2017-12-17 v1.01a alopex Add Function EnCr... | [
"1029535012@qq.com"
] | 1029535012@qq.com |
03bc07a2b0605c170406cf30c6c539c2574212ef | cee9cc495bf57f4cc46cac103720a9362e45a884 | /PRACTICA1_E3/src/GLApplication.cpp | 5c93b398622f18a8fa87937d1063991da3fa1f90 | [] | no_license | Linkaacm/DIMyRV_CMAA | 60e063da7ca63016e6daa02ee96b4b469f17706c | 240701d8a1ff5a2a0840c9ae20304766926f668e | refs/heads/master | 2020-05-26T14:07:22.036114 | 2017-05-07T01:45:30 | 2017-05-07T01:45:30 | 82,482,053 | 0 | 0 | null | null | null | null | WINDOWS-1250 | C++ | false | false | 7,001 | cpp | /*
* GLApplication.cpp
*
* Created on: 06/Marzo/2017
* Author: Linkaacm
*/
#include "Headers/GLApplication.h"
// Shaders
const GLchar* vertexShaderSource = "#version 330 core\n"
"layout (location = 0) in vec3 position;\n"
"void main()\n"
"{\n"
"gl_Position = vec4(position.x, position.y, position.z,... | [
"link.sairento.hiru.29@gmail.com"
] | link.sairento.hiru.29@gmail.com |
8868546fc369fa48eaa4e2319fd5a682dbad8c37 | ccd7fc7f3fe4a65eeb83de76453dfa75704a9a4b | /lab9_3.cpp | 649a7380a3e47de13875c7849381bf1cef4ac2ff | [] | no_license | iambaangkok/CPE102-Lab9 | 379302161a6e626c081da798795436fe4e26398c | a8ff2376c2fd75c0efd6a1f42e5b89ccd2c4037c | refs/heads/master | 2023-02-11T01:37:44.067139 | 2021-01-08T08:09:11 | 2021-01-08T08:09:11 | 327,822,741 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 898 | cpp | #include<iostream>
#include<fstream>
#include<string>
#include<cmath>
#include<iomanip>
using namespace std;
int main (){
ifstream inputFile;
inputFile.open("score.txt");
string input;
long long int count = 0;
double mean = 0, sd = 0;
while(getline(inputFile,input)){
double x = stod(input);
... | [
"iambaangkok@gmail.com"
] | iambaangkok@gmail.com |
d9adedd2fd0bb7f23f1515a62bcbd2fb53db7788 | a5f00b06f30ac99e2e65ea6ec5a2f03ddba388d4 | /About.cpp | ddb49af578838b4ff6172292cac53a8a0d3d732d | [] | no_license | synthet/SyntheticEvolution | 8a29ee095e38cc7b3197dd22d76a7fe3055e2dce | 68f3280662741c5fc046c8523bc4928772f87113 | refs/heads/master | 2020-03-24T17:49:27.420083 | 2018-07-30T12:36:13 | 2018-07-30T12:36:13 | 142,872,913 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 613 | cpp | //---------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "About.h"
//---------------------------------------------------------------------
#pragma resource "*.dfm"
TAboutBox *AboutBox;
//---------------------------------------------------------------------
__f... | [
"dmn.synthet@gmail.com"
] | dmn.synthet@gmail.com |
4494ecbaedd93190555c68d0c6f1de6a27f1b0d5 | 98157b3124db71ca0ffe4e77060f25503aa7617f | /icpc/seerc2018/i.cpp | f4a15124f9c4898792f1c81124355eeacfaf9462 | [] | no_license | wiwitrifai/competitive-programming | c4130004cd32ae857a7a1e8d670484e236073741 | f4b0044182f1d9280841c01e7eca4ad882875bca | refs/heads/master | 2022-10-24T05:31:46.176752 | 2022-09-02T07:08:05 | 2022-09-02T07:08:35 | 59,357,984 | 37 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 1,177 | cpp | #include <bits/stdc++.h>
using namespace std;
const int N = 105;
int g[N][N];
int din[N], p[N];
long long dp[N];
int main() {
int n, m;
scanf("%d %d", &n, &m);
for (int i = 0; i < m; ++i) {
int u, v;
scanf("%d %d", &u, &v);
--u, --v;
if (u > v) swap(u, v);
++din[u];
g[v][u] = 1;
}
... | [
"wiwitrifai@gmail.com"
] | wiwitrifai@gmail.com |
e4d9a63e5357d39c82b7843b96cea79c2616d6d1 | 070c3c7e1895b9fd92307b9c03eb09d6c5e56f00 | /LeetCode/Candy.cpp | 118b914df64d3fd7578dd8fe765c3a5111f8fefe | [] | no_license | zhgw01/LeetCode | db79bcc678cd50f4324a9cfb9b80534c21a7722d | a354d9dde4e6c036b230900fe4645e57e4293152 | refs/heads/master | 2021-01-01T18:17:00.183128 | 2015-03-27T05:29:01 | 2015-03-27T05:29:01 | 12,109,947 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 780 | cpp | //
// Candy.cpp
// LeetCode
//
// Created by Zhang Gongwei on 11/18/13.
// Copyright (c) 2013 Zhang Gongwei. All rights reserved.
//
#include "Candy.h"
#include <algorithm>
using namespace std;
void Candy::run()
{
cout<<"Run Candy"<<endl;
}
void Candy::test1()
{
}
int Candy::candy(vector<int> &ratings)
{
... | [
"zhgw01@gmail.com"
] | zhgw01@gmail.com |
217617b38aed6aef363d0849c96cf0ecd4e304a2 | 284abca86eefcbf89651c1cd5acc820c096da021 | /thermophysicalModelsCO2/basic/fluidThermo/fluidThermo.H | 8f3dd6ce60c15484faa6b95225421aa8ecd72de8 | [] | no_license | yufang67/rhoCentralFoam-CO2 | d8329e06747c34633a82653b44c553710c06d092 | 5aa4b1a9211ff9f1dcf7bf4153032f969d30a6b1 | refs/heads/master | 2022-09-03T12:13:10.373330 | 2020-05-15T16:59:14 | 2020-05-15T16:59:14 | 264,237,273 | 8 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,799 | h | /*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2012-2015 OpenFOAM Foundation
\\/ M anipulation |
--------... | [
"fangyu67@gmail.com"
] | fangyu67@gmail.com |
d130e0a3742a221d708b4f05be84248cab5d621e | 14582f8c74c28d346399f877b9957d0332ba1c3c | /tags/pstade_2007/pstade/egg/mono.hpp | adeff19698b9d72bf84583b9ce147161960c6912 | [
"BSL-1.0"
] | permissive | svn2github/p-stade | c7b421be9eeb8327ddd04d3cb36822ba1331a43e | 909b46567aa203d960fe76055adafc3fdc48e8a5 | refs/heads/master | 2016-09-05T22:14:09.460711 | 2014-08-22T08:16:11 | 2014-08-22T08:16:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,773 | hpp | #ifndef BOOST_PP_IS_ITERATING
#ifndef PSTADE_EGG_MONO_HPP
#define PSTADE_EGG_MONO_HPP
#include "./detail/prefix.hpp"
// PStade.Egg
//
// Copyright Shunsuke Sogame 2007-2008.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boos... | [
"mb2sync@350e9bb6-6311-0410-90c3-be67731b76ec"
] | mb2sync@350e9bb6-6311-0410-90c3-be67731b76ec |
58fcaca0b2f719f80e460a3d8377576dc40049c4 | fb7efe44f4d9f30d623f880d0eb620f3a81f0fbd | /extensions/browser/guest_view/web_view/web_ui/web_ui_url_fetcher.h | 4ca95a3bcac225d0219d65120a9d30f477100997 | [
"BSD-3-Clause"
] | permissive | wzyy2/chromium-browser | 2644b0daf58f8b3caee8a6c09a2b448b2dfe059c | eb905f00a0f7e141e8d6c89be8fb26192a88c4b7 | refs/heads/master | 2022-11-23T20:25:08.120045 | 2018-01-16T06:41:26 | 2018-01-16T06:41:26 | 117,618,467 | 3 | 2 | BSD-3-Clause | 2022-11-20T22:03:57 | 2018-01-16T02:09:10 | null | UTF-8 | C++ | false | false | 1,718 | h | // 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.
#ifndef EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_UI_WEB_UI_URL_FETCHER_H_
#define EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_UI_WEB_UI_URL_FETCHER_H_
#... | [
"jacob-chen@iotwrt.com"
] | jacob-chen@iotwrt.com |
3da6eeadbd29fa1be3e286cbf25e5c2efedeb386 | 4a9eebc1f89290a43fa69d96c7a798940a9bbf25 | /MsmqJava/MsmqQueueNativeMethods.cpp | eedb13fb1ad9e3a687cc7bf5bac8b6073d21a96e | [
"MS-PL"
] | permissive | mhjorth/MsmqJava | ee29bcf62026f21f4d40c1e9386f6f94596e6af5 | a7cc7fc486d62bbc7150ca93c99f850679b23858 | refs/heads/master | 2020-03-26T14:34:53.014919 | 2018-11-29T14:43:23 | 2018-11-29T14:43:23 | 144,994,834 | 0 | 0 | MS-PL | 2018-08-16T13:54:39 | 2018-08-16T13:54:39 | null | UTF-8 | C++ | false | false | 14,557 | cpp | //
// MsmqQueueNativeMethods.cpp
// ------------------------------------------------------------------
//
// Copyright (c) 2006-2010 Dino Chiesa.
// All rights reserved.
//
// This code module is part of MsmqJava, a JNI library that provides
// access to MSMQ for Java on Windows.
//
// ---------------------------------... | [
"aconde@ikerlan.es"
] | aconde@ikerlan.es |
867bf57bc22310a92e4996e8f16344b180f07945 | 83cf10d3fe5fc252c015ce808348355e25973274 | /source/matrix.h | 3b315dba6745e0057ed87af1a14898ddcca94054 | [] | no_license | Chirurgus/math | 3422b2c327ab1697e585ba104694a84b90bab2f5 | f21ae6145d3ae4c94548cdf7bbf8d0d7e1b3ed23 | refs/heads/master | 2021-01-10T18:17:10.255993 | 2016-12-03T17:53:16 | 2016-12-03T17:53:16 | 47,939,440 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,667 | h | #ifndef GUARD_MATRIX_H
#define GUARD_MATRIX_H
#include <initializer_list>
template<class Ty> class Matrix {
public:
typedef unsigned size_type;
/*Matrix Default Constructor*/
Matrix<Ty>() : Matrix<Ty>(1, 1) { }
/*Matrix Constructor, taking _height(ht) and _width(wd) as arguments*/
Matrix<Ty>(size_type ht, siz... | [
"sasha.sashaxl@gmail.com"
] | sasha.sashaxl@gmail.com |
8fb6e1d4a720589d43e4a108bce9d8df9fd29960 | 4adf8d064c33e7498b0e5baaf6767c30261cb71b | /totalProblem(CN)/203.移除链表元素.cpp | 2253b40d5b384ed78890ba77f497f9c91bc901ac | [] | no_license | codingClaire/leetcode | 0f679b526c14083ccf6d35937e5d845c9fa27f71 | 45fd500d2e2f52df0adc9d47ccc9fd29993dbef1 | refs/heads/main | 2023-05-25T12:34:27.952866 | 2023-05-20T15:09:02 | 2023-05-20T15:09:02 | 148,796,605 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,291 | cpp | /*
* @lc app=leetcode.cn id=203 lang=cpp
*
* [203] 移除链表元素
*/
// @lc code=start
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next)... | [
"suyueyinyin@126.com"
] | suyueyinyin@126.com |
3b58ae716f0290f7070cf5cfa350a1026ceca12c | b65982b9f43db47ac6a7b055d0d2eebad10a1597 | /CSES-Problem-master/Introductory Problems/cses-07.cpp | 7dff5079b0df837842731d0501565957a2af1c59 | [] | no_license | HarshitVerma1/Competitive_Coding_Study_Material | 1a419f3a603e65e523103216aecab688a0203604 | 10657c26197174070d8767ddc1c0e640a672d3d0 | refs/heads/main | 2023-07-27T20:49:22.127595 | 2021-09-03T18:01:46 | 2021-09-03T18:01:46 | 335,115,275 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,426 | cpp | #include <iostream>
#include <chrono>
using namespace std;
int X[8] = { 2, 1, -1, -2, -2, -1, 1, 2 };
int Y[8] = { 1, 2, 2, 1, -1, -2, -2, -1 };
bool isValid(int a,int b,int n){
if(a < 1 or a > n){
return false;
}
if(b < 1 or b > n){
return false;
}
return true;
}
void solve(int i... | [
"harshitverma14366@gmail.com"
] | harshitverma14366@gmail.com |
b5df4a7f1c158ebbd6b170bbcecd8cabf48478c8 | 34790bc33a06e72656fd428008f055f6bdfa40e1 | /Fujie's_class/basic of C/1526050-repo92.cpp | bf962dd8749545a9af73ef94405fbad6c0cca314 | [] | no_license | HirokiKomiya/FirstTime | ef2d304041b0ef754ac70c3e29be00b6afb042d9 | d00aa7b3809df655ce76fe634d339ba53ebd6bd3 | refs/heads/master | 2021-01-15T22:13:39.813242 | 2017-08-10T06:45:00 | 2017-08-10T06:45:00 | 99,888,825 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 973 | cpp | #include <stdio.h>
int strcmp(char *,char*);
main(){
char str[100],ttr[100];
int c,i = 0;
printf("二つの文字列の辞書順を示します。\n前の文字列のほうが早ければ1、同じなら0、遅ければ-1と表示します。\n一つ目の文字列を入力してください。\n");
do{
str[i] = getchar();
}while(str[i++] != 0x0a);
i = 0;
printf("もう一つの文字列を入れてください。\n");
do{
ttr[i] = getchar();
}while(str[i++] ... | [
"komiya7@kf6.so-net.ne.jp"
] | komiya7@kf6.so-net.ne.jp |
027683801dfb1ce5d75d5c1b2d66673187eceeee | 7770cad6ac65cc4d7a6e1405530e95f40d86bf81 | /docker_test/communication_test/server.cpp | 5f76f4c60d4c31c338a034da576cf6dad9ffbf74 | [] | no_license | edwardramsey/docker_document | 702122bc41843959c20adfceeba5aca3624cf966 | 279bd91418665d9da570b45764f4818544227630 | refs/heads/master | 2021-01-19T07:02:38.242375 | 2016-02-26T07:50:53 | 2016-02-26T07:50:53 | 48,941,557 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,210 | cpp | #include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#define SERVER_PORT 4455
int main()
{
char *addr;
int listenfd, clientfd;
int new_fd;
struct sockaddr_in ser_addr;
listenfd = socket(AF_INET, SOCK_STREAM, 0); ... | [
"824854390@qq.com"
] | 824854390@qq.com |
11a3bda0d32ea797ec9f4f01d8e1473b4a1ef70d | 86f1c3025567a8b7c7ce4dc303448536bb864263 | /atom/include/atom/tables.hpp | b202194f02ef878e2d76075d7a2f4543844ddfe5 | [] | no_license | mrpeterperez/proton-boilerplate | 4154da12da77b79972003032ab01640fcb65b9ba | 9d48af817e2e84a3ae205e716c2593f08aac6730 | refs/heads/master | 2023-01-31T21:19:17.757464 | 2020-12-18T06:16:31 | 2020-12-18T06:16:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,054 | hpp | #pragma once
using namespace eosio;
using namespace std;
namespace proton {
/**
* External
*/
struct [[eosio::table, eosio::contract("eosio.system")]] delegated_bandwidth {
name from;
name to;
asset net_weight;
asset cpu_weight;
bool is_empty()const { r... | [
"syed.jafri2@ucalgary.ca"
] | syed.jafri2@ucalgary.ca |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.