blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0cdfcd374f39e6cb82bfd96204f5d697f5dd29ec | d9c1f9fd6353be7cd2eca1edcd5d15f7ef993d98 | /Qt5/include/QtQml/5.12.2/QtQml/private/qqmlpropertycachecreator_p.h | 6bee599c0aef0c5ff8ce8964431e23089b816667 | [] | no_license | LuxCoreRender/WindowsCompileDeps | f0e3cdba92880f5340ae9df18c6aa81779cbc2ea | f96d4b5a701679f3222385c1ac099aaf3f0e0be9 | refs/heads/master | 2021-12-28T20:20:19.752792 | 2021-11-25T16:21:17 | 2021-11-25T16:21:17 | 113,448,564 | 3 | 8 | null | 2019-11-06T09:41:07 | 2017-12-07T12:31:38 | C++ | UTF-8 | C++ | false | false | 36,114 | h | /****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the tools applications of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding valid co... | [
"35339386+acasta69@users.noreply.github.com"
] | 35339386+acasta69@users.noreply.github.com |
118936f95b1a192d8c95404c68c80e3f6b5f04f2 | b6273de390c64cf56ba009223dda3cd5f76412be | /GeeksForGeeks/strings/6_RomanNumerToInteger.cpp | f8e965fce82ed228c0bbaa53c335740524e1e4a2 | [] | no_license | SaiEashwarKS/RandomCodingProblems | daa08a73b622383bb338ed4d8ec9af736192be1b | 8b908408945617dc6b353a8eb75d16dcfa466bc1 | refs/heads/master | 2023-06-14T21:13:15.041972 | 2021-07-10T18:21:11 | 2021-07-10T18:21:11 | 290,248,532 | 0 | 1 | null | 2020-10-01T15:46:21 | 2020-08-25T15:12:13 | C | UTF-8 | C++ | false | false | 1,733 | cpp | #if 0
Given a string in roman no format (s) your task is to convert it to an integer . Various symbols and their values are given below.
I 1
V 5
X 10
L 50
C 100
D 500
M 1000
Example 1:
Input:
s = V
Output: 5
Example 2:
Input:
s = III
Output: 3
Your Task:
Complete the function romanToDecimal() which takes an string... | [
"noreply@github.com"
] | noreply@github.com |
a9f607d62bdf50c333e53cd73543e5d0e51ccbb1 | 13771efbe4bd2803f21b75c0edb621a0d68d0f6c | /완전탐색/연산자끼워넣기2_BF_15658.cpp | 5d4c0929999ab48ff59144627addae4e5982b4d2 | [] | no_license | Flare-k/Algorithm | f6e597bcb376d8c0f50e91556cadf2cceadd786c | 64ab13c5304712292c41a26a4347f010d70daf98 | refs/heads/master | 2023-04-08T21:05:08.130284 | 2023-04-03T13:57:01 | 2023-04-03T13:57:01 | 236,532,243 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 995 | cpp | #include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int n;
int arr[11];
int operate[4];
int sum;
int maxAns = -1000000000;
int minAns = 1000000000;
void go(int sum, int idx, int plus, int minus, int mult, int div) {
if (idx >= n) {
if (sum > maxAns)
maxAns = sum;
... | [
"rokkyw@naver.com"
] | rokkyw@naver.com |
d2bce32ec422f6132db8c3ee66397964e4040b26 | 4563ac48f177dc65ddcc94ffb0dc8e65bfc260eb | /140-Word-Break-II/solution.cpp | 846a14ce23a62a400fd99df84059471fe3ab9d6d | [] | no_license | lanbing510/LeetCode | f435ff1f7e22f0c0eab9cf3c4545502b8aa95407 | 751efdcecb0ca18ecde22a213b9fa39c01685eac | refs/heads/master | 2021-01-21T14:11:35.806452 | 2016-07-01T02:37:36 | 2016-07-01T02:37:36 | 57,301,924 | 0 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 1,398 | cpp | // O(n^2) O(n^2)
class Solution {
public:
// 动规
vector<string> wordBreak(string s, unordered_set<string>& wordDict) {
vector<vector<bool> > prev(s.length()+1,vector<bool>(s.length()));
vector<bool> f(s.size()+1);
f[0]=true;
for(int i=1;i<=s.size();++i){
for... | [
"xiaosonglan@gmail.com"
] | xiaosonglan@gmail.com |
4d287112455d9490f4a63c06659d8a5c55729717 | 3d643e50e304d3ffd3f697905e441556be377cfc | /ios/versioned-react-native/ABI35_0_0/ReactCommon/ABI35_0_0fabric/components/text/paragraph/ABI35_0_0ParagraphProps.h | dbbc9398b953d20c3ea576887e007f5bce1a1a7d | [
"BSD-3-Clause",
"MIT",
"Apache-2.0"
] | permissive | Qdigital/expo | 326c5c1c0167295c173f2388f078a2f1e73835c9 | 8865a523d754b2332ffb512096da4998c18c9822 | refs/heads/master | 2023-07-07T18:37:39.814195 | 2020-02-18T23:28:20 | 2020-02-18T23:28:20 | 241,549,344 | 1 | 0 | MIT | 2023-07-06T14:55:15 | 2020-02-19T06:28:39 | null | UTF-8 | C++ | false | false | 1,293 | h | /**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#pragma once
#include <limits>
#include <memory>
#include <ReactABI35_0_0/attributedstring/ParagraphAttributes.h>
#include <Reac... | [
"tomasz.sapeta@swmansion.com"
] | tomasz.sapeta@swmansion.com |
db499103642b2d30d60566df0c5ec1a7389b1501 | 2c5e22d9511f87cd14aa2ec0d11c2a1c26f17862 | /CIQ/linkedList/2.cc | 72fec6ed62c1a6e86f830993b95f0d238358f813 | [] | no_license | fang0099/Mr.Fundamental | 4fa4e290a8e396f761baa25e4a5373cc994c6773 | 979886ba4a140c0bc412b3f4f0c1be7a08879074 | refs/heads/master | 2020-06-03T10:00:30.246900 | 2014-09-08T16:13:41 | 2014-09-08T16:13:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 442 | cc | /*
* find last Kth element
*/
#include "List.h"
ListNode* findLastK(ListNode* head, int k)
{
if(k < 0)
throw std::runtime_error("invalid input");
ListNode *p1 = head, *p2 = head;
for(int i = 0; i< k; ++i)
{
if(p1 == NULL)
throw std::runtime_error("list is shorter than k");
... | [
"fang_yonghao@163.com"
] | fang_yonghao@163.com |
707cbe924881c920c6e321b02a5fac264ab600b6 | 6861ababd3572292d5d718b496f8e20e33cfa1e0 | /deps/asio/asio/detail/fd_set_adapter.hpp | 9c88fb1e0d35d465d8138b647146c912f3abac05 | [
"BSL-1.0"
] | permissive | tscmoo/tsc-bw | e6d973c425147f071102e0bc3d8b930b5292e5c7 | a9baf0a7775bdf44fafe2757526245950c6725dc | refs/heads/master | 2020-04-05T23:41:36.565984 | 2017-06-01T10:42:29 | 2017-06-01T10:42:29 | 28,708,148 | 39 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 941 | hpp | //
// detail/fd_set_adapter.hpp
// ~~~~~~~~~~~~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2016 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef ASIO_DETA... | [
"the.dengus@gmail.com"
] | the.dengus@gmail.com |
7f89a537858b43bd79327be15968f56bac841b76 | d1ba0c42c9c2f6c28ef780e4d080a803d26cddf2 | /Test/src/Test/TestCDVScrollbar.h | 82bb6082de69d13c1ce4e2ff47facde4a2ccd0c3 | [] | no_license | Synodiporos/TestC | 3889aebba67fa2de5d98436700ec7e2c70da74bd | ab021cf1370226d7df047b1e967afa55154cbcb5 | refs/heads/master | 2020-03-16T14:24:21.719390 | 2018-07-24T21:07:57 | 2018-07-24T21:07:57 | 132,715,552 | 0 | 0 | null | 2018-07-02T15:55:53 | 2018-05-09T07:03:02 | C++ | UTF-8 | C++ | false | false | 2,180 | h | /*
* TestCDVScrollbar.h
*
* Created on: 18 Ιουν 2018
* Author: Synodiporos
*/
#ifndef TEST_TESTCDVSCROLLBAR_H_
#define TEST_TESTCDVSCROLLBAR_H_
#include <iostream>
#include <ctime>
using namespace std;
#include "../CD/LCDConsole.h"
#include "../View/ViewAssets.h"
#include <string>
class Tes... | [
"Synodiporos@gmail.com"
] | Synodiporos@gmail.com |
d32a8d1a4372b87e6c932b37ff6e169094c84f19 | 364e5cd1ce6948183e6ebb38bd8f555511b54495 | /DesignPattern/Proxy/ProxyOrder/src/OrderProxy.cpp | 5462d2517bb368490857262e494aebe3cd9c8d3e | [] | no_license | danelumax/CPP_study | c38e37f0d2cebe4adccc65ad1064aa338913f044 | 22124f8d83d59e5b351f16983d638a821197b7ae | refs/heads/master | 2021-01-22T21:41:11.867311 | 2017-03-19T09:01:11 | 2017-03-19T09:01:11 | 85,462,945 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,536 | cpp | /*
* OrderProxy.cpp
*
* Created on: Oct 24, 2016
* Author: eliwech
*/
#include "OrderProxy.h"
OrderProxy::OrderProxy(OrderApi* realSubject)
: _order(realSubject)
{
}
OrderProxy::~OrderProxy()
{
}
int OrderProxy::getOrderNum()
{
return _order->getOrderNum();
}
std::string Orde... | [
"474198699@qq.com"
] | 474198699@qq.com |
eeeabd52b846cded453f71adfa42b355dad59fd3 | e4567a3ff64601ba050bb78d1b365b611161ffde | /day04/04_TCP/clientwidget.cpp | ca31d9e0483329e12cc863ba6d7fa35197350318 | [] | no_license | MisakiFx/QtCode | 383afdb2c09f9c15edb23e44033b4c5e6a7f410d | bc81276599c6c8b39cd4ada40e5bfb3facef1e64 | refs/heads/master | 2020-07-09T18:26:16.630194 | 2020-03-19T13:52:03 | 2020-03-19T13:52:03 | 204,047,505 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,380 | cpp | #include "clientwidget.h"
#include "ui_clientwidget.h"
#include <QHostAddress>
ClientWidget::ClientWidget(QWidget *parent) :
QWidget(parent),
ui(new Ui::ClientWidget),
tcpSocket(nullptr)
{
ui->setupUi(this);
tcpSocket = new QTcpSocket(this);
connect(tcpSocket, &QTcpSocket::connected,
... | [
"1761607418@qq.com"
] | 1761607418@qq.com |
be71995224633b76184abb2dbd98e4e3d63a67f4 | cbee63d796a4fddc20fa844d05e14cad10def961 | /GxNetwork/Src/Network/NetworkRemoteEngine.cpp | 330fa43767af3f48e7d2b7e9f66b45da042dc086 | [] | no_license | Gletschr/GxNetwork | df179528894747b5766af12e747ab54144f0095d | 1b48d0c621358d34c05efb714330276676ef1e7e | refs/heads/master | 2020-04-08T22:23:54.896484 | 2018-11-30T07:33:55 | 2018-11-30T07:33:55 | 159,785,663 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 332 | cpp | #include "../../Include/Network/NetworkRemoteEngine.h"
namespace gx {
namespace network {
FRemoteEngine::FRemoteEngine(const FGuid& GUID)
: _GUID(GUID)
{
}
FRemoteEngine::~FRemoteEngine()
{
}
const FGuid& FRemoteEngine::GetGUID() const
{
return _GUID;
}
FBuffer& FRemoteEngine::GetEventsFrame()
{
return _eventsF... | [
"kostarevgi@gmail.com"
] | kostarevgi@gmail.com |
a5e7fe7b01503f9539a318e23a7591d953a4d6a1 | d7db098f4b1d1cd7d32952ebde8106e1f297252e | /AOJ/NTL_1_C.cpp | 645b25abe1e8bf224014a86ab2d4d0cca07706e1 | [] | no_license | monman53/online_judge | d1d3ce50f5a8a3364a259a78bb89980ce05b9419 | dec972d2b2b3922227d9eecaad607f1d9cc94434 | refs/heads/master | 2021-01-16T18:36:27.455888 | 2019-05-26T14:03:14 | 2019-05-26T14:03:14 | 25,679,069 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 690 | cpp | // header {{{
#include <bits/stdc++.h>
using namespace std;
// {U}{INT,LONG,LLONG}_{MAX,MIN}
#define ALPHABET (26)
#define INF INT_MAX
#define MOD (1000000007LL)
#define EPS (1e-10)
#define EQ(a, b) (abs((a)-(b)) < EPS)
using LL = long long;
int di[] = {0, -1, 0, 1};
int dj[] = {1, 0, ... | [
"monman.cs@gmail.com"
] | monman.cs@gmail.com |
b874b99b170038fb7c4934b4ec8d58cac0030499 | 85e7114ea63a080c1b9b0579e66c7a2d126cffec | /SDK/SoT_wsp_sea_rock_cluster_d_functions.cpp | 36105b18cfb277044e7d39115513f25dff665599 | [] | no_license | EO-Zanzo/SeaOfThieves-Hack | 97094307d943c2b8e2af071ba777a000cf1369c2 | d8e2a77b1553154e1d911a3e0c4e68ff1c02ee51 | refs/heads/master | 2020-04-02T14:18:24.844616 | 2018-10-24T15:02:43 | 2018-10-24T15:02:43 | 154,519,316 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 802 | cpp | // Sea of Thieves (1.2.6) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "SoT_wsp_sea_rock_cluster_d_parameters.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Functions
//---------------------------------------------------------------------------
/... | [
"zp2kshield@gmail.com"
] | zp2kshield@gmail.com |
7c6b6fb664d54173f5c64d0d0a19dbd8ad0b5e60 | 82192f5803998708fb9f820172d4f5264f5daefe | /NewGoBang2/NewGoBangTalkSer/socket_lib/tcplisten.cpp | 6a912e63710f8091f1d035eda451329e66b5933a | [] | no_license | a624762529/NewGoBang | f73fe3c41be42491eba48c36b6b6348b071de089 | 4e778e7d327f04fa7f7a9774fdb36deaba3cd1c3 | refs/heads/master | 2023-04-12T19:40:48.624576 | 2021-05-09T11:48:55 | 2021-05-09T11:48:55 | 262,213,454 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,723 | cpp | #include "tcplisten.h"
TcpListen::TcpListen(int port)
{
m_magic=CanUse;
struct sockaddr_in serv_addr;
socklen_t serv_len = sizeof(serv_addr);
// 创建套接字
lfd = socket(AF_INET, SOCK_STREAM, 0);
// 初始化服务器 sockaddr_in
memset(&serv_addr, 0, serv_len);
serv_addr.sin_family = AF_INET; ... | [
"44131092+a624762529@users.noreply.github.com"
] | 44131092+a624762529@users.noreply.github.com |
d0722ded87b90d13e2c72561d519183604c408cd | b5ec2a2253fb46337901df859cefce736f752656 | /src/stock/CoGet.hxx | 4c86c580b8d8ab41ed2add12ccd1f7ba17bc6988 | [] | no_license | August2111/libcommon | bf55a16976db74f0d8534bd4b44a59aca4dfad96 | f79e3c4c2eaa395de6c29945c6fa9b76fb6a2a0b | refs/heads/master | 2023-04-17T05:41:00.093627 | 2021-05-21T13:25:45 | 2021-05-21T13:25:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,884 | hxx | /*
* Copyright 2007-2021 CM4all GmbH
* All rights reserved.
*
* author: Max Kellermann <mk@cm4all.com>
*
* 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 abo... | [
"mk@cm4all.com"
] | mk@cm4all.com |
23f6d40dfa0123abe523f7e355e66cfcd687854f | 97729ab4eae7a0d1812ded8727d8c05b300aba44 | /Dijkstra.cpp | 4983be7204e77744b70ff40db89004e733e0107c | [] | no_license | GottBott/GraphFriendFinder | 803a8a057e1113539e8b7b570b090843f963da14 | 390a5dd03eff2fcf19ed7524a00011bb1739cad0 | refs/heads/master | 2020-03-27T02:33:03.893912 | 2018-08-23T04:03:08 | 2018-08-23T04:03:08 | 145,797,978 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,082 | cpp | #include "Network.h"
#include "Dijkstra.h"
#include <iostream>
#include <fstream>
#include <iomanip>
#include <cmath>
#include <algorithm>
#include <vector>
#include <limits>
using namespace std;
using std::cout;
using std::cerr;
using std::ifstream;
using std::endl;
using std::vector;
using std::numeric_limits;
/**
... | [
"bengotthold@gmail.com"
] | bengotthold@gmail.com |
bb38b8bbf680f08e3d7407695787c3f04ae40513 | cd06a8aa7469d8f4e79ba48a12c40ca42b84cae7 | /beepTest/beepTest.ino | e40565864b3d62d7c29ba3d3c29057220ad9f290 | [] | no_license | pfory/central-heating | bb550ef1eecc8e91854cad9768e3ef1bd7a6f540 | b24680e020d6cb24faefbdd7361f752e57b6277d | refs/heads/master | 2020-05-21T12:44:07.741615 | 2020-03-22T17:13:22 | 2020-03-22T17:13:22 | 45,404,685 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,042 | ino | #include "beep.h"
const byte pin=13;
byte volume=255;
int beepLength=100;
int pauseLength=100;
byte count=1;
Beep beep(pin);
void setup() {
Serial.begin(9600);
beep.Delay(beepLength, pauseLength, count, volume);
}
void loop() {
beep.loop();
if (Serial.available() > 0) {
byte incomingByte = Serial.read()... | [
"pfory@seznam.cz"
] | pfory@seznam.cz |
966ae9be73a7eaa02641d98a87f968ff5f977989 | 96c5ab5658521e8737d37f6c21ba39714422d932 | /Differenciator/main.cpp | 6f8fcdd05090d4e026ae271bc71ee051ffe7d950 | [] | no_license | dashapavlova12/1sem | 9de4cb9a0f398a0903647a52028f019e5992549c | 1d49608f7e3564525a5940be9fa102af07a06fd9 | refs/heads/master | 2020-04-07T22:10:01.725971 | 2018-12-20T10:25:33 | 2018-12-20T10:25:33 | 158,757,899 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 530 | cpp | #include "diff.h"
int main()
{
int input = open(way_to_in, O_RDONLY|O_BINARY);
assert(input >= 0);
Tree* in_tree = Tree_construct();
in_tree = read_expression(input);
assert(in_tree != NULL);
print_expression(in_tree);
Tree* out_tree = Tree_construct();
out_tree = differenciation(in_t... | [
"noreply@github.com"
] | noreply@github.com |
46bdd32d2b418eead3a51f711fe451e2e7127cec | aee58e2c2e1834c6dea645a2d34afd2e0107579a | /JSParser/FunctionDecl.h | d343f29a3aec92d011163b78175741af385957ed | [] | no_license | AwesomeTextEdtor/JSParser | 86ca18cc3aca473d97b4e0b3e34d74d0fad0a55f | 2f642c09376d6fce447ac68cc4aec22bff250bfb | refs/heads/master | 2022-02-24T13:06:56.713909 | 2019-03-28T09:03:52 | 2019-03-28T09:03:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,131 | h | #pragma once
#include<vector>
#include "Decl.h"
#include"Identifier.h"
#include"BlockStmt.h"
class FunctionDecl :public Decl {
protected:
vector<Identifier*> params;
BlockStmt* body;
public:
FunctionDecl(Identifier* id,NodeType t=FunctionDecl_t):Node(t),Decl(id){
setValue("Function Declaration");
}
void appen... | [
"728882175@qq.com"
] | 728882175@qq.com |
84c396d0eca230f309954070030766e96f5e53f4 | 93b24e6296dade8306b88395648377e1b2a7bc8c | /client/boost/boost/mpl/set/set0_c.hpp | cfdaef116ac4ee13b89aafb5fe9ab4fe7dcfc250 | [] | no_license | dahahua/pap_wclinet | 79c5ac068cd93cbacca5b3d0b92e6c9cba11a893 | d0cde48be4d63df4c4072d4fde2e3ded28c5040f | refs/heads/master | 2022-01-19T21:41:22.000190 | 2013-10-12T04:27:59 | 2013-10-12T04:27:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 791 | hpp |
#ifndef BOOST_MPL_SET_SET0_C_HPP_INCLUDED
#define BOOST_MPL_SET_SET0_C_HPP_INCLUDED
// Copyright Aleksey Gurtovoy 2003-2004
// Copyright David Abrahams 2003-2004
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LIC... | [
"viticm@126.com"
] | viticm@126.com |
14a0c22496575930013dc1b3fe5605d41478b675 | f9fe33be8d046538593398282231b379449213f5 | /Solutions/18.6/Lib/Edit.h | 46da2e03bdeb27a3f741a9d1fea65ac17b261eac | [] | no_license | liuxinbo1984/cplus-in-action | d777a09523439d66fd2cd941694370724b77b163 | 1087742fdf6528bc7e810db351492034b24c4dbb | refs/heads/master | 2021-04-23T21:20:55.827607 | 2020-03-25T16:32:10 | 2020-03-25T16:32:10 | 250,007,524 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,851 | h | #if !defined (EDIT_H)
#define EDIT_H
// (c) Bartosz Milewski 2000
#include "controls.h"
#include <string>
namespace Win
{
class StaticText: public SimpleCtrl
{
public:
StaticText (HWND winParent, int id)
: SimpleCtrl (winParent, id)
{}
};
class EditReadOnly: public SimpleCtrl
{
public:... | [
"liuxinbo.1984@163.com"
] | liuxinbo.1984@163.com |
22ac8dd7e7b2ae2f76134747a343cd5f5b7bdee0 | c4e41f7dac8934fb008887c128697f9ea4236b2b | /win/nxt-tools/nxtOSEK/ecrobot/c++/util/New.cpp | 2e438eb3c6ce2bb5e7039d0f102b0cd27723dfb4 | [] | no_license | qreal/nxt-tools | ecc408f33757ed276d61d854f14e207d562871c0 | 5cb78f437990ea7ffecc6412d097c4d1038055e7 | refs/heads/master | 2021-01-10T19:33:00.165167 | 2018-10-23T15:09:56 | 2018-10-23T15:09:56 | 26,807,179 | 1 | 2 | null | 2020-10-28T21:11:07 | 2014-11-18T11:58:37 | C++ | UTF-8 | C++ | false | false | 1,429 | cpp | //
// New.cpp
//
// Simple new/delete overload to reduce the memory consumption.
// Note that there is NO exception handling and NOT thread safe.
//
// Copyright 2009 by Takashi Chikamasa, Jon C. Martin and Robert W. Kramer
//
#include <stdlib.h>
//==========================================================... | [
"lahmatbiy@gmail.com"
] | lahmatbiy@gmail.com |
ee4443ea50a7cd47983c63f4227aa37433b877be | 5853b26c6abeaae30183b68d81e3f18a9b76901b | /solved/LightOJ/1069 - Lift/solution.cpp | 1d93b90f6320686a0a147e43a83a1c0d1e2c315a | [] | no_license | mdfaridmiah/competitive-programming | c18c04cb89c0d66819db35cf9534c3d1a0960b31 | 2c94a375e71ccacd316550b4c58080253549fbee | refs/heads/master | 2023-03-02T07:29:52.850660 | 2021-02-11T03:38:16 | 2021-02-11T03:38:16 | 336,281,254 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 468 | cpp | #include<stdio.h>
#include<iostream>
#include<string.h>
#include<math.h>
#include<algorithm>
using namespace std;
char nm[10005];
long long ar[1000005];
int main()
{
long long a,b,tk,i,c=0,mx,len,res;
scanf("%lld",&tk);
while(tk--)
{
res=0;
c++;
scanf("%lld%lld",&a,&b);
... | [
"cfcfree2@gmail.com"
] | cfcfree2@gmail.com |
fffabd9b4e3fdace147c826e15ebf25a3ae5c71a | a4d5ab8b22d2f76dae1e5af4581d4c579d93ef60 | /paquete.hpp | ccb73c4684ba26ba410672180e9eda7083616095 | [] | no_license | Xabras123/EDD | 038c74ad23626dc639a7b8c98e3f13cb46535b7f | 90dd98ca46cc0cb631e9dc80e8bc3e37536b89d6 | refs/heads/master | 2021-01-24T16:19:22.254852 | 2018-02-27T16:52:26 | 2018-02-27T16:52:26 | 123,183,071 | 0 | 0 | null | 2018-02-27T20:17:44 | 2018-02-27T20:17:43 | null | UTF-8 | C++ | false | false | 844 | hpp | #ifndef __PAQUETE__HPP__
#define __PAQUETE__HPP__
#include <iostream>
#include "paquete.h"
#include <string>
#include <list>
#include "Persona.h"
using namespace std;
void Paquete::setRemitente(Persona remitenteIn){
remitente = remitenteIn;
}
void Paquete::setDestinatario(Persona destinatarioIn){
... | [
"diegogb0113@gmail.com"
] | diegogb0113@gmail.com |
50d65230b2e8a9571de24162c2367d6d0f26368f | d2c0ac9b68c5e68664d6dc645ece52398c58fbcd | /FlightStrip-Config-Tool/FlightStrip Config Tool/Compiled Program V0.2/data/FlightStrip.cpp | 64bca598df70c0a31e20fcd78f3dc572ad5789c9 | [] | no_license | MorS25/FlightStrip | 00b2dca1916167333f76f2c9c92f77afca08216e | 8644050f90a1bf29797e86df5bcc06be33ba6a00 | refs/heads/master | 2021-01-18T04:09:25.260703 | 2015-04-26T13:57:32 | 2015-04-26T13:57:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,926 | cpp | /*
FlightStrip.cpp - Library for WS2812 LED Strip Management.
Version 0.7 (15.03.2015)
This Code is published by Yannik Wertz under the "Creativ Common Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)" License
For more Information see : http://creativecommons.org/licenses/by-nc-sa/4.0/... | [
"yannik.wertz@hotmail.de"
] | yannik.wertz@hotmail.de |
ec91a71d50bb31455f89576640d082eaba135d1b | 9016a5ac6659d7d89029ecc50693330b410adc85 | /Core/Network/Connections/ScarabServerConnection.h | 580d32a5bdf71c01330910eadb20298970e2109a | [] | no_license | mworks-project/mw_core | 35349273cc8c3acbd136f36d5680748c312742cf | f98ce9502a097b0c7a9e501d0e5bb513c7d0e835 | refs/heads/master | 2016-08-05T10:05:49.457160 | 2011-08-24T19:56:00 | 2011-08-24T19:56:00 | 108,497 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,333 | h | /**
* ScarabServerConnection.h
*
* Description: Used by the Scarab Server to accept client connections.
* Moved the functionality for accepting clients from the ScarabClient class
* to here because i was confusing myself.
*
* History:
* Paul Jankunas on 8/9/05 - Created.
* Paul Jankunas on 08/24/05 - Adde... | [
"david.daniel.cox@gmail.com"
] | david.daniel.cox@gmail.com |
016012ed4ca25f188bbbd3ef878ef0c4b3bf5276 | e6594775d1e0c4bfef1354189b144262e23a1a73 | /trunk/synthetiseur/circularbuffer.cpp | 465fddc097343a10409aa5fa2791bf447c4841a5 | [] | no_license | tomotello/polyphone-tom | b04335b4c8b9cfc7a0908106f5e2d270dde80ffe | 4fd8e0a92a376938afd6231bb6e0482936a35e34 | refs/heads/master | 2021-01-19T00:24:52.533896 | 2016-08-13T13:35:08 | 2016-08-13T13:35:08 | 65,304,181 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,499 | cpp | /***************************************************************************
** **
** Polyphone, a soundfont editor **
** Copyright (C) 2013-2015 Davy Triponney **
** ... | [
"tomotello"
] | tomotello |
58c3a242c4c9d471ea7097805fb4f51f117b220f | fd97099ed918261b9870ef289114f7ef0e4c449b | /trie/app.cpp | ebdd08f11568645a17c5024ebe14d3c05147eafc | [] | no_license | YegangWu/Alogirthms | 8b10b8ee23c3eba7266894a55eddf0f8e97f3e6b | 9fa041d9af29a6e936c72e719cc2f7e190cd880b | refs/heads/master | 2021-11-05T13:46:34.219360 | 2021-10-30T17:34:59 | 2021-10-30T17:34:59 | 215,429,555 | 0 | 1 | null | 2020-10-07T16:13:35 | 2019-10-16T01:29:19 | C++ | UTF-8 | C++ | false | false | 1,700 | cpp | #include "trie.h"
#include <iostream>
std::string check(bool flag)
{
return flag ? "yes" : "no";
}
int main()
{
Trie trie("data/input.txt");
std::cout << "file contains by? " << check( trie.contains("by") ) << std::endl;
std::cout << "file contains sells? " << check( trie.contains("sells") ) << std::endl;
std:... | [
"aila5ronaldo@gmail.com"
] | aila5ronaldo@gmail.com |
bcfcbdbf0b47f436231c33269b006913810a768c | b278695d3f1b411f3bf10fb2adf9a8baf11542d3 | /Solutions/repeatedDNASequences.cpp | 4aa2ae1ac9c54a3670443f900d54ee243d1017c0 | [] | no_license | VenkataAnilKumar/LeetCode | 445f62dc8e8eec430b6ea0709dc77cbdb7494621 | df6d9e4b7172266bef4bc1f771fce3abb2216298 | refs/heads/master | 2021-06-25T07:56:54.217539 | 2020-12-18T05:54:59 | 2020-12-18T05:54:59 | 176,710,300 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,586 | cpp | // Source : https://oj.leetcode.com/problems/repeated-dna-sequences/
// Author : Venkata Anil Kumar
/**********************************************************************************
*
* All DNA is composed of a series of nucleotides abbreviated as A, C, G, and T,
*
* For example: "ACGAATTCCG".
* When studyi... | [
"25908037+VenkataAnilKumar@users.noreply.github.com"
] | 25908037+VenkataAnilKumar@users.noreply.github.com |
6c09fd3bfa6b76227ad73fa2a1c1b06438396a57 | 76d4430567b68151df1855f45ea4408f9bebe025 | /src/rpc/protocol.h | 9598ef8dec915a3fa2cb0c5dd2d22a395f33c03b | [
"MIT"
] | permissive | MicroBitcoinOrg/MicroBitcoin | f761b2ff04bdcb650d7c0ddbef431ef95cd69541 | db7911968445606bf8899903322d5d818d393d88 | refs/heads/master | 2022-12-27T10:04:21.040945 | 2022-12-18T05:05:17 | 2022-12-18T05:05:17 | 132,959,214 | 21 | 33 | MIT | 2020-06-12T04:38:45 | 2018-05-10T22:07:51 | C++ | UTF-8 | C++ | false | false | 4,823 | h | // Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2019 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef MICRO_RPC_PROTOCOL_H
#define MICRO_RPC_PROTOCOL_H
//! HTTP status codes
enum ... | [
"iamstenman@protonmail.com"
] | iamstenman@protonmail.com |
9065d848befda6ce030f72d00abcfd5876258afe | 83e1ab5e61526513f694ec42b3ed441d218c03ca | /linkedList.cpp | 3f8c0c29c7eab095333547a056b5b84b36c33c72 | [] | no_license | TaylorSanchez/linkedList | 2d2b5f70dca211b7df4e17b7bba66169dc0f77a2 | 6a2cf476b37d7a76de57cf4131285efae32084a6 | refs/heads/master | 2021-01-21T12:39:56.934171 | 2014-01-30T19:16:30 | 2014-01-30T19:16:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,648 | cpp | /**
* Implementation of the linkedList.cpp
*
* @author Taylor Sanchez
* @version 1.0
* @date Jan 25, 2014
* @file linkedList.cpp
*/
/**
* Summary:
* This will create a singly linked list data type.
* Being singly linked, it must be traversed from the head node downward.
* this is similar to a stack, b... | [
"xTaylorSanchez@gmail.com"
] | xTaylorSanchez@gmail.com |
5872730ffefc951bbed2abd8fd380242a8dee57a | 9049844781b7eb35aabcd9c63b307e869eb53f74 | /opencv_ectracted_lib2/src/src/copy.cpp | 6aa739343893384fc2f7ec6beebe234815727308 | [] | no_license | sclee0095/vco | a118931341b3842088d0e78ba8f86d766e11a388 | c2e08955bc9c833805084fac7913bd82133b7984 | refs/heads/master | 2021-01-19T06:03:05.459348 | 2016-08-19T13:38:32 | 2016-08-19T13:38:32 | 61,896,867 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 49,409 | cpp | /*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... | [
"yellowcd@naver.com"
] | yellowcd@naver.com |
9cd01d26ee35f4b2ed2e4d7a5d3d89e8c90f2af2 | 3e067c51b5a4b007c95ac67b9e611a8438f8eb8f | /HashTable.cpp | 4afbaf4c463ef7aa30eb0ede926cb648b5a7e055 | [] | no_license | EpicDriveP3/hashTable | 7007dd98adf93c023a112140d2dcc3575763e702 | d1fe19a2a96bb3b53a8719f020dd5ab8bdd91a5e | refs/heads/master | 2021-01-16T20:38:41.734494 | 2016-06-17T23:35:25 | 2016-06-17T23:35:25 | 61,407,964 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,770 | cpp | /*
* 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: Student.cpp
* Author: betolan
*
* Created on 4 de junio de 2016, 08:10 AM
*/
#include "HashTable.h"
using names... | [
"betolan@betolan-Alienware-14"
] | betolan@betolan-Alienware-14 |
85d9f6f966a0dcfc54ecf378b398ed07140f1299 | 3636175d49df1ebc5472f572da35099148859cd6 | /source/core/shared_memory.h | 909c640645ec80de1364a20de4b088689a4d07d1 | [
"CC0-1.0"
] | permissive | lymanZerga11/multithreaded_order_matching_engine | 62ea99fe752de04adbd716f15d6002850997bbb1 | fa3f51bde2abbc3d625318aed1fc8a4ab400a70d | refs/heads/master | 2021-03-22T05:04:40.495305 | 2018-01-29T23:07:56 | 2018-01-29T23:07:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,445 | h | #ifndef _SHARED_MEMORY_H_
#define _SHARED_MEMORY_H_
#include <core/memory/virtual_memory.h>
#ifdef __linux__
#elif _WIN32
#include <windows.h>
#endif
#include <string>
#include <cstddef>
namespace core
{
class SharedMemory
{
public:
SharedMemory();
~SharedMemory();
bool open(std::stri... | [
"akin_ocal@hotmail.com"
] | akin_ocal@hotmail.com |
72eb19df43815ee84c72c1807c3f15b1bbf01ccf | d14b5d78b72711e4614808051c0364b7bd5d6d98 | /third_party/llvm-16.0/llvm/lib/Target/XCore/XCoreISelLowering.h | cfd0619cba8fd521b63fcf2ef738b08dcbf0c098 | [
"Apache-2.0"
] | permissive | google/swiftshader | 76659addb1c12eb1477050fded1e7d067f2ed25b | 5be49d4aef266ae6dcc95085e1e3011dad0e7eb7 | refs/heads/master | 2023-07-21T23:19:29.415159 | 2023-07-21T19:58:29 | 2023-07-21T20:50:19 | 62,297,898 | 1,981 | 306 | Apache-2.0 | 2023-07-05T21:29:34 | 2016-06-30T09:25:24 | C++ | UTF-8 | C++ | false | false | 8,970 | h | //===-- XCoreISelLowering.h - XCore DAG Lowering Interface ------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... | [
"swiftshader-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | swiftshader-scoped@luci-project-accounts.iam.gserviceaccount.com |
57d8e008528b934a61cdae9a9a41d654712529d9 | 59675401ec69e867477f93b0c44e7587c431dfb6 | /Project04_Lighting & Shading/function.cpp | 2b4ff150d3ab9610feafd3d4c8f100788f613f79 | [] | no_license | Ether-YiTseWu/Computer-Graphics | b4741fd9c7b09e7ee478012e4e851a926935559b | 2b6efa150706ec1ea69b1159ec47b590fd3a3124 | refs/heads/master | 2023-02-21T12:27:48.032472 | 2020-06-25T08:10:43 | 2020-06-25T08:10:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,072 | cpp | #include <stdio.h>
#include <iostream>
#include <windows.h>
#include <math.h>
#include <GL/glut.h>
#include "parameter.h"
#define CRT_SECURE_NO_WARNINGS
GLUquadricObj* sphere = NULL, * cylind = NULL, * disk;
int style = 4; // 4-windows mode
// Procedure to initialize the working environment.
void myinit()
{
glClear... | [
"44743933+tailer954@users.noreply.github.com"
] | 44743933+tailer954@users.noreply.github.com |
986b5a31d08af26b3c4f894f41f595d990bdb294 | eba078a18f3cffd5b80ee66155051cca17a3baa0 | /piezo_speaker/speaker.ino | 2fb589d835490995fbb16559f0eee22684eca479 | [] | no_license | msheehan0109/Code | 656ba3971ca2f96a4e9386a9516243220e9ba2d1 | 32469185b132b32f0cc1c92bb6dafe99a010c672 | refs/heads/master | 2021-04-25T18:22:55.784783 | 2018-04-13T13:27:47 | 2018-04-13T13:27:47 | 108,302,668 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 136 | ino | void setup() {
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13, HIGH);
delay(1);
digitalWrite(13, LOW);
delay(1);
}
| [
"noreply@github.com"
] | noreply@github.com |
b980e4667be0f395a07e1924d59c6ff62a3b96e7 | 2102757001bf9cc63f8bac13d5b4834e361b3352 | /ITP1/5_A.cpp | 35cd9019ca754c2a80daa79d5de9726a50491d7a | [] | no_license | shinter61/competition | 79b181426813308133eedfd8cf94252afe3f26e8 | 8799c9b807659a7a0a2de179e7aa49537d9556f7 | refs/heads/main | 2023-07-30T15:28:25.617968 | 2021-09-12T12:19:22 | 2021-09-12T12:19:22 | 405,633,656 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 727 | cpp | #include <bits/stdc++.h>
using namespace std;
int main() {
vector< vector <int> > input(1000, vector<int>(2));
for (int i = 0; i < input.size(); i++) {
cin >> input[i][0] >> input[i][1];
cout << "hello" << endl;
if (input[i][0] == 0 && input[i][1] == 0) break;
cout << "world" << endl;
}
cout <... | [
"shinter61@gmail.com"
] | shinter61@gmail.com |
44a15efd57a4f8738b60334413aca66d217169c5 | ef8a3418cd5bdcce4265f489823b299a7a67fe9b | /car class (OOP)/CAR.cpp | 4656c254045fcc2ffd859b4c53fd6c38ae04e51c | [] | no_license | MahmoodMakhloof/CPP-OOP | 2d98720be7a0a82a63dc4b705abf0a0bc0285d68 | 0860211f75da8af399976d861115d88aee1951b0 | refs/heads/master | 2023-01-08T12:30:55.895195 | 2020-11-02T08:31:59 | 2020-11-02T08:31:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 873 | cpp | /*
* CAR.cpp
*
* Created on: 12\5\2020
* Author: Bob
*/
#include "CAR.h"
int CAR::ctr = 0;
//constructor : code executed in the start of object life time
CAR::CAR(string m ,int l ,string c):maker(m),model(l),color(c) //initializing list
{
ctr++;
cout<<"the car "<<ctr<<" is initialized\n";
}
//overloading con... | [
"mahmoodmakhloof1998@gmail.com"
] | mahmoodmakhloof1998@gmail.com |
a31c345d817c7c7b780ca14aea9b4d4c556d567c | 3cde95eb79ef19d390023e75c71209fec9ec57ce | /ds/audioEncoding.cpp | 3d00b5f63498f6058d3814ee5f218b397942fd44 | [
"Apache-2.0"
] | permissive | BobDeng1974/rdk-devicesettings | d002fee5584dbcea5cd2ebe82da0b47f7bb5e8fa | b34ed545b533a0cf4d29d221cc23daad47f32644 | refs/heads/master | 2020-11-28T07:20:41.199755 | 2018-07-25T07:34:07 | 2018-07-28T21:30:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,987 | cpp | /*
* If not stated otherwise in this file or this component's Licenses.txt file the
* following copyright and licenses apply:
*
* Copyright 2016 RDK Management
*
* 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 ... | [
"jim.lawton@accenture.com"
] | jim.lawton@accenture.com |
4c6be74d65ae4b0cb9b2b560ef532e20b9b8c6fb | 009108564b404256fc5a1c5626ae0098cf1adda3 | /Rect.cpp | 51751a3fb830fa9a3e5419368d11e50c41bb7439 | [] | no_license | AD87/Super-Smash-TV | 7235130d800160d5c15d6ae7cebbdd4952b40d43 | a534a796c1ffdab9355c3600de4e13eb03aba55b | refs/heads/master | 2023-07-21T03:16:58.937980 | 2016-03-26T21:30:19 | 2016-03-26T21:30:19 | 54,674,992 | 1 | 3 | null | 2023-07-15T16:56:36 | 2016-03-24T21:20:22 | C++ | UTF-8 | C++ | false | false | 728 | cpp | #include "Rect.h"
#include "Vec2.h"
Rect::Rect(){
m_minX = 0;
m_maxX = 0;
m_minY = 0;
m_maxY = 0;
}
Rect::Rect(float minX, float maxX, float minY, float maxY){
m_minX = minX;
m_maxX = maxX;
m_minY = minY;
m_maxY = maxY;
}
bool Rect::intersects(const Rect& otherRect)const{
return ((m_maxX >... | [
"antoniojduarte87@gmail.com"
] | antoniojduarte87@gmail.com |
39de2dddee8d0801ec5e6a8c28e9692e8f627d85 | d2fb019e63eb66f9ddcbdf39d07f7670f8cf79de | /groups/bsl/bsl+bslhdrs/bsl_cassert.h | b6a641b54d60993677b7416878b6c8cbb4fb36fa | [
"MIT"
] | permissive | gosuwachu/bsl | 4fa8163a7e4b39e4253ad285b97f8a4d58020494 | 88cc2b2c480bcfca19e0f72753b4ec0359aba718 | refs/heads/master | 2021-01-17T05:36:55.605787 | 2013-01-15T19:48:00 | 2013-01-15T19:48:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,089 | h | // bsl_cassert.h -*-C++-*-
#ifndef INCLUDED_BSL_CASSERT
#define INCLUDED_BSL_CASSERT
#ifndef INCLUDED_BSLS_IDENT
#include <bsls_ident.h>
#endif
BSLS_IDENT("$Id: $")
//@PURPOSE: Provide functionality of the corresponding C++ Standard header.
//
//@SEE_ALSO: package ... | [
"abeels@bloomberg.net"
] | abeels@bloomberg.net |
1e414b56b69caee324a65e7ddbe5abf5c0ba2501 | b22588340d7925b614a735bbbde1b351ad657ffc | /athena/Trigger/TrigAnalysis/TrigInDetAnalysis/TrigInDetAnalysis/TIDAEvent.h | 1e59ed7a037ed633e644ba8b76f548329968e20d | [] | no_license | rushioda/PIXELVALID_athena | 90befe12042c1249cbb3655dde1428bb9b9a42ce | 22df23187ef85e9c3120122c8375ea0e7d8ea440 | refs/heads/master | 2020-12-14T22:01:15.365949 | 2020-01-19T03:59:35 | 2020-01-19T03:59:35 | 234,836,993 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,965 | h | // emacs: this is -*- c++ -*-
/*
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
*/
//
// @file TIDAEvent.h
//
// Basic event class to contain a vector of
// chains for trigger analysis
//
//
// $Id: TIDAEvent.h, v0.0 Mon 1 Feb 2010 1... | [
"rushioda@lxplus754.cern.ch"
] | rushioda@lxplus754.cern.ch |
5d40a4d43db89466913bea18cef002b248c96826 | 2ae297942f7deea0919e5c12f6a6be77068cc224 | /variates.cpp | 5f0049916c6d5589a33e094cbd33ed3643bb1e75 | [] | no_license | G-VAR/switchedDigitalVideo | 7b4dc6de6c6d2880f25c9f6e8a3662c91c4edd9b | d863e0dc3737b92926e4ae74ed44cc979c38558f | refs/heads/master | 2021-01-22T00:36:29.444053 | 2014-09-14T04:11:06 | 2014-09-14T04:11:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,166 | cpp | /*------------------------------------------------------------------------
* Module: Variates
*
* Function: provides several routines to generator random variates
*
* The zipf RV code is from Kenneth J. Christensen (University of South Florida )
---------------------------------------------------------... | [
"yaolinz@clemson.edu"
] | yaolinz@clemson.edu |
c57caddeaad527c9753fc7f0e6a313eb3eb54915 | 874246e0d83fb6e2ef7d10136e8caa3f26d606d7 | /addons/85th_items/functions/script_component.hpp | 4a82ea5889e1716a92d2800df05548798e211654 | [] | no_license | 85th-PMC/85th | e598502cd4de7a177ad08face9153eaf898c521a | ed42e80f63770f365815459793c2f5aa40e8eb29 | refs/heads/master | 2020-03-28T19:21:49.101420 | 2018-10-03T10:39:08 | 2018-10-03T10:39:08 | 148,968,051 | 0 | 0 | null | 2019-04-02T13:08:54 | 2018-09-16T05:59:12 | C++ | UTF-8 | C++ | false | false | 64 | hpp | #include "\z\85th_items\addons\85th_items\script_component.hpp"
| [
"noreply@github.com"
] | noreply@github.com |
bd73a67b280a27760424aef7a696f3bd099df6c6 | 43a54d76227b48d851a11cc30bbe4212f59e1154 | /iotvideo/include/tencentcloud/iotvideo/v20191126/model/ModifyDeviceResponse.h | 83c77dbb7795269986664e9a612442d985eca62a | [
"Apache-2.0"
] | permissive | make1122/tencentcloud-sdk-cpp | 175ce4d143c90d7ea06f2034dabdb348697a6c1c | 2af6954b2ee6c9c9f61489472b800c8ce00fb949 | refs/heads/master | 2023-06-04T03:18:47.169750 | 2021-06-18T03:00:01 | 2021-06-18T03:00:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,554 | h | /*
* 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@tenent.com"
] | tencentcloudapi@tenent.com |
c7ef76da20268c73031ea36f08e008cbca7811e2 | 858dc012ed841ccecb032084d276c514776076a8 | /source/OnesAndZeroes.cpp | 0409964c1b3952ab67b23960455809e84f201b89 | [] | no_license | navyhu/LeetCodeCpp | 43ac8944df414fab38f42efa526416a38a660a82 | f772eaad71aeb019bdc58ccb6c1ba9c4614759be | refs/heads/master | 2020-05-17T03:25:47.789400 | 2018-07-20T03:57:08 | 2018-07-20T03:57:08 | 32,626,934 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,305 | cpp | #include <iostream>
#include <vector>
#include <string>
using namespace std;
class Solution {
public:
int findMaxForm(vector<string>& strs, int m, int n) {
vector<vector<int>> dp(m + 1, vector<int>(n + 1, 0));
for (auto str : strs) {
int count0 = 0;
int count1 = 0;
for (auto ch : str) {
if (ch == '... | [
"hu@mac-baseimage-5.local"
] | hu@mac-baseimage-5.local |
39aa24f9ef1b8d56ee9392bc4eefe24ba93952a4 | d4919fb471c6ca382f68e6f1bc67c8e8a80a7b28 | /src/bvh/sphere_bvh_mpi.cpp | 220e1cfb9f362966d973085c5e2102746edd78ab | [] | no_license | ZwFink/ParRay | 1cc6556cc1393f43e537c9c888741a280ee300a1 | c1bad0a8b056e621e93948aa19fcd9f93dc9d767 | refs/heads/master | 2023-04-28T05:32:57.393581 | 2021-05-08T23:58:31 | 2021-05-08T23:58:31 | 353,145,710 | 1 | 0 | null | 2021-05-08T23:58:32 | 2021-03-30T21:26:27 | C++ | UTF-8 | C++ | false | false | 12,340 | cpp | #include "bvh.hpp"
#include <mpi.h>
#include "data_porting.h"
#include "vec3.h"
#include "camera.h"
#include <vector>
#include "color.h"
#include <ctime>
#include "boundable.h"
#include <omp.h>
#include <thread>
#include <atomic>
#include <condition_variable>
#include "ray_tracing.h"
#define RENDER_COMPLETE std::numeri... | [
"noreply@github.com"
] | noreply@github.com |
a5e7afc9b7aa0e5a6b897b92c10f3218a4b86fdf | ed9102ec21c1a7c276360b27c524ac3fc8939356 | /assign2.cpp | 8eb404278ecaa7e2571ddc4641e7809417e66fee | [] | no_license | SHG0202/DSL-Assignments-SPPU | 23ecc931e98ae393706b2ee1d4a30d449d138d6e | d041bcd51381328c2aef23ae3fa526a925adb527 | refs/heads/master | 2022-12-06T15:44:58.283322 | 2020-09-01T14:49:07 | 2020-09-01T14:49:07 | 292,024,154 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,363 | cpp | //============================================================================
// Name : assign2.cpp
// Author : saket
// Version :
// Copyright : Your copyright notice
// Description : Hello World in C++, Ansi-style
//============================================================================
#incl... | [
"noreply@github.com"
] | noreply@github.com |
971e9b60129ac5aa12b9cf962e144054ae7bb3e3 | 4e49a9fc7bc1a99b09e629055c3bc75e0106c2bf | /source-cpp/treemap/source/buffers/AbstractLinearizedBuffer.cpp | f8826702e6a3693a4c234b595a81bc655d303bde | [
"MIT"
] | permissive | varg-dev/treemap-hub | f66c2fd1584764cf02f182d5439857e6187e16f6 | 75d4d2ced3fdf0a73ea1c6b079c70557882ac3b0 | refs/heads/master | 2023-08-11T04:53:16.362165 | 2021-10-06T08:21:17 | 2021-10-06T08:21:17 | 358,201,293 | 1 | 0 | MIT | 2021-07-28T15:02:54 | 2021-04-15T09:26:24 | C++ | UTF-8 | C++ | false | false | 287 | cpp |
#include <treemap/buffers/AbstractLinearizedBuffer.h>
#include <treemap/linearizedtree/LinearizedTreeNode.h>
AbstractLinearizedBuffer::AbstractLinearizedBuffer()
{
}
std::uint32_t AbstractLinearizedBuffer::indexOf(const LinearizedTreeNode *node) const
{
return node->index();
}
| [
"willy.scheibel@hpi.de"
] | willy.scheibel@hpi.de |
d733cb2c45857f25f36381130f944d858161cc89 | 0de72d530d147475b478ca2088313a151b1efd4d | /splitgate/core/sdk/sdk/Landscape_functions.cpp | 8aaa94ad05a9a2a679feb778925548b30f73b466 | [] | no_license | gamefortech123/splitgate-cheat | aca411678799ea3d316197acbde3ee1775b1ca76 | bf935f5b3c0dfc5d618298e76e474b1c8b3cea4b | refs/heads/master | 2023-07-15T00:56:45.222698 | 2021-08-22T03:26:21 | 2021-08-22T03:26:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 22,599 | cpp | #include "..\..\pch.h"
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Functions
//---------------------------------------------------------------------------
//... | [
"nickmantini01@gmail.com"
] | nickmantini01@gmail.com |
1eb43538717c6667ecb3123766d3a3cbcc81faee | 5bbeacb6613fdaa184a5bda4bdb54b16dc8654e1 | /zMuSource/GameServer/EledoradoEvent.cpp | ab2b5b9c09e8fbaa75c5ee1c5c10d5adf827c6e0 | [] | no_license | yiyilookduy/IGCN-SS12 | 0e4b6c655c2f15e561ad150e1dd0f047a72ef23b | 6a3f8592f4fa9260e56c1d5fee7a62277dc3691d | refs/heads/master | 2020-04-04T09:03:13.134134 | 2018-11-02T03:02:29 | 2018-11-02T03:02:29 | 155,804,847 | 0 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 34,430 | cpp | ////////////////////////////////////////////////////////////////////////////////
// EledoradoEvent.cpp
// ------------------------------
// Decompiled by Deathway
// Date : 2007-05-09
// ------------------------------
#include "stdafx.h"
#include "EledoradoEvent.h"
#include "Gamemain.h"
#include "TLog.h"
#include "user... | [
"duypnse63523@fpt.edu.vn"
] | duypnse63523@fpt.edu.vn |
f60a79a38f47636b6beba15e92fa0eab7fe2fcea | 979a7439f73e608c82f32edfd05336ee114e3158 | /lib/Logger-1.0.3/src/Logger.cpp | 939e43bf0fd0d2eee3a8d1f81bdbc448e9d399c6 | [] | no_license | damiandrzewicz/air-sensor-iot | c105454f3c76d10bc53625c3e6fc92dc914c694f | 891943f52e4e5ad46c76ad34b00eb46dd6adc6aa | refs/heads/main | 2023-05-15T21:56:47.396328 | 2021-05-24T21:39:10 | 2021-05-24T21:39:10 | 355,950,832 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,140 | cpp | // =============================================================================
//
// Copyright (c) 2013-2016 Christopher Baker <http://christopherbaker.net>
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to de... | [
"damian.drzewicz@gmail.com"
] | damian.drzewicz@gmail.com |
bfdd579cb150ffe91bd8d26a2947116845e23d1f | 950b506e3f8fd978f076a5b9a3a950f6f4d5607b | /inno/summer-shop-2017/05:07/kthstat/solutions/no_graders/x.cpp | 1125422140c7ac7d9e422f1b9e6f7ad9ddf4ae5d | [] | no_license | Mityai/contests | 2e130ebb8d4280b82e7e017037fc983063228931 | 5b406b2a94cc487b0c71cb10386d1b89afd1e143 | refs/heads/master | 2021-01-09T06:09:17.441079 | 2019-01-19T12:47:20 | 2019-01-19T12:47:20 | 80,909,953 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 346 | cpp | #include <cstdio>
#include <algorithm>
#define forn(i, n) for (int i = 0; i < (int)(n); i++)
const int n = 10;
int a[n];
void out()
{
printf("%d :", n);
forn(i, n)
printf(" %d", a[i]);
puts("");
}
int main()
{
forn(i, n)
a[i] = i;
out();
std::rotate(a, a + n - 1, a + n);
... | [
"dimaz1301@gmail.com"
] | dimaz1301@gmail.com |
e5911037b182ed9a342e106f518bea810ef1220c | a37534f6e3b3a6b1c3e9b158fc4d4ce7c733a8cb | /ros/champ/champ_base/src/quadruped_controller.cpp | f11ab8f7591fedf66d485ad1ee3ba527ae7a9f2b | [] | no_license | nicholaspalomo/spot-loco | 3701da378980ebcbf2d86b7fa191b87586eeca4c | b9125003be04b4fd2c5eb76224eab7369a2307e6 | refs/heads/main | 2023-05-06T03:25:04.502820 | 2021-06-03T05:02:36 | 2021-06-03T05:02:36 | 371,278,363 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 29,612 | cpp | /*
Copyright (c) 2019-2020, Juan Miguel Jimeno
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 a... | [
"nicholas.j.palomo@jpl.nasa.gov"
] | nicholas.j.palomo@jpl.nasa.gov |
2192cb9bbaa0e4e927cf38792953be76bb43f158 | 835c3fe722b0b39cf57765c11c037f3a628a73a1 | /OldMaidCardGame-MockTesting/test/OldMaidUIMockTest.h | 85ba8de4e7af7b37fcd1dadf8c9faf7e14276586 | [] | no_license | richardsm32/SchoolProjects | 07909a80d909b98c279067ccf5ea91dfc304fc1d | 388200311c4c5a855270be151e3545ca0c74edef | refs/heads/master | 2020-12-13T16:38:13.126600 | 2020-01-21T05:03:33 | 2020-01-21T05:03:33 | 234,474,086 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,088 | h | #ifndef OLDMAIDUIMOCKTEST_H_INCLUDED
#define OLDMAIDUIMOCKTEST_H_INCLUDED
#include "OldMaidUI.h"
#include <vector>
#include <string>
#include "gmock/gmock.h"
using testing::Return;
class MockOldMaidUI : public OldMaidUI {
public:
MockOldMaidUI() {}
~MockOldMaidUI() {}
MOCK_METHOD0(welcome, void());
... | [
"noreply@github.com"
] | noreply@github.com |
b2f365f0fceae9bcd4294f8eafdf3bc023ff00a5 | 428989cb9837b6fedeb95e4fcc0a89f705542b24 | /erle/ros2_ws/build/std_msgs/rosidl_generator_cpp/std_msgs/msg/float32_multi_array__struct.hpp | b2ac5308659643b9cbda290c69dd746fe87aa7c6 | [] | no_license | swift-nav/ros_rover | 70406572cfcf413ce13cf6e6b47a43d5298d64fc | 308f10114b35c70b933ee2a47be342e6c2f2887a | refs/heads/master | 2020-04-14T22:51:38.911378 | 2016-07-08T21:44:22 | 2016-07-08T21:44:22 | 60,873,336 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 3,694 | hpp | // generated from rosidl_generator_cpp/resource/msg__struct.hpp.template
#ifndef __std_msgs__msg__float32_multi_array__struct__hpp__
#define __std_msgs__msg__float32_multi_array__struct__hpp__
#include <array>
#include <memory>
#include <string>
#include <vector>
// include message dependencies
#include <std_msgs/ms... | [
"igdoty@swiftnav.com"
] | igdoty@swiftnav.com |
457c7ee2e55c478f7546a2391a191d9efb26c69d | 0a435c7742b0517156b69b5a14ddde08c42a69cb | /Plugins/AdvancedSessions/AdvancedSessions/Intermediate/Build/Mac/UE4/Inc/AdvancedSessions/AdvancedFriendsLibrary.gen.cpp | d60d23a0d0495c3569b3f51366016c85efb9b59b | [
"MIT"
] | permissive | sworley8/miSoMadness | bca7cd6e93748978f317456caacd698d3612923d | f604537ee6ccc4da4043fc317642d6f3743cc29f | refs/heads/master | 2023-01-28T10:17:12.756037 | 2020-11-30T23:27:22 | 2020-11-30T23:27:22 | 293,003,717 | 0 | 6 | null | 2020-12-06T01:43:50 | 2020-09-05T04:41:35 | C++ | UTF-8 | C++ | false | false | 38,593 | cpp | // Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
====================================================================... | [
"sophiaworley@hotmail.com"
] | sophiaworley@hotmail.com |
a941db3eb947262703be6114e729ad2ccc0a9fb0 | 61c8fc5b49bc9be71bb0da73d4a6c9eeb2c861d2 | /BackjoonAlgorithm/17298. 오큰수.cpp | 6368ffb73ead3b28c4a6f8bf780037944a8413ef | [
"Unlicense"
] | permissive | Minusie357/Algorithm | 188e8555b5edcf425a35e7228b7df4123a1cb7a1 | f579f91024a582cdf7e36591308123f8c920e204 | refs/heads/master | 2022-06-18T06:50:13.904143 | 2020-05-14T13:42:47 | 2020-05-14T13:42:47 | 191,180,848 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,517 | cpp | //#include <iostream>
//#include <stack>
//#include <vector>
//using namespace std;
//
////#define DEBUG
//#ifdef DEBUG
//#include <chrono>
//#include "Utility.h"
//
//chrono::system_clock::time_point Start;
//chrono::nanoseconds Time;
//#endif
//
//
//
//int main()
//{
// ios::sync_with_stdio(false);
// cin.tie(NULL)... | [
"minusie357@gmail.com"
] | minusie357@gmail.com |
492724f9e46cb2ec9b2e4f130403eebec8b588df | 6ce706b69c13371b57dd4ab8669fbb9dde7917f7 | /Source/AssetsWindow.cpp | 8b0ef3697a138c72f7f184e23f6991dfaacecb15 | [
"Unlicense",
"MIT"
] | permissive | viriato22/The-Creator-3D | 86be7d0b33781124f87ad03b4199e30b3c3e6379 | 943b0d9545b590e67775bc208f54f5132792daa2 | refs/heads/master | 2021-08-30T12:14:02.363208 | 2017-12-17T22:21:21 | 2017-12-17T22:21:21 | 111,550,666 | 0 | 0 | null | 2017-11-21T13:11:47 | 2017-11-21T13:11:46 | null | UTF-8 | C++ | false | false | 9,368 | cpp | #include "AssetsWindow.h"
#include "Application.h"
#include "ModuleEditor.h"
#include "Resource.h"
#include "ModuleResources.h"
#include "ModuleTextureImporter.h"
#include "tinyfiledialogs.h"
#include "Texture.h"
#include "ModuleFileSystem.h"
#include "ModuleScene.h"
#include "Data.h"
AssetsWindow::AssetsWindow()
{
a... | [
"elsuperchowchow@gmail.com"
] | elsuperchowchow@gmail.com |
108410c7638d389054ca1680cc61072e7ae1f9d8 | 1997dac27478dee3b55c4d9b3449fab837a95ca9 | /MinCut.cpp | c3475912e11554839d883dcd05d9e8839f514771 | [] | no_license | ming5656/581-competive | 4dffedd4438bdaab6d9cd97f558ecde022b0d3f0 | fe4dc43d9a44e9ef2e545ed185209d58a5cacaa7 | refs/heads/master | 2021-09-03T18:35:22.602147 | 2018-01-11T04:19:23 | 2018-01-11T04:19:23 | 111,436,633 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,539 | cpp | #include <bits/stdc++.h>
#define oo 0x3f3f3f3f
#define ll long long
using namespace std;
ll mp[10002][10002];
int n,m;
bool combine[10002];
ll minC=oo;
void ss(int &s,int &t){
bool vis[n];
int w[n];
memset(vis,0,sizeof(vis));
memset(w,0,sizeof(w));
int tmpj=9999;
for(int i=0;i<... | [
"noreply@github.com"
] | noreply@github.com |
1c304e56f751a460fbc7fca06b6ca555a7dcd363 | 7b5ad3d593376094cd505bc1b22f82743f9d2c93 | /src/shared/headers/renderer.h | ef92cadf05f0928b74f7dbe08c55d8814e49db04 | [] | no_license | RyanLadley/ArcadeGL | 5620203eee78829694d7246708d4205598051bc2 | 6a3ca1440f04c09a667f08573b6753f310c36f4a | refs/heads/master | 2016-09-13T17:10:11.337605 | 2016-05-28T04:02:44 | 2016-05-28T04:02:44 | 59,177,959 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 578 | h | #ifndef RENDERER_H
#define RENDERER_H
#define GLEW_STATIC
#define GLM_FORCE_RADIANS
#include <GL/glew.h>
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
#include <glm/ext.hpp>
#include "shader.h"
#include "texture.h"
class Renderer{
private:
Shader shader;
const ... | [
"ladley.ryan@gmail.com"
] | ladley.ryan@gmail.com |
f3c388a69cb0b1af055e1906faca047e981f45ee | 2e60e0c889854cfb15ba31d9b95be05002b1002e | /10807.cpp | d1e944966905790e98bab054b54fc79be378fd80 | [] | no_license | tlstk1101/Baekjoon | 03315f15df0421993c947a631c94c29d8824914f | d668be8f24a7c62772bbeea9f1b731e14ff7aa9a | refs/heads/master | 2020-04-21T11:51:05.166301 | 2020-03-26T06:18:52 | 2020-03-26T06:18:52 | 169,539,525 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 279 | cpp | #include <iostream>
using namespace std;
int main() {
int N, v, count = 0;
cin >> N;
int *Arr = new int[N];
for (int i = 0; i < N; i++) {
cin >> Arr[i];
}
cin >> v;
for (int i = 0; i < N; i++) {
if (Arr[i] == v)
count++;
}
cout << count << endl;
return 0;
} | [
"tlstk1101@gmail.com"
] | tlstk1101@gmail.com |
089acab2964eb85e83d17b1a0e60f15a971e402b | f3f7cf4a65cc3c9354ad04d86b14e853d34f7c08 | /Module_03/ex01/ScavTrap.hpp | 8b74b74a00d3fad9abde85d78742369682387f9f | [] | no_license | hamanmax/Piscine_CPP | 4aadce72e3feee00e4ca274dd68a876da785f36d | 18d62d0f2a4ec4023b2f167d4e63504b90253259 | refs/heads/master | 2023-04-07T02:17:12.599736 | 2021-04-19T09:18:36 | 2021-04-19T09:18:36 | 348,053,922 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,557 | hpp | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ScavTrap.hpp :+: :+: :+: ... | [
"mhaman@student.le-101.fr"
] | mhaman@student.le-101.fr |
19be1e7a9e43270ba46ac727c05b64054de56be1 | 0224a30ff811a65e452a32143ed1d7a73aebc3be | /src/ui_interface.h | 96695c106b6377b601259d05911818ddd6f0731c | [
"MIT"
] | permissive | xiaolin1579/TDC | 893667bfd0bc83e43cb11b0e7a03eb41572837c2 | c5aadc1676cc9bdb7e558500c55944d3a78fb8be | refs/heads/TDC | 2022-10-06T09:07:45.172219 | 2020-05-30T04:58:52 | 2020-05-30T04:58:52 | 267,499,071 | 0 | 0 | MIT | 2020-05-28T10:51:14 | 2020-05-28T05:12:24 | null | UTF-8 | C++ | false | false | 6,651 | h | // Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2012 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_UI_INTERFACE_H
#define BITCOIN_UI_INTERFACE_H
#include <string>
#include "ut... | [
"sergey.kopnov@gmail.com"
] | sergey.kopnov@gmail.com |
c79ab02de0b4faa7991bbff070a575ed5a24d310 | 33d3a88e0f52dd89a4fb358617d464c8626e364c | /tests/set_tests.cpp | 848f8ee8fb9aa5189d3d3a84f047657cd0a30d93 | [] | no_license | tuan9999/Containers | d5f89e807ce8e1efbfdcacb7661fb5e862b18ac9 | 63ee02c0c6f704cd9b6ebe2fc1a51122ccb9d941 | refs/heads/main | 2023-04-07T20:03:56.757151 | 2021-04-12T14:36:12 | 2021-04-12T14:36:12 | 325,959,087 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,163 | cpp | //
// Created by Tuan Perera on 27.02.21.
//
#include <set>
#include "gtest/gtest.h"
#include "../library.h"
TEST(SetTest, ContructorTests) {
ft::set<int> fs1;
std::set<int> ss1;
fs1.insert(230);
fs1.insert(20);
ss1.insert(230);
ss1.insert(20);
ft::set<int> fs2(fs1.begin(), fs1.end());
std::set<int> ss2(ss... | [
"tuanperera@gmail.com"
] | tuanperera@gmail.com |
636bf6385d5fa90f2e225caffdc7933e4597a3db | 8442f074cfeecb4ca552ff0d6e752f939d6326f0 | /996A Hit the Lottery.cpp | a16d5d1df232aa18f1aed28522114a6226c231e4 | [] | no_license | abufarhad/Codeforces-Problems-Solution | 197d3f351fc01231bfefd1c4057be80643472502 | b980371e887f62040bee340a8cf4af61a29eac26 | refs/heads/master | 2021-06-15T16:35:07.327687 | 2021-03-23T17:29:49 | 2021-03-23T17:29:49 | 170,741,904 | 43 | 32 | null | null | null | null | UTF-8 | C++ | false | false | 287 | cpp | #include<bits/stdc++.h>
#include<stdio.h>
using namespace std;
#define ll long long
int main()
{
ll m,n,t,a,b,c,d,i,j,k,x,y,z,ans;
cin>>n;
a=n/100;b=n%100;
c=b/20; d=b%20;
x=d/10; y=d%10;
i=y/5; j=y%5;
ll p=a+c+x+i+j;
cout<<p<<endl;
return 0;
}
| [
"abufarhad15@gmail.com"
] | abufarhad15@gmail.com |
0232178d63c94de08f67f6212dae60fae0758931 | 301ed54244fd41502fd6f23a2e016c6e0cfba2dd | /07 CSES/04 Graph Algorithms/17.cpp | 419414594358506b522f8649885a7053ae665bff | [] | no_license | iCodeIN/Competitive-Programming-4 | 660607a74c4a846340b6fb08316668057f75a7ba | 05b55d2736f6b22758cd57f3ed5093cf8a2f4e2f | refs/heads/master | 2023-02-22T12:53:39.878593 | 2021-01-28T10:57:50 | 2021-01-28T10:57:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,027 | cpp | // Game Routes
#include <bits/stdc++.h>
using namespace std;
#define en "\n"
#define INF (int) 9e18
#define HELL (int) (1e9 + 7)
#define int long long
#define double long double
#define uint unsigned long long
#define pii pair<int, int>
#define pb push_back
#define fs first
#define sc second
#define size(a) (int) a.si... | [
"yashjain0530@gmail.com"
] | yashjain0530@gmail.com |
c3cd55bd8cf0df35c44d5bf5cebcc4942847e288 | f2c2d1266bf0ecb15d2606b41dea0333cdcb287e | /src/etat/etat26.h | 2ffef377f3fb0860e1ffd710c969b1d9f659994b | [] | no_license | HexaRAM/GL | 509df1b67e2ae00056620678bc277eb4ec104189 | 5fd815494eadd7d07dbdf58d97bb72dc951a3df4 | refs/heads/master | 2021-01-22T06:54:46.726257 | 2015-04-02T22:34:20 | 2015-04-02T22:34:20 | 31,501,898 | 0 | 1 | null | 2015-03-24T16:27:08 | 2015-03-01T16:13:19 | C++ | UTF-8 | C++ | false | false | 389 | h | #if !defined ( Etat26_H )
#define Etat26_H
#include <string>
#include "../automate/automate.h"
#include "../symbole/symbole.h"
#include "etat.h"
using namespace std;
class Etat26 : public Etat {
public:
Etat26(string name);
Etat26();
virtual ~Etat26();
void print() const;
bool transition(Automat... | [
"root@debian"
] | root@debian |
d2314a373d443013167b2145efb0a85d931e06ca | c0f901fe1531ad06bdb1f4914f5ffb432ff3f97c | /include/base/ext/img_codecs/decoder/png.h | 852c825e0555043e8f430b324ee298ec84b9ca51 | [] | no_license | LitingLin/base-libs | c4a43d03cc258bf0a4dc5b9ec856151457261e0d | a8ad78eb27dc39ed240ce684ff9967745e4f0af3 | refs/heads/master | 2021-06-18T20:02:48.425819 | 2021-02-18T14:00:00 | 2021-02-18T14:00:00 | 177,100,956 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 765 | h | #pragma once
#ifdef HAVE_LIB_PNG
#include <base/ext/img_codecs/common.h>
#include <png.h>
#include <vector>
#include <cstdint>
namespace Base
{
class IMAGE_CODECS_INTERFACE PNGDecoder
{
public:
PNGDecoder();
PNGDecoder(const PNGDecoder&) = delete;
PNGDecoder(PNGDecoder&& object) noexcept;
~PNGDecoder();
... | [
"linliting06@live.com"
] | linliting06@live.com |
853a0d626039f5a1aebf69f4cc1baa9615cc49ec | af0518e315d51aa55992dcaeb2211145a8379b6b | /Arduino/Arduino/setupUploadViaBluetooth/setupUploadViaBluetooth.ino | 105c68a5195adb4062f0a09a59a79cc0b9a6526b | [] | no_license | kram1138/Capstone-G17 | 6ec9c61b6159badc4233d90c6e47dec88a65c92e | 51666b237a1c3ec711e924501d57fc51cbd8d2b9 | refs/heads/master | 2021-09-10T06:39:46.223630 | 2018-03-21T17:37:29 | 2018-03-21T17:37:29 | 105,687,027 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 316 | ino | #include <SoftwareSerial.h>
SoftwareSerial BTSerial(8, 9); // RX, TX
void setup() {
Serial.begin(9600);
Serial.println("Enter AT commands:");
BTSerial.begin(38400);
}
void loop() {
if (BTSerial.available())
Serial.write(BTSerial.read());
if (Serial.available())
BTSerial.write(Serial.read());
}
| [
"amanjyot2911@gmail.com"
] | amanjyot2911@gmail.com |
04a882e0c0237b5e8c86811b6c1c6969121487bb | 58cfaabdf22bd7b378c38ca7080d1129dd7cd451 | /astl/iterator/iterator.hpp | 7e07f1cd7d7b60ce4e689004bf92f172b69f497a | [] | no_license | PeihongKe/aSTL | 522625aa22ba52590a59eb06b9fb668d2b42606f | 55c16908f78e0f529082a18006361d853a53712f | refs/heads/master | 2021-01-19T07:30:30.484935 | 2017-07-10T22:12:36 | 2017-07-10T22:12:36 | 73,131,560 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,992 | hpp | #ifndef _ANOTHERSTL_ITERATOR_
#define _ANOTHERSTL_ITERATOR_
#include "iterator_traits.hpp"
namespace anotherSTL
{
template<typename Category, typename T, typename Distance = ptrdiff_t,
typename Pointer = T*, typename Reference = T&>
struct iterator
{
typedef T value_type;
typedef Pointer pointer;
typede... | [
"pkukph@hotmail.com"
] | pkukph@hotmail.com |
10d8d8ab9c0915444494438d06055b6302bb8540 | 7062078795d41f7f0c053b2f8837205022d0377f | /Laboratoire9/EmployeGUI/employegui.h | 2bb7b98375eea17d937e63fb90603c401cba342b | [] | no_license | PMarcL/LaboratoireGIF1003 | 551f80bae25d4bb80ebbbe0ba8231b5b47e34f85 | e21c90044fcdae335b5a1e19ed618973a1b0165f | refs/heads/master | 2021-01-19T12:35:12.317014 | 2017-04-07T18:48:20 | 2017-04-07T18:48:20 | 82,325,693 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 398 | h | #ifndef EMPLOYEGUI_H
#define EMPLOYEGUI_H
#include <QtGui/QMainWindow>
#include "ui_employegui.h"
#include "Entreprise.h"
class EmployeGUI: public QMainWindow {
Q_OBJECT
public:
EmployeGUI(QWidget *parent = 0);
~EmployeGUI();
private slots:
void dialogCommis();
void dialogSupprimerEmploye();
private:
labo10:... | [
"pmleva@hotmail.com"
] | pmleva@hotmail.com |
b785ff3a4ac45e737bd45b4f7e7d69cc897c24ca | 51f6ba1832964ed9c5992bcdef1bef9b86b8b727 | /src/interpreter/bytecode-array-builder.h | 04c08f46c4abac0d17168af4427f5dc6020d1425 | [
"SunPro",
"BSD-3-Clause",
"bzip2-1.0.6"
] | permissive | jonasmattisson/v8 | b5f5d9a08ae325563ecaaa892e6e3bfe8c2e99e8 | 0a7e08ef26fb6afe473f7a51809207894c588f84 | refs/heads/master | 2020-04-05T07:14:12.471288 | 2018-11-08T06:51:53 | 2018-11-08T07:29:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 29,130 | h | // Copyright 2015 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef V8_INTERPRETER_BYTECODE_ARRAY_BUILDER_H_
#define V8_INTERPRETER_BYTECODE_ARRAY_BUILDER_H_
#include "src/ast/ast.h"
#include "src/base/compiler-... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
2c2b2c3452a1a3f4915766e83eadf2b4eaff7600 | ecaa999b7550e3449ad633c7e878a9f658b600c8 | /Private/BlueprintChecker.cpp | 805db0f3d84df6a2607b9c31ec48e2dc64f38f27 | [] | no_license | Hengle/blueprint-checker | fa2edb51f2271226f0da98181c0a589a06e11506 | 7ee396f60956e8a48df28206b9fd68d6c4ee838a | refs/heads/master | 2023-07-16T07:07:55.105112 | 2021-08-25T10:11:04 | 2021-08-25T10:11:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,561 | cpp | #include "BlueprintChecker.h"
#include "Util/FPlatformAgnosticChecker.h"
#include "RequiredProgramMainCPPInclude.h"
#include "easyargs/easyargs.h"
FEngineLoop GEngineLoop;
bool GIsConsoleExecutable = true;
bool GIsTestMode = false;
EasyArgs* EzArgs = nullptr;
std::string Mode;
std::string PathToFile;
void ExtractFil... | [
"mr.prikota@gmail.com"
] | mr.prikota@gmail.com |
e5d0029b0a8702673179bfb9725356e3dfe83df4 | 4eb5659ea87745215692b863ccc8007e9e6d55dc | /src/geo2d/build/temp.linux-x86_64-2.7/sip_geo2dcppstdvector0600stdvector2400.cpp | b5813353b97d1b16fd815079e75e9573d9cb7ab6 | [] | no_license | rbianchi66/pyqt_md | a256bbd9f29a519d24398ee215d296780d0e354f | 11d5f06c9e79cc45a0e849fdfedf73004133e792 | refs/heads/master | 2021-01-10T05:40:19.525779 | 2019-01-04T23:13:36 | 2019-01-04T23:13:36 | 44,700,909 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 5,733 | cpp | /*
* Interface wrapper code.
*
* Generated by SIP 4.10.2 on Thu Mar 12 16:30:15 2015
*/
#include "sipAPI_geo2dcpp.h"
#line 736 "/home/rbianchi/projects/draw_areas/src/sipbin/stl.sip"
#include <vector>
#line 12 "sip_geo2dcppstdvector0600stdvector2400.cpp"
extern "C" {static void assign_std_vector_0600std_vector... | [
"rbianchi66@gmail.com"
] | rbianchi66@gmail.com |
75a2c7ed4123be9dae8595bb8e2c18764a067709 | 5afea21193abd573a5b7271c6059bec1a613cc41 | /c++/1016.cpp | cc5769a0674ece90d6670c37131ccb55870a4622 | [] | no_license | AugustoDipNiloy/URI-Online-Judge-Solution | 8ff9cd40b493fc77928e69aa17af458437d115fa | 8a15a6af86f45ae6498702012ae9c1454fbb60ef | refs/heads/master | 2022-11-28T19:08:20.252312 | 2020-08-10T10:55:49 | 2020-08-10T10:55:49 | 283,962,707 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 123 | cpp | #include<stdio.h>
int main ()
{
int A,B;
scanf("%d",&A);
B=2*A;
printf("%d minutos\n",B);
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
53d2a74611445cd01af5b4dedb9b766ba6650cb2 | 27b2308ed09696f16580dd01c3181d86db661265 | /rasterizer/CoreLib/LibIO.h | 4a63f05788bd1bc2b482874b728fab6b32c3f46c | [] | no_license | cardadfar/740-project | ed32c5efc0d9692841e0047b0a38680f05183391 | f2f5b9f48c63a47fea6c431c6be40645839e993c | refs/heads/main | 2023-01-29T06:17:39.336379 | 2020-12-11T23:53:06 | 2020-12-11T23:53:06 | 300,440,791 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 974 | h | #ifndef CORE_LIB_IO_H
#define CORE_LIB_IO_H
#include "LibString.h"
#include "Stream.h"
#include "TextIO.h"
namespace CoreLib
{
namespace IO
{
class File
{
public:
static bool Exists(const CoreLib::Basic::String & fileName);
static CoreLib::Basic::String ReadAllText(const CoreLib::Basic::S... | [
"odadfar@ghc50.ghc.andrew.cmu.edu"
] | odadfar@ghc50.ghc.andrew.cmu.edu |
f094b08452c27943d54f2692ec025c7f47b3d1e5 | c64e0472231bee7947145e771ddea2c1cacb9845 | /uppsrc/CtrlLib/ChCoco.cpp | b415181170f971e2593e0159291c4f442c986940 | [
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | allenk/ultimatepp | 842ff365c741f08ff4692595cba301b8ef26f924 | 6e0a82bddb3506670099286449235d09a1d6df5e | refs/heads/master | 2021-01-03T19:36:25.758177 | 2020-02-12T18:35:59 | 2020-02-12T18:35:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,207 | cpp | #include "CtrlLib.h"
#include "ChCocoMM.h"
#ifdef PLATFORM_COCOA
namespace Upp {
Image CocoImg(Color bg, int type, int value, int state)
{
Size isz(140, 140);
ImageDraw iw(DPI(isz));
iw.DrawRect(0, 0, DPI(isz.cx), DPI(isz.cy), bg);
Coco_PaintCh(iw.GetCGHandle(), type, value, state);
return iw;
}
... | [
"cxl@f0d560ea-af0d-0410-9eb7-867de7ffcac7"
] | cxl@f0d560ea-af0d-0410-9eb7-867de7ffcac7 |
d5b71acc738ed149851e119369a6bec2e12af357 | fab5ce813034eb2dffa7699f72bd0c9baadfbe1f | /lab_5/lab/RangeArray.h | 9e79641401175eca4251d090b468cb8e8db418c2 | [] | no_license | leehuhlee/Programming-lab-1 | 5c100e8ac9a9bbe9d04d748df29baf8d78b37d49 | 18160243ced10fb496f093ab82696d32d6fce0bd | refs/heads/master | 2020-09-10T16:12:58.738404 | 2019-11-14T17:58:32 | 2019-11-14T17:58:32 | 221,754,420 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 236 | h | #include "Array.h"
class RangeArray : public Array{
protected:
int low;
int high;
public:
RangeArray(int, int);
~RangeArray();
int baseValue();
int endValue();
int& operator[](int);
int operator[](int) const;
}; | [
"leehuhlee@gmail.com"
] | leehuhlee@gmail.com |
ce6ef54f1f9fcf91e4b4fc2281207657d1c58507 | dca653bb975528bd1b8ab2547f6ef4f48e15b7b7 | /branches/wx-2.9.0.1/src/osx/core/printmac.cpp | f9ee5197cddd274628ddf3fcc7b2f6064b228dc5 | [] | no_license | czxxjtu/wxPython-1 | 51ca2f62ff6c01722e50742d1813f4be378c0517 | 6a7473c258ea4105f44e31d140ea5c0ae6bc46d8 | refs/heads/master | 2021-01-15T12:09:59.328778 | 2015-01-05T20:55:10 | 2015-01-05T20:55:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,967 | cpp | /////////////////////////////////////////////////////////////////////////////
// Name: src/osx/core/printmac.cpp
// Purpose: wxMacPrinter framework
// Author: Julian Smart, Stefan Csomor
// Modified by:
// Created: 04/01/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart, Stefan Csomor
// Lice... | [
"RD@c3d73ce0-8a6f-49c7-b76d-6d57e0e08775"
] | RD@c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 |
5c5a31934df39ff2a7604760b2c8aa53911ee1df | 13a4da50a11b58e77052bfa26fd9abc88c17f4a2 | /src/mvc/surgeon.h | 94ed521bfe7701c2b458d08c0143d715f3a293e6 | [
"MIT"
] | permissive | ItsMoss/mSurgical | 8541ac807b56700f2edd25cc05cd1b262a72f6d7 | 855f60ae2e171d69857e5627d4ff623a2a10e850 | refs/heads/master | 2020-03-27T08:43:30.155196 | 2018-08-27T10:58:23 | 2018-08-27T10:58:23 | 146,281,775 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,924 | h | #ifndef __SURGEON_H__
#define __SURGEON_H__
#include "surgery.h"
class Surgeon {
public:
Surgeon(); // default constructor 0
Surgeon(QString fname, QString lname); // constructor 1
Surgeon(QString fname, QString lname, std::vector<Surgery> surgeries); // constructor 2
Surgeon(const Surge... | [
"mmjacks4@ncsu.edu"
] | mmjacks4@ncsu.edu |
fb135dc1bbdd90fcf8892d8e34d2fbd5f7d389f1 | be3167504c0e32d7708e7d13725c2dbc9232f2cb | /mame/src/mame/includes/suprridr.h | 99c32252cd3f008e1c6de9d5ec99b65297ed1334 | [] | no_license | sysfce2/MAME-Plus-Plus-Kaillera | 83b52085dda65045d9f5e8a0b6f3977d75179e78 | 9692743849af5a808e217470abc46e813c9068a5 | refs/heads/master | 2023-08-10T06:12:47.451039 | 2016-08-01T09:44:21 | 2016-08-01T09:44:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,629 | h | /*************************************************************************
Venture Line Super Rider driver
**************************************************************************/
class suprridr_state : public driver_device
{
public:
suprridr_state(const machine_config &mconfig, device_type type, co... | [
"mameppk@199a702f-54f1-4ac0-8451-560dfe28270b"
] | mameppk@199a702f-54f1-4ac0-8451-560dfe28270b |
a4adaff600c74c7c39aec726bc6d0c8e489d2e48 | d5500d19ec504f1829bdb0b44bc0a8daab523365 | /primary/project1/SECTION.CPP | 4b9dcc6c6a85920c4af389a485bade4926476f2e | [] | no_license | NKcell/dishui | 9942d35aa655f087a6886630a590819a849ad836 | 690ef788ccc82dc621a2ce74a01955d50823a54d | refs/heads/master | 2021-01-09T12:35:10.775459 | 2020-04-19T07:24:00 | 2020-04-19T07:24:00 | 242,302,052 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,522 | cpp | #include <stdio.h>
#include"stdafx.h"
#include "resource.h"
#include <commctrl.h>
#include"PEDEAL.h"
extern HINSTANCE happInstance;
void initDialogSec(HWND hDlg){
LV_COLUMN lv;
HWND hListProcess;
//初始化
memset(&lv,0,sizeof(LV_COLUMN));
hListProcess = GetDlgItem(h... | [
"517343690@qq.com"
] | 517343690@qq.com |
f6d852d6a0fda2075e5da8ba8ac663fed60c490e | 99d054f93c3dd45a80e99be05f3f64c2c568ea5d | /Online Judges/Neps Academy/Distância de Manhattan (OBI2013)/main.cpp | 9bb26104b462dd369c883346899188c4d2dd764e | [
"MIT"
] | permissive | AnneLivia/Competitive-Programming | 65972d72fc4a0b37589da408e52ada19889f7ba8 | f4057e4bce37a636c85875cc80e5a53eb715f4be | refs/heads/master | 2022-12-23T11:52:04.299919 | 2022-12-12T16:20:05 | 2022-12-12T16:20:05 | 117,617,504 | 74 | 21 | MIT | 2019-11-14T03:11:58 | 2018-01-16T01:58:28 | C++ | UTF-8 | C++ | false | false | 563 | cpp | #include <iostream>
using namespace std;
int main()
{
int x1, x2, y1, y2;
cin >> x1 >> y1 >> x2 >> y2;
/*
Euclidean distance is a straight line between two points
shortest path between two points (diagonal map).
Manhattan distance is not likely to euclidean, suppose there are many... | [
"annelivia16@gmail.com"
] | annelivia16@gmail.com |
6c7ad43270bf33aa0f1b2656c99b94feaecfbc63 | 6085caf22b55ea6541bc188c83606b81e081d398 | /comancpipeline/Tools/src/diffequations.cpp | 7d20061a9e6a5510d58157a3938142903f59142a | [
"MIT"
] | permissive | SharperJBCA/COMAPreduce | 55f2bf38bccc46d2c5e64c4ea7dcaaff3f65f3a3 | 0a6bcd4c23263c732e9a126d0379bb05afad3277 | refs/heads/master | 2023-08-17T14:13:38.030490 | 2022-07-13T16:39:07 | 2022-07-13T16:39:07 | 169,560,696 | 5 | 2 | MIT | 2023-07-06T22:20:27 | 2019-02-07T11:24:07 | C++ | UTF-8 | C++ | false | false | 46,428 | cpp | /*************************************************************************
ALGLIB 3.16.0 (source code generated 2019-12-19)
Copyright (c) Sergey Bochkanov (ALGLIB project).
>>> SOURCE LICENSE >>>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public Lic... | [
"heylookim@gmail.com"
] | heylookim@gmail.com |
ed744c5e072519770af5710c6f15b433ccbc50eb | a0dff3815ca1d52bb82d661bb400024830d7f7c7 | /cpp/lib/inc/lmt84.h | 948542a6be7afe4b1e8396986b35f6d1c83b13b2 | [] | no_license | creator83/STM32F030K6 | bf90639d281dc7eeb8db08ab4044db9db37e2116 | 4bc9e20eecf9633b8d70232f928e9e13b7d0c921 | refs/heads/master | 2020-04-12T02:28:19.329214 | 2017-08-13T17:42:26 | 2017-08-13T17:42:26 | 44,557,917 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 301 | h | #include "device.h" // Device header
#ifndef LMT84_H
#define LMT84_H
class Lmt84
{
//variables
public:
private:
static uint16_t adcGrid [16];
static uint8_t delta [15];
public:
Lmt84 ();
uint16_t calcDec (uint16_t);
uint8_t calc (uint16_t);
private:
};
#endif
| [
"creator83@yandex.ru"
] | creator83@yandex.ru |
5c026d099792a02ed5eb5d95e0b3a3f871de618d | ac3351c78bde37302fb21d775b179c34ca547c06 | /UVA.C - CPP/10219 - Find the ways.cpp | e8a3c59033281bd89ccd513a3b0d2bc0e527d7cc | [] | no_license | sajal-jayanto/Algorithm_ACM_problems | 0171e0ca03e6d8b49a15ac742a315fe9aeec54f1 | 8ce1cfc29686b0d69328718a29b03f9fb1e8f5e9 | refs/heads/master | 2021-11-23T19:06:58.815679 | 2021-11-13T17:46:27 | 2021-11-13T17:46:27 | 99,267,317 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,659 | cpp | #include <bits/stdc++.h>
using namespace std;
#define FF freopen("input.txt" , "r" , stdin);
#define sf scanf
#define pf printf
#define fs first
#define se second
#define pb push_back
#define ins insert
#define Lb l... | [
"sajaljayanto007@gmail.com"
] | sajaljayanto007@gmail.com |
b67ebf621d0bd0059fe19a294cb469344bfb32f8 | 1bd9bf74db6217b12760c14205880cd1f4b124e7 | /DSA/Cpp/reverse_integer.cpp | 59dd07347b4fc6182adcad8697ef43522437003e | [] | no_license | sanjanaprasad2k01/Hacktober-Fest-2021 | 5de191e50754cd3f1a28f6dd73861b39b01a0672 | 19b7b3df79ef22cb6c05b2d54d541e31353e1bab | refs/heads/master | 2023-08-12T08:49:36.650356 | 2021-10-07T14:43:40 | 2021-10-07T14:43:40 | 414,641,759 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 461 | cpp | class Solution {
public:
int reverse(int x) {
long int ans = 0;
//taking digits from back 1 by 1 and adding them in answer
while(x != 0)
{
ans = (ans * 10) + (x % 10);
x = x/10;
}
if(ans > INT_MAX || ans < INT_MIN)... | [
"noreply@github.com"
] | noreply@github.com |
25b42e028b872d7c2019dc32ff6cf5ccd32e1c4f | a7b08b050e8fb73943893719757322295df14f7e | /CsLabAssignment7.cpp | 2ec2c3948fe3303ffeff4ed92071e2bf6290c9ee | [] | no_license | BrandonMiramontes/Assignment7 | e7293e97c9d8e3d714be4e90b9994b8be9d898aa | b336a9e6396163057270f08b9ff15d95a79e93a5 | refs/heads/main | 2023-01-01T07:52:55.993855 | 2020-10-26T04:29:22 | 2020-10-26T04:29:22 | 307,260,477 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 564 | cpp | #include <iostream>
using namespace std;
int main()
{
int row1, rowtotal = 4, plus, column;
for (row1 = 0; row1 <= rowtotal; row1++)
{
for (column = rowtotal-row1; column >= 1; column--)
{
cout << " ";
}
for (plus = 1; plus <= 2 * row1-1; plus++)
{
cout << "+";
}
cout << ... | [
"noreply@github.com"
] | noreply@github.com |
f10a269459389e1f678cd37e5bbb8e10e1d3dc64 | 73f6151c2d014daefbdeec70ad072b6389a514ec | /windows/runner/main.cpp | 59f75c4c9704ac4bda8839845f58d15c54e398be | [] | no_license | keungsong/shop_clone | 3c7ed40661fa55d8596f765dc9aca23d13184a28 | ad71dfba5134c9042a0b4694647c09d3af30508d | refs/heads/main | 2023-07-11T05:47:27.814742 | 2021-08-23T16:48:49 | 2021-08-23T16:48:49 | 375,314,767 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,220 | cpp | #include <flutter/dart_project.h>
#include <flutter/flutter_view_controller.h>
#include <windows.h>
#include "flutter_window.h"
#include "run_loop.h"
#include "utils.h"
int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,
_In_ wchar_t *command_line, _In_ int show_command) {
... | [
"74707079+KeungXiongV@users.noreply.github.com"
] | 74707079+KeungXiongV@users.noreply.github.com |
b96fa461e38919929ea71410ed8eea5fb15d74da | 59e93f9d820dc5c2731eb2d141601d9e92831414 | /xy/include/mpl/equal.hpp | 50bfd4d5346b0621dbe50de9b65ba15a55493752 | [] | no_license | pgoodman/XY | 2ec759b3080871ee5a3e773a81da75fe1f823525 | 6e661ceb460019770f23084ed94c3c32cbdefa20 | refs/heads/master | 2020-05-27T17:11:44.116358 | 2013-09-26T19:27:20 | 2013-09-26T19:27:20 | 1,902,085 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,536 | hpp | /*
* equal.hpp
*
* Created on: Jun 28, 2011
* Author: Peter Goodman
*
* Copyright 2011 Peter Goodman, all rights reserved.
*/
#ifndef XY_EQUAL_HPP_
#define XY_EQUAL_HPP_
#include "xy/include/mpl/bool.hpp"
namespace xy { namespace mpl {
template <typename A, typename B>
class equal {
public:... | [
"peter.goodman@gmail.com"
] | peter.goodman@gmail.com |
cb2e7ec514a59e468001fdb4b22c0994e517b1d8 | 85016bd766e6a1f49986aac7b7d686a07d45ff60 | /lab5/lab5.cpp | 54cc962d102a314fb81d77fd464de9bdf464af58 | [] | no_license | UnmovableLibrary/lab5 | 69d0cb96b881ea7d281a7b6ad22f51b6d71dfb00 | b20a7ae584c7ccd4cd3e3b13413103eee80eea19 | refs/heads/master | 2020-05-09T13:24:19.685651 | 2015-04-29T21:26:42 | 2015-04-29T21:26:42 | 34,717,023 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,793 | cpp | #include <cmath>
#include <cstdlib>
#include <iostream>
#include "tga.h"
using namespace std;
#ifdef __APPLE__
#include <GLUT/glut.h> /* glut.h includes gl.h and glu.h*/
#else
#include <GL/glut.h> /* glut.h includes gl.h and glu.h*/
#endif
#define X_AXIS 1
#define Y_AXIS 2
#define Z_AXIS 3
#defin... | [
"theunmovablelibrary@gmail.com"
] | theunmovablelibrary@gmail.com |
92ff6be24c45bcb0d12dab8811a0f6939b79cb44 | c8496fcb2f12a32ff9b26aef021970a43213b3ff | /src/Joystick.h | b23fd428e0a13fed8ac6fa785d9b97b4dad7636f | [] | no_license | harsha7addanki/Joystick | d2dd8d0813b60045ce2dec7ec13bddcc43164bba | 064fea7df3b789c87208e00636f195ac3eef2ca7 | refs/heads/master | 2022-11-17T06:04:40.824954 | 2020-07-04T20:01:23 | 2020-07-04T20:01:23 | 267,725,400 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 455 | h | #ifndef Joystick_h
#define Joystick_h
#include "Arduino.h"
class Joystick
{
private:
int SW;
int VRx;
int VRy;
public:
Joystick::Joystick(int SW2,int VRx2,int VRy2);
int Joystick::GetX();
int Joystick::GetY();
int Joystick::GetBtn();
bool Joystick... | [
"harsha7addanki@gmail.com"
] | harsha7addanki@gmail.com |
3374174539b94701c52e929a763476a57ecb3e16 | c7043376d6aeca846bd9a43068cb929920d9cffc | /Modules/Core/Misc/xxhash.c | 13669b2a4d9f0c7d72f47ca6e5fad2ab34589286 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | GameTechDev/CMAA2 | c83537c31dc7d9a410bdbe40e86acc95ef689e1c | 071c6b0857559f4e36f614362e6d2aab1b61938a | refs/heads/master | 2023-03-31T06:23:40.810815 | 2023-01-03T22:53:15 | 2023-01-03T22:53:15 | 147,182,374 | 122 | 25 | Apache-2.0 | 2019-11-22T00:33:19 | 2018-09-03T09:28:37 | C++ | UTF-8 | C++ | false | false | 34,635 | c | /*
* xxHash - Fast Hash algorithm
* Copyright (C) 2012-2016, Yann Collet
*
* BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redis... | [
"filip.strugar@gmail.com"
] | filip.strugar@gmail.com |
d1d18edb5aefee9b3a4390723cf608d3533f6142 | c4790552abc608f491b7ac2a0b6dcd5826a5bd7c | /344A.cpp | 701ad934fdd4da6100529b8f122596d8b9573d0f | [] | no_license | jeffry1829/ojcode | bd03df14360e5c00e6463c3621de0cfeef88bb11 | 18a6fa3aa59e0d9c274f44f7dea060f70c91cbe8 | refs/heads/master | 2023-02-27T00:27:04.856978 | 2021-02-04T09:20:58 | 2021-02-04T09:20:58 | 286,199,256 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 357 | cpp | #include <bits/stdc++.h>
using namespace std;
int n, res = 1;
char s[5], _prev[5], *t;
main(void) {
cin.tie(0);
ios_base::sync_with_stdio(0);
cin >> n;
cin >> _prev;
strncpy(s, _prev, 2);
s[3] = '\0';
for (int i = 1; i < n; i++) {
cin >> s;
if (strcmp(s, _prev) != 0) res++;
swap(s, _prev);
}... | [
"jeffry1829@gmail.com"
] | jeffry1829@gmail.com |
0cab755dda888dc7fd7467bf9289757a1ebedb1d | 9dc6cb93169af80ffc1e055eaea2a7cbd2b139ec | /o2engine/src/app/application_base_interface.h | 0e5e717d8cfa9078354c1f2f7d3644b29752940b | [] | no_license | zenkovich/anphys-engine-svn | 2b745f8341f1cebde1863404e8cc55a0eaeb4c91 | 4fac80c014a0e0c39e1f0d821be1a062c626499c | refs/heads/master | 2020-06-09T16:58:33.065922 | 2015-01-15T17:37:05 | 2015-01-15T17:37:05 | 53,565,477 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,442 | h | #ifndef APPLICATION_BASE_INTERFACE_H
#define APPLICATION_BASE_INTERFACE_H
#include "public.h"
#include "util/singleton.h"
#include "util/input/input_message.h"
#include "util/callback.h"
OPEN_O2_NAMESPACE
class grRenderSystem;
class LogStream;
class FileSystem;
class Scheduler;
class TimeUtil;
class T... | [
"zenkovichan@gmail.com"
] | zenkovichan@gmail.com |
36dc32334f4c66f9d0b1fa7a75f2af4ebb8ee6d9 | a54b76d3cf3b5ea885bb26e408f0e47237318123 | /examples/httpserver/src/http_module_request_rewrite.cc | c991e55a8261b5380835889b76684b648a75f9f4 | [] | no_license | jacobwpeng/fxserver | 0e02a96967e8d6208f222fe3712fdd453cf85efd | a3057ec54de201fbdb095a69a5e113e342205b2b | refs/heads/master | 2021-01-23T07:20:43.156133 | 2017-03-22T08:49:26 | 2017-03-22T08:49:26 | 17,588,075 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,207 | cc | /*
* =====================================================================================
* Filename: http_module_request_rewrite.cc
* Created: 10:48:04 May 13, 2014
* Author: jacobwpeng
* Email: jacobwpeng@tencent.com
* Description:
*
* ==================================... | [
"jacobwpeng@tencent.com"
] | jacobwpeng@tencent.com |
077d8afcf99d8763bb834d5f2f5c07d1d4628fe7 | f4cfafe698191c6a72fae71850dc82878a5afc3e | /third_party/gfootball_engine/src/onthepitch/player/controller/strategies/special/celebration.hpp | 7efc1832d899a31fda2749b76857f1147718be2a | [
"Unlicense",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | nczempin/gfootball | 3e9478a5a970f47de2fe59afd98951f1a52efed3 | 617e9cb6d48b4ac7187b9b3de68bd4ab44ea528e | refs/heads/master | 2020-06-01T20:21:40.815706 | 2019-07-12T21:15:16 | 2019-07-12T21:15:16 | 190,915,700 | 0 | 0 | Apache-2.0 | 2019-07-12T21:15:17 | 2019-06-08T17:22:31 | Python | UTF-8 | C++ | false | false | 966 | hpp | // Copyright 2019 Google LLC & Bastiaan Konings
// 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... | [
"michalski@google.com"
] | michalski@google.com |
e5634a829e54b4b0dd26a00b425d9b1f702e9f42 | bf20446a240d654d856dd237434b53d98bc8c62a | /xml_result_timeout.h | e737df0013362c9e16a4535989d35772a3982557 | [] | no_license | 2ejm/xiz-rcz | 96d32221d7dbdac8c4026a231e4268ece1110322 | f5ccf784025f1e5f67861b68b61ae61fda298c95 | refs/heads/master | 2021-03-07T12:43:32.159442 | 2020-03-10T10:08:36 | 2020-03-10T10:08:36 | 246,267,263 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 441 | h | #ifndef _XML_RESULT_TIMEOUT_H_
#define _XML_RESULT_TIMEOUT_H_
#include "xml_result.h"
/**
* \brief Timeout XmlResult
*
* Used for File API.
*/
class XmlResultTimeout: public XmlResult
{
public:
XmlResultTimeout ();
XmlResultTimeout (const Glib::ustring & message);
static Glib::RefPtr <XmlResult> cre... | [
"ljm6231@crz-tech.com"
] | ljm6231@crz-tech.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.