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 986
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 145
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 122
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
c76901b79ddc1fde28ec5b381a51268310540deb | 5b4613175235957af30f4982b26f58ca7e0d126e | /source/GcLib/directx/VertexBuffer.hpp | 4ffb6df07bdf3bfd8ac74c43be84f856e18db866 | [] | no_license | illusion-star/Touhou-Danmakufu-ph3sx-2 | b6b8596a6fa15a98768239d1ec5ae4f537f2de60 | 3a0f5329aae41f9191ec28c67191882ea303f24f | refs/heads/master | 2023-08-01T18:04:09.349811 | 2021-10-05T03:12:03 | 2021-10-05T03:12:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,436 | hpp | #pragma once
#include "../pch.h"
#include "DxConstant.hpp"
namespace directx {
struct BufferLockParameter {
UINT lockOffset = 0U;
DWORD lockFlag = 0U;
void* data = nullptr;
size_t dataCount = 0U;
size_t dataStride = 1U;
BufferLockParameter() {
lockOffset = 0U;
lockFlag = 0U;
data = nullptr;
... | [
"32347635+Natashi@users.noreply.github.com"
] | 32347635+Natashi@users.noreply.github.com |
0c7e412c1bb7d289b054db0581581c8870fbda15 | c6b2a8cd924e89e484a2b00b8cc5c8e8a6ed349e | /ArkTransactions.ino | 13d10f5311d1f5b0c9afe4154a53534008eb6ed9 | [] | no_license | PhillipJacobsen/Ark_IOT_BasicDemo1 | 058e1c1080d48b0f1b390d1b0cc94e53a699c87b | 3fba6c96715df914f0f02ee5c5a7b18c9871c1e2 | refs/heads/master | 2020-05-01T12:26:10.263811 | 2019-03-24T23:23:28 | 2019-03-24T23:23:28 | 177,465,556 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,202 | ino | /********************************************************************************
This file contains functions that interact with Ark client C++ API
code here is a hack right now. Just learning the API and working on basic program flow and function
*******************************************************************... | [
"33669966+PhillipJacobsen@users.noreply.github.com"
] | 33669966+PhillipJacobsen@users.noreply.github.com |
cc2dcfea52939245f47000c480e053e21ef0e4b9 | 9a3f8c3d4afe784a34ada757b8c6cd939cac701d | /leetFindCorrNodeOfTreeInClone.cpp | 8750b92a73c27e8c0e4e63a06a93df7154ee98d7 | [] | no_license | madhav-bits/Coding_Practice | 62035a6828f47221b14b1d2a906feae35d3d81a8 | f08d6403878ecafa83b3433dd7a917835b4f1e9e | refs/heads/master | 2023-08-17T04:58:05.113256 | 2023-08-17T02:00:53 | 2023-08-17T02:00:53 | 106,217,648 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,344 | cpp | /*
*
//******************************1379. Find a Corresponding Node of a Binary Tree in a Clone of That Tree.******************************
https://leetcode.com/problems/find-a-corresponding-node-of-a-binary-tree-in-a-clone-of-that-tree/description/
*****************************************************************... | [
"kasamsaimadhavk@gmail.com"
] | kasamsaimadhavk@gmail.com |
94a9f361206b04755a7660397ce84d06744a6353 | 0865e1c71ad4ceb5502377d1d94e672f9ab8b08d | /Greatest_Common_Divisor.cpp | 796187e04528bcf0eea919eb4986fbf042541ab3 | [] | no_license | xznxzy/Algorithm | c57cf9824c7ee96b487851842aa7362ed0adccaf | 7eedb7460e860a735e89e2f6a50054a6e93ba1a5 | refs/heads/master | 2021-09-18T20:35:36.869818 | 2018-07-19T15:27:09 | 2018-07-19T15:27:09 | 105,955,013 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,213 | cpp | //
// main.cpp
// Greatest_Common_Divisor
// 最大公约数
// 1.题目描述:求解两个整数(不能是负数)的最大公约数(要求两数不能同时为0)
// 2.方法:
// (1)穷举法
// (2)相减法
// (3)欧几里得辗转相除法
// (4)欧几里得辗转相除法:递归实现
// Created by zhangying on 10/5/17.
// Copyright © 2017 zhangying. All rights reserved.
//
//穷举法
unsigned long GCD1(unsigned long a, unsigned long b){
... | [
"ying5@g.clemson.edu"
] | ying5@g.clemson.edu |
7de5d53b837d791d3125a432884b505633281464 | 855521b1d4bbc4a2f42b91bd1c2bf3c0b68c439c | /source/engine/Component.cpp | 62b5ec8a4159291ef98a3e70170e5f930948c63d | [] | no_license | asam139/gameEngine | 30995b6eb64a8679b1daeda8e2746795d3375f08 | 55257426bc02ad3a2292d782d841a5474a6ca900 | refs/heads/master | 2021-09-07T15:01:21.988625 | 2018-02-24T12:12:11 | 2018-02-24T12:12:11 | 115,192,409 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 358 | cpp | //
// Created by Saul Moreno Abril on 04/02/2018.
//
#include "Component.h"
#import "GameObject.h"
const std::size_t Component::Type = std::hash<std::string>()(TO_STRING(Component));
bool Component::IsClassType(const std::size_t classType) const {
return classType == Type;
}
GameObject& Component::getGameObjec... | [
"sam6.13.93@hotmail.com"
] | sam6.13.93@hotmail.com |
a4f6d0e543c002fa28f2ef1867a35dc5e5bf21e6 | b146b54363a20726b3e1dc0ef0fadc82051234f9 | /Lodestar/symbolic/OrdinaryDifferentialEquation.hpp | 8b4520a185ba000261308d0981d36d96e4bc0ccb | [
"BSD-3-Clause"
] | permissive | helkebir/Lodestar | 90a795bbbd7e496313c54e34f68f3527134b88ce | 465eef7fe3994339f29d8976a321715441e28c84 | refs/heads/master | 2022-03-12T23:16:03.981989 | 2022-03-03T05:08:42 | 2022-03-03T05:08:42 | 361,901,401 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 6,916 | hpp | //
// Created by Hamza El-Kebir on 5/8/21.
//
#ifndef LODESTAR_ORDINARYDIFFERENTIALEQUATION_HPP
#define LODESTAR_ORDINARYDIFFERENTIALEQUATION_HPP
#ifdef LS_USE_GINAC
#include <Eigen/Dense>
#include "ginac/ginac.h"
#include "Lodestar/systems/StateSpace.hpp"
#include <string>
#include <deque>
namespace ls {
nam... | [
"ha.elkebir@gmail.com"
] | ha.elkebir@gmail.com |
6863f703f8a40aa48fb126df24b08bada6792cb7 | a5f35d0dfaddb561d3595c534b6b47f304dbb63d | /Source/BansheeCore/Resources/BsResourceHandle.h | 88e80c13582a6729171af50d4b67fdd846238c81 | [] | no_license | danielkrupinski/BansheeEngine | 3ff835e59c909853684d4985bd21bcfa2ac86f75 | ae820eb3c37b75f2998ddeaf7b35837ceb1bbc5e | refs/heads/master | 2021-05-12T08:30:30.564763 | 2018-01-27T12:55:25 | 2018-01-27T12:55:25 | 117,285,819 | 1 | 0 | null | 2018-01-12T20:38:41 | 2018-01-12T20:38:41 | null | UTF-8 | C++ | false | false | 11,174 | h | //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
//**************** Copyright (c) 2016 Marko Pintera (marko.pintera@gmail.com). All rights reserved. **********************//
#pragma once
#include "Reflection/BsIReflectable.h"
#include "Utility... | [
"bearishsun@gmail.com"
] | bearishsun@gmail.com |
4d6d965dc0f04d54144e9f9ad66a33bbf96f6111 | 30e1dc84fe8c54d26ef4a1aff000a83af6f612be | /src/external/boost/boost_1_68_0/libs/bimap/test/test_structured_pair.cpp | 2d4fbdc5cc5609c5683a7cefc3300c075f9c53c2 | [
"BSD-3-Clause",
"BSL-1.0"
] | permissive | Sitispeaks/turicreate | 0bda7c21ee97f5ae7dc09502f6a72abcb729536d | d42280b16cb466a608e7e723d8edfbe5977253b6 | refs/heads/main | 2023-05-19T17:55:21.938724 | 2021-06-14T17:53:17 | 2021-06-14T17:53:17 | 385,034,849 | 1 | 0 | BSD-3-Clause | 2021-07-11T19:23:21 | 2021-07-11T19:23:20 | null | UTF-8 | C++ | false | false | 2,328 | cpp | // Boost.Bimap
//
// Copyright (c) 2006-2007 Matias Capeletto
//
// 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)
// VC++ 8.0 warns on usage of certain Standard Library and API functions that
// can be cause bu... | [
"znation@apple.com"
] | znation@apple.com |
9df4f84464466d05b097655f6435504762d6bb5a | b0c1a37e3cf5cb08541a045e2f9f3120e1af4fce | /LinearRemapFV.h | a437f671de416c257587305f79ef4f30a59a2011 | [] | no_license | mmundt/MRMtempestremap | 6678fb228716762a3ee6b8c9f0111c33f9268ddc | a995c919638bd298b5d038a6d1454c43ade7f128 | refs/heads/master | 2021-01-15T23:27:17.046170 | 2015-07-30T15:33:19 | 2015-07-30T15:33:19 | 30,560,664 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,905 | h | ///////////////////////////////////////////////////////////////////////////////
///
/// \file LinearRemapFV.h
/// \author Paul Ullrich
/// \version September 1, 2014
///
/// <remarks>
/// Copyright 2000-2014 Paul Ullrich
///
/// This file is distributed as part of the Tempest source code package.
/// Permission ... | [
"paullrich@ucdavis.edu"
] | paullrich@ucdavis.edu |
7c1304b2248d87b3af516d31b8e7a6e0e0bebd53 | 1381d80073068f122672484273142687d7e2479a | /execises/Network-Uva.cpp | bf5ce83a2c3eb88d0dfdd7b97fcad008484e81e5 | [] | no_license | Guilherme26/algorithm_practices | 17c313745f692934ef6a976bee99259cbf0787d0 | ac3c65969173f6cc754b98e6fb3ae48d45e3c3c5 | refs/heads/master | 2021-06-27T21:46:50.087521 | 2020-09-22T14:40:48 | 2020-09-22T14:40:48 | 131,619,766 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,098 | cpp | #include <bits/stdc++.h>
using namespace std;
#define WHITE 1
#define BLACK 0
typedef struct{
int color;
vector<int> adjs;
} Vertex;
Vertex graph[111];
void initialize(bool clear){
for(int i = 0; i < 111; ++i){
graph[i].color = WHITE;
if(clear)
graph[i].adjs.clear();
}
}
void DFS(int initial){
// prin... | [
"guilherme.hra26@gmail.com"
] | guilherme.hra26@gmail.com |
66109cb2333938dafed6f1d1d81d550ce957bbb6 | a1c82112744d7bab6055d723b7fc648ef484e064 | /Employee/Source.cpp | d8eb62aaefcfdf308686b35c92bdfdffb42dcfe5 | [] | no_license | Aashutoshh/Tut5-Employee | aa663760ca8ecee8c8a4e275f3bf8800c775ec96 | 5c6e90b8e8a158f0ec50f7731c70f879cb86a4dc | refs/heads/master | 2021-01-13T00:42:44.707998 | 2016-03-23T14:50:50 | 2016-03-23T14:50:50 | 54,557,615 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 606 | cpp | #include "Employee.h"
#include "CommisionEmployee.h"
#include "HourlyEmployee.h"
#include "SalaryEmployee.h"
int main()
{//array of employees
//commision employee
CommisionEmployee cEmp("Tom", 1);
cEmp.setBaseSalary(20000.00);
cEmp.setRate(500.00);
cEmp.setRevenue(5000.00);
float sal1 = cEmp.salary();
//H... | [
"214506607@stu.ukzn.ac.za"
] | 214506607@stu.ukzn.ac.za |
7aed2890b7fa7e77d35496cb1eb12528826bd04d | 3c4a127a1c76be81d47eb45f417808ecf0d21f23 | /3 parcial/Arboles/pruebas/5-Arbol AVL con doble apuntador.cpp | c039adee742379d2d566fd09ba591ff36496de7b | [] | no_license | Wicho1313/Estructuras-de-datos | cc9b02d93bcab1a8884ac7ec1e9850e0d184267c | 21166885ef72def9f37a4ae6f89f728d9a614622 | refs/heads/master | 2023-06-09T17:43:54.011511 | 2021-07-02T20:28:57 | 2021-07-02T20:28:57 | 309,032,966 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,110 | cpp | #include <stdio.h>
#include <conio.h>
#include <stdlib.h>
struct nodo{
int dato;
int bal;
struct nodo *ptrDer;
struct nodo *ptrIzq;
};
struct nodo *crearnodo(int dato1){
struct nodo *ptrN;
ptrN=(struct nodo*)malloc(sizeof(struct nodo));
ptrN->dato=dato1;
... | [
"lrojase1@gmail.com"
] | lrojase1@gmail.com |
c4d7311e9d80171e618ccd892cfbd0717b383483 | 16aa5d7812bb7a18cdfb85d0eaf1773d15b4284f | /type_to_enum.cpp | ae6a6e87e8ef7fffee9a64f70c61a7d6d8061264 | [] | no_license | strvert/cpp-playground | b56339a565832319166ed3c78286876a6a3de670 | bcdb154fcb80b01af13da4a595570d7e725e03e5 | refs/heads/master | 2023-07-27T14:56:06.472613 | 2021-09-07T14:26:52 | 2021-09-07T14:26:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,447 | cpp | #include <iostream>
#include <map>
enum class TypeEnum : uint8_t {
Unknown = 1,
Int,
Float,
Double,
Char,
};
template<typename T>
struct Mapper {
struct MTable;
using ET = TypeEnum;
using enum ET;
template<ET E>
struct ToEnum {
char _[static_cast<std::underlying_type_t<... | [
"strv13570@gmail.com"
] | strv13570@gmail.com |
e922606e1cec0f99f8bfef6c9e22c52fe3556d7f | 14c7ee95170d0013b98cfd47d127332f78a27ab7 | /Hunt the Wumpus (Maze Game)/game.hpp | 7379e992eb1c57a38572e020816ec043f930098c | [] | no_license | lidenn/CS-162-Assignments | 68efb15b1cd589facea7e40c6b90ac9f289aff6e | 2f9df2be0c4887a19765bf6493e448ee06d68c44 | refs/heads/master | 2021-01-23T10:57:28.809174 | 2017-06-02T00:50:51 | 2017-06-02T00:50:51 | 93,111,279 | 0 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 1,285 | hpp | /********
* Program Filename: game.hpp
* Author:Dennis Li
* Date: 3/7/17
* Description: Contains the game class
* Input: None
* Output: None
*/
#ifndef GAME_H
#define GAME_H
#include<vector>
#include<iostream>
#include<cstdlib>
#include<string>
#include"room.hpp"
#include"event.hpp"
#include"wumpus.hpp"
using... | [
"noreply@github.com"
] | lidenn.noreply@github.com |
92bf3bdaba1a0005629063db4643d4158d4faec8 | f739df1f252d7c961ed881be3b8babaf62ff4170 | /softs/SCADAsoft/5.3.2/ACE_Wrappers/ace/os_include/os_dirent.h | 2a881e40b0901b1dcad507128c42de8695adfd93 | [] | no_license | billpwchan/SCADA-nsl | 739484691c95181b262041daa90669d108c54234 | 1287edcd38b2685a675f1261884f1035f7f288db | refs/heads/master | 2023-04-30T09:15:49.104944 | 2021-01-10T21:53:10 | 2021-01-10T21:53:10 | 328,486,982 | 0 | 0 | null | 2023-04-22T07:10:56 | 2021-01-10T21:53:19 | C++ | UTF-8 | C++ | false | false | 2,826 | h | // -*- C++ -*-
//=============================================================================
/**
* @file os_dirent.h
*
* format of directory entries
*
* $Id: os_dirent.h 935 2008-12-10 21:47:27Z mitza $
*
* @author Don Hinton <dhinton@dresystems.com>
* @author This code was originally in various plac... | [
"billpwchan@hotmail.com"
] | billpwchan@hotmail.com |
c81878695e097dfcc5dca151c288a4b14a42aabb | 057a475216e9beed41983481aafcaf109bbf58da | /base/poco/Foundation/src/Bugcheck.cpp | 14f5170c842df210dbc673a9fd3b0e220ede2fa8 | [
"BSL-1.0",
"Apache-2.0"
] | permissive | ClickHouse/ClickHouse | fece5204263a5b4d693854b6039699265f1bb27f | 6649328db809d51a694c358571539bc5820464be | refs/heads/master | 2023-08-31T18:48:36.615225 | 2023-08-31T17:51:24 | 2023-08-31T17:51:24 | 60,246,359 | 23,878 | 5,449 | Apache-2.0 | 2023-09-14T20:10:52 | 2016-06-02T08:28:18 | C++ | UTF-8 | C++ | false | false | 2,188 | cpp | //
// Bugcheck.cpp
//
// Library: Foundation
// Package: Core
// Module: Bugcheck
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "Poco/Bugcheck.h"
#include "Poco/Debugger.h"
#include "Poco/Exception.h"
#include <ss... | [
"noreply@github.com"
] | ClickHouse.noreply@github.com |
c5583dc9e366bbf48c27d1fd9bb21327b3b524ec | c7be52078daa48f8e2efa3102782d3be99bf6478 | /HidEngine/HidEngine.cpp | 68b74a70a4d2463632f27452545b8886164fa2ef | [] | no_license | ogatatsu/HID-Playground-Lib | db36d447397ce494ca33cc62f7e6bbabd0c4a249 | 22d71b98a35446b4762c4d4a1708377cf268a7b3 | refs/heads/master | 2022-12-07T21:38:55.843618 | 2022-11-27T08:33:01 | 2022-11-30T13:59:26 | 187,300,341 | 5 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 23,507 | cpp | /*
The MIT License (MIT)
Copyright (c) 2019 ogatatsu.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify... | [
"ogwrtty@gmail.com"
] | ogwrtty@gmail.com |
04daa99c37f017fcb6dbf4599f4486580c24d74f | 7e458c5c0b8c2953ccd7618bd534bd783513fbf3 | /mod/ls/LSCompiler.cpp | 9b9b43d16ab9ff9c5052fab821b4ed6353ecbfa2 | [
"LicenseRef-scancode-public-domain",
"Unlicense"
] | permissive | WindowxDeveloper/L | bdf2fac26861d5b3ae62039a5975a12837190655 | 0d390a6931a8121c9c6b38c363878e475f33211f | refs/heads/master | 2021-04-21T12:57:22.392499 | 2020-03-11T21:04:42 | 2020-03-11T21:04:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 22,101 | cpp | #include "LSCompiler.h"
#include <L/src/stream/CFileStream.h>
#include "ls.h"
using namespace L;
static const Symbol local_symbol("local"), set_symbol("set"), object_symbol("{object}"), array_symbol("[array]"),
fun_symbol("fun"), return_symbol("return"), foreach_symbol("foreach"), do_symbol("do"), if_symbol("if"), s... | [
"lutopia@hotmail.fr"
] | lutopia@hotmail.fr |
16f4640694be942494c95e736078113659b21422 | 501ab25fa68690556d90d528b0c8fb6ef5b0eeee | /Белый пояс/Неделя 1/Второе вхождение/Vtor.vhoz.cpp | 90f262061b86a95882481de0084254b8e45c0ebc | [] | no_license | spectrdort/kurs_yandex | 2ec6badf4532eb2ae70a44c54bfafabe7f9f7407 | 3c2571720947f9b508bd577f8c4fd435cd984193 | refs/heads/master | 2023-06-09T14:09:08.869588 | 2021-06-15T19:55:38 | 2021-06-15T19:55:38 | 366,669,939 | 0 | 0 | null | 2021-06-15T19:55:39 | 2021-05-12T09:58:06 | C++ | UTF-8 | C++ | false | false | 360 | cpp | #include <iostream>
#include <vector>
#include <string>
#include <algorithm>
int main()
{
std::string n;
std::cin >> n;
int x = 0;
for (int i = 0; i < n.size(); ++i)
{
if (n[i] == 'f')
{
x++;
if (x >= 2)
{
std::cout << i;
return 0;
}
}
}
if (x == 0)
{
std::cout << "-2";
}
else
... | [
"sms1995@rocketmail.com"
] | sms1995@rocketmail.com |
936422abc7f1c877dc8f0f8718e8363a4efaa886 | 161f5c2652f7e1784adc17325ab8ad7120b224c4 | /src/rangeslider.cpp | 434501ffef0706e3f5a2432e4e11eee9375b205a | [
"Apache-2.0"
] | permissive | hbtalha/MediaCutter | 82da98fa50854a0687e2dd714573bbc66439e587 | e803191cea9e056d620f06d2e485916e884c3735 | refs/heads/main | 2023-08-29T19:17:13.995883 | 2021-10-12T21:39:10 | 2021-10-12T21:39:10 | 414,444,491 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 29,659 | cpp | /*=========================================================================
Library: CTK
Copyright (c) Kitware Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
htt... | [
"noreply@github.com"
] | hbtalha.noreply@github.com |
5b2191d22e7ff9d4dd1fbddc170ef623bb6ca102 | e3ceca6a34bf3426b90b3952782d4fd94c54d08a | /b問題/b_chocolate.cpp | c19b4db14f1c3a0cbc38383eeb4d9561086c74c3 | [] | no_license | THEosusi/atcoder | ede5bffb44d59e266c6c4763a64cddeed8d8101f | 0e9a17a82562e469198a6cc81922db5ac13efa6d | refs/heads/master | 2023-06-21T06:45:28.128553 | 2021-07-27T09:02:55 | 2021-07-27T09:02:55 | 336,729,745 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 518 | cpp | #include <bits/stdc++.h>
using namespace std;
int main() {
int N,D,X;
cin >> N >> D >>X;
vector<int> vec(N);
for(int i=0;i<N;i++){
cin >>vec.at(i);
}
int count=0;
for(int j=0;j<N;j++){
if(vec.at(j)==1){
if(N==1){
count++;
continue;
... | [
"bp20129shibaura-it.ac.j@shibaura-it.ac.jp"
] | bp20129shibaura-it.ac.j@shibaura-it.ac.jp |
eee188f0c7bcfe9c81187469b2ed11b178ab890c | 57126f65a47d4b8ccd8932425178c6717639c989 | /external/glbinding-2.0.0/source/glbinding/include/glbinding/gl31/enum.h | ffb1de207180ecc648d1c87b621d998d12dd9fda | [
"MIT"
] | permissive | 3d-scan/rgbd-recon | 4c435e06ecee867fd7bd365363eff92ef7513a39 | c4a5614eaa55dd93c74da70d6fb3d813d74f2903 | refs/heads/master | 2020-03-22T16:09:56.569088 | 2018-04-28T10:58:51 | 2018-04-28T10:58:51 | 140,307,666 | 1 | 0 | MIT | 2018-07-09T15:47:26 | 2018-07-09T15:47:26 | null | UTF-8 | C++ | false | false | 49,577 | h | #pragma once
#include <glbinding/nogl.h>
#include <glbinding/gl/enum.h>
namespace gl31
{
// import enums to namespace
// AccumOp
using gl::GL_ACCUM;
using gl::GL_LOAD;
using gl::GL_RETURN;
using gl::GL_MULT;
using gl::GL_ADD;
// AlphaFunction
using gl::GL_NEVER;
using gl::GL_LESS;
using gl::GL_EQUAL;
using g... | [
"jakob.wagner@uni-weimar.de"
] | jakob.wagner@uni-weimar.de |
3a6f65ee6673a254155fc247c5707af18ae097ac | b77054fd04c2ae73f9eeb71c25e3acc6174bc158 | /ReadAnalogVoltage1.ino | 99324671a9b64e2d0ecc8f40f34ae539120c6cf1 | [] | no_license | abhishek1769/IOT-and-Embedded-projects-and-Experiments | cae991830f1ccf2022cd26b8cd4d614524aa4f78 | 014cae4e399bfe07ec552612f49f619201ee7288 | refs/heads/master | 2020-03-10T21:47:05.946353 | 2018-04-15T11:24:51 | 2018-04-15T11:24:51 | 129,602,892 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,449 | ino | /*
ReadAnalogVoltage
Reads an analog input on pin 0, converts it to voltage, and prints the result to the serial monitor.
Graphical representation is available using serial plotter (Tools > Serial Plotter menu)
Attach the center pin of a potentiometer to pin A0, and the outside pins to +5V and ground.
This e... | [
"noreply@github.com"
] | abhishek1769.noreply@github.com |
022c23cfebf067463df682437ea2ccd30aeec772 | 9ae5d2ce9daed564edbe9502872477cbc623ad27 | /ThirdPersonTest/Source/ThirdPersonTest/ThirdPersonTestCharacter.cpp | 3f6edd7798a381f19cd64e88b2a751244a543157 | [] | no_license | homeguatlla/UnrealGASTest | d4b1f88a8d12c59dd68b1c00420d7209ca066e60 | decf8fd3215fb6c770d2fffb5eda5fca9b732c81 | refs/heads/main | 2023-03-25T03:08:46.962309 | 2021-03-05T18:44:27 | 2021-03-05T18:44:27 | 340,334,270 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,604 | cpp | // Copyright Epic Games, Inc. All Rights Reserved.
#include "ThirdPersonTestCharacter.h"
#include "AttributeSet.h"
#include "HeadMountedDisplayFunctionLibrary.h"
#include "MyPlayerState.h"
#include "Utils.h"
#include "Camera/CameraComponent.h"
#include "Components/CapsuleComponent.h"
#include "Components/InputCompone... | [
"dguerrero_bcn@hotmail.com"
] | dguerrero_bcn@hotmail.com |
b103ce66cecc09bea2dba14a61e6519267f4af60 | 1aaa697e8a716ee1dee3a8fb9f67d8c6432c1320 | /Framework/Shared/Camp/CampBindings.h | 04f76383dc8616fe3a175b1c75ab8ef0b0e002c8 | [] | no_license | MelvinRook/Diversia | a4a6d0dd6ec1e8509a0839e8a0ab1a9d4fd5a596 | 6e7bfbfa48bbd733da5c786dfad8e7d3a3645b42 | refs/heads/master | 2021-01-20T20:36:24.736608 | 2012-02-05T19:36:16 | 2012-02-05T19:36:16 | 60,241,791 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,745 | h | /*
-----------------------------------------------------------------------------
Copyright (c) 2008-2010 Diversia
This file is part of Diversia.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software wi... | [
"gabrielkonat@gmail.com"
] | gabrielkonat@gmail.com |
38205e65b5eaadbc45cdfa297a42b7641655cc81 | 67b7a7085447b7561208ed6df95dd3133df580e2 | /may01/macri/src/Shaders/IawShader.h | e6e7246ce818462111b776ce5a4961a18d47d258 | [
"LicenseRef-scancode-other-permissive"
] | permissive | dwilliamson/GDMagArchive | 81fd5b708417697bfb2caf8a983dd3ad7decdaf7 | 701948bbd74b7ae765be8cdaf4ae0f875e2bbf8e | refs/heads/master | 2021-06-07T23:41:08.343776 | 2016-10-31T14:42:20 | 2016-10-31T14:42:20 | 72,441,821 | 74 | 4 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 10,904 | h | // IawShader.h App Wizard Version 2.0 Beta 1
// ----------------------------------------------------------------------
//
// Copyright © 2001 Intel Corporation
// All Rights Reserved
//
// Permission is granted to use, copy, distribute and prepare derivative works of this
// software for any purpose and without fee,... | [
"dwilliamson_coder@hotmail.com"
] | dwilliamson_coder@hotmail.com |
f8b4945c4576b319eedce33e505242c75b2e8026 | 67d0cd3da850aeee51241e39b2c86484a1382bec | /Scintilla/src/EditView.cxx | 95fd75494a150c5982e3d470b159bb8d3d1e9d2d | [
"MIT"
] | permissive | tobeypeters/Scintilla | 4f6c4d99a2bbf8e254c70fb8b4c30c82027875e5 | 3f1ccba00b5817a5ba548288822a59b0a0f73d92 | refs/heads/master | 2020-05-20T18:32:52.747016 | 2019-05-09T02:41:45 | 2019-05-09T02:41:45 | 185,708,169 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 109,145 | cxx | // Scintilla source code edit control
/** @file EditView.cxx
** Defines the appearance of the main text area of the editor window.
**/
// Copyright 1998-2014 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#include <cstddef>
... | [
"noreply@github.com"
] | tobeypeters.noreply@github.com |
99cdc2d23710339b1d103c7a8e0ffa64a1a43032 | ead0b1c60e787f319242de5a56d246991d6e5464 | /test/TestApp/GDK/ATGTK/SampleGUI.h | 74ae6b0d97f80f0b393562d33585ca3645af1e11 | [] | no_license | jplafonta/XPlatCSdk | fbc9edcf7dadf88c5e20f26b6deaafa3bb512909 | 302c021dcfd7518959551b33c65499a45d7829de | refs/heads/main | 2023-07-30T04:54:27.901376 | 2021-08-31T14:26:52 | 2021-08-31T14:26:52 | 347,189,117 | 0 | 0 | null | 2021-04-15T01:09:33 | 2021-03-12T20:26:17 | C++ | UTF-8 | C++ | false | false | 36,089 | h | //--------------------------------------------------------------------------------------
// File: SampleGUI.h
//
// A simple set of UI widgets for use in ATG samples
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// T... | [
"jlafonta0550@gmail.com"
] | jlafonta0550@gmail.com |
90640ee2452c5ce91e3109819e6ee41710e6c52e | a2973e7238e0dc8c7b70da7d92e3c5712af0f4ae | /graphicsProgramming/runaway shapes rasist/MacGraphicsStarter/Triangle.h | 470169203cbebbbbb154a24097ed9910ccaa1f84 | [] | no_license | codybrowncit/C-plus-plus | 581487db5e3b35ee9388f1a110a40d27c38cf343 | 2cea4d315b96f0537a598e16fcbcb430e1bd47a4 | refs/heads/master | 2020-12-25T19:04:11.471095 | 2015-05-14T23:16:57 | 2015-05-14T23:16:57 | 31,285,389 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 535 | h | //
// Triangle.h
// MacGraphicsStarter
//
// Created by Cody Brown on 11/2/14.
//
//
#ifndef _TRIANGLE_H_
#define _TRIANGLE_H_
#include "Shape.h"
#include <stdio.h>
#ifdef _WIN32
#include "glut.h"
#else
#ifdef __APPLE__
#include <GLUT/glut.h>
#else
#include <GL/glut.h>
#endif
#endif
class Triangle : public Shape
{
... | [
"codybrowncit@gmail.com"
] | codybrowncit@gmail.com |
f1e8046f4fd8a4e81e69cd2187dec7ecc7b168e3 | fb72a82827496e66e04ecb29abbca788a1ea0525 | /src/rpc/rawtransaction.cpp | b130783db6f85798a215a9edd3192c0d6f6dff61 | [
"MIT"
] | permissive | exiliumcore/exilium | 92631c2e7abeeae6a80debbb699441d6b56e2fee | 6aa88fe0c40fe72850e5bdb265741a375b2ab766 | refs/heads/master | 2020-03-14T05:50:41.214608 | 2018-05-13T01:00:24 | 2018-05-13T01:00:24 | 131,472,364 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 39,585 | cpp | // Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2018 The Exilium Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mi... | [
"devexilium@gmail.com"
] | devexilium@gmail.com |
97e466ef9ce9ec11921d28b127559626f374a82d | d75c8f301f369fde8ef2ad1b54168978906f129f | /tajadac/Tajada/AST/Expression.hh | d95b501a1ccbf248efeccc2233a64c85203e169e | [] | no_license | mgomezch/Tajada | efb006b64f278725fc8a542d613574e6c43e7776 | 4fc9ca6e93632ad2a2c73588582235627d6faae1 | refs/heads/master | 2016-09-06T19:07:42.782966 | 2012-07-12T23:04:49 | 2012-07-12T23:04:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,389 | hh | #ifndef TAJADA_AST_EXPRESSION_HH
#define TAJADA_AST_EXPRESSION_HH
#include <string>
// Superclasses:
#include "Tajada/AST/AST.hh"
#include "Tajada/Code/Block.hh"
#include "Tajada/Code/Intermediate/Address/Address.hh"
#include "Tajada/Type/Type.hh"
namespace Tajada {
namespace AST {
class Exp... | [
"targen@gmail.com"
] | targen@gmail.com |
19688079901577c712eab4620050ba201f779d0a | 1d928c3f90d4a0a9a3919a804597aa0a4aab19a3 | /c++/ClickHouse/2017/8/ASTLiteral.cpp | bd88a90a301382cb3b948a25b67a24466b144457 | [
"BSL-1.0"
] | permissive | rosoareslv/SED99 | d8b2ff5811e7f0ffc59be066a5a0349a92cbb845 | a062c118f12b93172e31e8ca115ce3f871b64461 | refs/heads/main | 2023-02-22T21:59:02.703005 | 2021-01-28T19:40:51 | 2021-01-28T19:40:51 | 306,497,459 | 1 | 1 | null | 2020-11-24T20:56:18 | 2020-10-23T01:18:07 | null | UTF-8 | C++ | false | false | 810 | cpp | #include <Common/SipHash.h>
#include <Core/FieldVisitors.h>
#include <Parsers/ASTLiteral.h>
#include <IO/WriteHelpers.h>
namespace DB
{
String ASTLiteral::getColumnNameImpl() const
{
/// Special case for very large arrays. Instead of listing all elements, will use hash of them.
/// (Otherwise column name wi... | [
"rodrigosoaresilva@gmail.com"
] | rodrigosoaresilva@gmail.com |
e662c436eb642e7a44130d20688dbfa5e6a14778 | dc61e8c951f9e91930c2edff8a53c32d7a99bb94 | /include/inviwo/qt/widgets/properties/lightpropertywidgetqt.h | 5ba7c43bbe9afa60e4aa53659c3b4fd42487c66d | [
"BSD-2-Clause"
] | permissive | johti626/inviwo | d4b2766742522d3c8d57c894a60e345ec35beafc | c429a15b972715157b99f3686b05d581d3e89e92 | refs/heads/master | 2021-01-17T08:14:10.118104 | 2016-05-25T14:38:33 | 2016-05-25T14:46:31 | 31,444,269 | 2 | 0 | null | 2015-02-27T23:45:02 | 2015-02-27T23:45:01 | null | UTF-8 | C++ | false | false | 2,762 | h | /*********************************************************************************
*
* Inviwo - Interactive Visualization Workshop
*
* Copyright (c) 2013-2015 Inviwo Foundation
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided th... | [
"eriksunden85@gmail.com"
] | eriksunden85@gmail.com |
d03cd90e49dd06083e6a75fb1eca63860d8bb368 | dcc6234fa754f09bab518f2c430ada8011783f90 | /SqlEngine.cc | b08de7b77443ab4f4d5a7e7978c306005da2906c | [] | no_license | cjsub/cs143_project2 | 2dd92f66aa21efc702827d5ceaa6d98adde9215d | 89ff17ee6b30e2d974511508c0c0842ccfd633ee | refs/heads/master | 2021-01-24T03:48:20.903331 | 2013-02-23T02:08:40 | 2013-02-23T02:08:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,552 | cc | /**
* Copyright (C) 2008 by The Regents of the University of California
* Redistribution of this file is permitted under the terms of the GNU
* Public License (GPL).
*
* @author Junghoo "John" Cho <cho AT cs.ucla.edu>
* @date 3/24/2008
*/
#include <cstdio>
#include <iostream>
#include <fstream>
#include "Bruinb... | [
"sehunchoi@gmail.com"
] | sehunchoi@gmail.com |
698d50530f487ef794ba0e80419aff41e27b02f8 | 7e1e036af3a15dd1d1c0940109f5943010144f7e | /Aula 03/Pos-Aula 03.cpp | 5217a95611494b9ecef15c9ffa978e114079ad39 | [] | no_license | GustaFreitas/AulasAED | 7ecb1f03c70c1eac91aa83d1833d5b84f29b947f | 5ed05ecf1bca04a9f24ca1bdbd1ae7fa5f55a6c9 | refs/heads/master | 2021-03-04T23:21:21.890940 | 2020-06-01T21:31:46 | 2020-06-01T21:31:46 | 246,075,313 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 2,825 | cpp | #include <math.h>
#include <conio.h>
#include <stdio.h>
#include <locale.h>
#include <stdlib.h>
#include <string.h>
struct Bolsa
{
char Nom[50], Are[20];
float Val_Atu, Val_Ant, Dif;
double Var;
};
float Media (float x)
{
return (x / 5);
}
float Novo (float x, float y)
{
return (x + y);
}
int main (void)
{... | [
"gustavoluizdefreitas@hotmail.com.br"
] | gustavoluizdefreitas@hotmail.com.br |
fcb4311f6f18fc608b4a938e55d3cee38192f212 | c075cfe521103977789d600b61ad05b605f4fb10 | /PI/ZAD_A.cpp | accad407d4909894943044aaeb2058198318eac3 | [] | no_license | igoroogle/codeforces | dd3c99b6a5ceb19d7d9495b370d4b2ef8949f534 | 579cd1d2aa30a0b0b4cc61d104a02499c69ac152 | refs/heads/master | 2020-07-20T12:37:07.225539 | 2019-09-05T19:21:27 | 2019-09-05T19:35:26 | 206,639,451 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 630 | cpp | #include <iostream>
#include <iomanip>
#include <cstdio>
#include <algorithm>
#include <cstdlib>
#include <vector>
#include <set>
#include <cmath>
#include <map>
using namespace std;
typedef long long ll;
const ll INF = 1000000000000000000;
ll a[100010];
int main()
{
ll n, i, x, y;
cin >> n;
for (i = 0; i <... | [
"160698qnigor98"
] | 160698qnigor98 |
9131de57b8b629101b0fad4e2b340203867d00de | 5370b9e27da3064f35a59610b7746a263204e621 | /CodeForces/Div3/Round498/b.cpp | 9c2fdeb07f274250d7440d2c6e024720ca372538 | [] | no_license | Paryul10/Competetive-Coding | 4619d84b282d58303dc5db9cb8bdad769fc3176d | 3cc06f80dfffe4dc742fd5d8a4b427a9de778d85 | refs/heads/master | 2020-04-02T11:12:49.838056 | 2018-08-02T11:36:04 | 2018-08-02T11:36:04 | 154,376,787 | 0 | 1 | null | 2019-10-19T12:00:45 | 2018-10-23T18:22:09 | C++ | UTF-8 | C++ | false | false | 1,086 | cpp | #include "bits/stdc++.h"
#include "string"
using namespace std;
int main()
{
int n, k;
cin >> n >> k;
int arr[n];
for (int i=0; i<n; i++) cin >> arr[i];
vector <pair<int, int> > ind;
for (int i=0; i<n; i++)
{
ind.push_back(make_pair(arr[i], i));
}
sort(ind.begin(), ind.end()... | [
"eeshadutta99@gmail.com"
] | eeshadutta99@gmail.com |
92c6b2d5de2bdbec5503462c3736bb14137f32e8 | 8d672a07b0f1182471aefea80e26bfdac4d2eac5 | /Repo Server/Repo Server/Pro2/Version/version.cpp | 2e8dd8b42fe8ad0a32b9aeb14210d6c06b49ce45 | [] | no_license | nileshivam/Repo_Build_server | 80a80770934a330ee229daa01d21286e71b9ab43 | 218fc0bae7c3edc6d31918a9f8213637efcaea09 | refs/heads/master | 2020-03-18T16:45:10.590787 | 2018-05-28T22:49:42 | 2018-05-28T22:49:42 | 134,984,583 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,104 | cpp | //////////////////////////////////////////////////////////////////////
// Version.cpp - Implements Version Functionalities //
// ver 1.0 //
// Source: Jim Jawcett //
// Dwivedi Nilesh, CSE687 - Object Oriented Design, Spring 2018 //
/////////////////////////////////////... | [
"dwivedinilesh11@gmail.com"
] | dwivedinilesh11@gmail.com |
510efa5ce86b2b9878848b0688d003617704d6dc | 0b66e8133c28fd50e2ffddba741710bdc7756cb4 | /1.BinaryTree/1325. Delete Leaves With a Given Value.cc | a96f6632253a9479a5828cc6cd4a674af0b98e0d | [] | no_license | tonyxwz/leetcode | 21abed951622ed3606fc89c580cd32cda7b84a2f | 1b7d06e638c0ff278c62d3bae27076b0881b5fde | refs/heads/master | 2023-04-05T07:10:18.342010 | 2021-04-13T11:45:58 | 2021-04-13T11:45:58 | 71,467,875 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 980 | cc | // https:// leetcode.com/problems/delete-leaves-with-a-given-value/
#include "leetcode.h"
// 思路:后序遍历树如果左孩子和右孩子都是空且root
// ->val等于target,那么删除当前节点。删除的方式是返回空值即可。
// ```cpp
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() :... | [
"tonyxwz@yahoo.com"
] | tonyxwz@yahoo.com |
a86a3cdb105058cf4b7a43042198ce12b29eb609 | 88026fecc64f11bb17c4c7f938fc3ff60c80e72f | /src/wallet/rpcwallet.cpp | af0f90db3709ce5b018f47f4ce6ba9978d41a441 | [
"MIT"
] | permissive | docharlow/spoomy | 59c54e9a97fd91e54cdf46daafb50215edcc0025 | 794c5cbed698857d1078efede59bad1e73d4af8d | refs/heads/master | 2020-04-16T10:49:30.187434 | 2019-01-13T15:24:22 | 2019-01-13T15:24:22 | 165,518,257 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 121,387 | cpp | // Copyright (c) 2009-2018 Satoshi Nakamoto
// Copyright (c) 2009-2018 The Bitcoin Developers
// Copyright (c) 2014-2018 The Dash Core Developers
// Copyright (c) 2017-2018 Spoomy Developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit... | [
"dev@zumy.co"
] | dev@zumy.co |
f0cbe107198ae902d704935269727cb7c2e1ccbb | e7aadf0214af5077d3516f7201a9c7e753c22e5b | /extensions/ringqt/gdial.cpp | f3bc029389e82587ef0b12498bae6bc761516e39 | [
"MIT"
] | permissive | sethgreen23/ring | 7e45524a946e41af8bf6dda488b6e2e6d7d7fc60 | 2c4e0717a30f056ce677b2cce5e0b0a2a7680787 | refs/heads/master | 2020-06-17T20:23:56.435446 | 2016-11-26T09:11:57 | 2016-11-26T09:11:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,909 | cpp |
/* Copyright (c) 2013-2016 Mahmoud Fayed <msfclipper@yahoo.com> */
extern "C" {
#include "ring.h"
}
#include "gdial.h"
GDial::GDial(QWidget *parent,VM *pVM) : QDial(parent)
{
this->pVM = pVM;
this->pParaList = ring_list_new(0);
strcpy(this->cactionTriggeredEvent,"");
strcpy(this->crangeChangedEvent,"... | [
"msfclipper@yahoo.com"
] | msfclipper@yahoo.com |
1fcb4e818ab38f916dea8bedeb0cbd950721c95b | e24e674ababf1763f9ba43f810c6b5828ebcf68f | /Linked Lists/InsertHead_Circularll.cpp | 1ee138409feb75e31dced606522f8c709f91727c | [] | no_license | ACES-DYPCOE/Data-Structure | 8f833b86876e233e8a1e46e067c1808c164fc6b8 | 292b3c1f3dec3b7e5ae3f5143146201892e3ed4d | refs/heads/master | 2023-07-22T16:08:11.710042 | 2021-09-07T10:44:42 | 2021-09-07T10:44:42 | 299,687,733 | 22 | 44 | null | 2021-09-07T10:44:42 | 2020-09-29T17:19:32 | C++ | UTF-8 | C++ | false | false | 567 | cpp | //Given a circular linked list of size N, you need to insert an element data before the head and make it the new head. The tail of the linked list is connected to head.
//solution
Node *insertInHead(Node * head, int data)
{
Node* newn=new Node(data);
if(head==NULL)
{
head=newn;
new... | [
"noreply@github.com"
] | ACES-DYPCOE.noreply@github.com |
b28d8002248070bc0a260aff788045ac20056452 | c3ba724f8fde86f644690e1d3aeec855d9dc395b | /third_person/Source/third_person/third_personGameMode.h | 147c80e36498c79c8027f5628e58bf7b36589871 | [] | no_license | wyxloading/ue4-samples | 4577522de40404104b7cc5cc76cab55e72b54a45 | 878c070f6f4dc1a5144f98475f237b111a688736 | refs/heads/master | 2021-06-07T03:01:56.077095 | 2016-09-07T00:18:52 | 2016-09-07T00:18:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 282 | h | // Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "GameFramework/GameMode.h"
#include "third_personGameMode.generated.h"
UCLASS(minimalapi)
class Athird_personGameMode : public AGameMode
{
GENERATED_BODY()
public:
Athird_personGameMode();
};
| [
"tonculture@hotmail.com"
] | tonculture@hotmail.com |
3f8363e10dfa330b21fa9d0ad32970c7c97e28c3 | af0e1b9507d4ade87c312b0cc0bf1bf167fa83a0 | /3d_reconstruction/refinement.h | 85c1a59a78af32a8cc60e9413a9ece115ba3964c | [] | no_license | kolina/diploma | 07f560b24ae63e4449c5658f69b958f64ce93c94 | bc161e642d2db20be0162afd974f3328b16293bc | refs/heads/master | 2021-01-11T08:03:53.526604 | 2016-11-05T09:37:41 | 2016-11-05T09:37:41 | 72,917,046 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 2,454 | h | #ifndef INC_3D_RECONSTRUCTION_REFINEMENT_H
#define INC_3D_RECONSTRUCTION_REFINEMENT_H
#include "optimization.h"
struct AbsolutePoseEstimationOptions {
bool estimate_focal_length = false;
size_t num_focal_length_samples = 30;
double min_focal_length_ratio = 0.2;
double max_focal_length_ratio = 5;
int num... | [
"kolina93@yandex-team.ru"
] | kolina93@yandex-team.ru |
8a6c8c4c56f8907cf18522567ea1c6402e847703 | 12d3908fc4a374e056041df306e383d95d8ff047 | /Programs/prog14.cpp | 9c65a7e36a4f92e0db39b5f7b581dc3f34539d9a | [
"MIT"
] | permissive | rux616/c201 | aca5898c506aeb1792aa8b1f9dcf3d797a1cd888 | d8509e8d49e52e7326486249ad8d567560bf4ad4 | refs/heads/master | 2021-01-01T16:14:44.747670 | 2017-07-20T05:14:24 | 2017-07-20T05:14:24 | 97,792,948 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,940 | cpp | /* Prog14.cpp
Shows how to pass command line arguments to a function and how to
reference individual characters of command line arguments.
------------------------------------------------------------------------*/
#include <iostream>
#include <string>
using namespace std;
void ShowCommandLineArgs (... | [
"dan.cassidy.1983@gmail.com"
] | dan.cassidy.1983@gmail.com |
bcc04f8fe31e868237a1153c5a4bf70468d7f7e6 | a679dba6ef0364962b94ed65d0caad1a88da6c43 | /OrginalServerCode/OrginalCode/labixiaoxin/ACE_wrappers/ASNMP/asnmp/oid.cpp | 8cbd4c661616d3ba19249529ccc77fa67550b63a | [
"MIT-CMU",
"LicenseRef-scancode-hp-snmp-pp"
] | permissive | w5762847/Learn | 7f84933fe664e6cf52089a9f4b9140fca8b9a783 | a5494181ea791fd712283fa8e78ca0287bf05318 | refs/heads/master | 2020-08-27T05:43:35.496579 | 2016-12-02T12:16:12 | 2016-12-02T12:16:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,829 | cpp | // $Id: oid.cpp 91670 2010-09-08 18:02:26Z johnnyw $
// ============================================================================
//
// = LIBRARY
// asnmp
//
// = FILENAME
// oid.cpp
//
// = DESCRIPTION
// This module contains the implementation of the oid class. This
// includes all protecte... | [
"flyer_son@126.com"
] | flyer_son@126.com |
ce3d89925dfbc340b2ceed86c6459b05d4c28928 | 1066b428e123f4212431cd124bc5b71b60a3bf90 | /src/util/xmlsettings/xmlsettings.cpp | 4916d9c044a083fd90c0b9301eb94b78e68d4f6d | [] | no_license | amigomcu/bterm | 54523c9ceb15538cb8d93ec8161deb8e81db609c | a92bd0dcd31e82beda0fbe8b205ddfd5927eb502 | refs/heads/master | 2021-06-11T16:18:06.508638 | 2016-12-25T11:39:48 | 2016-12-25T11:39:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,818 | cpp | /******************************************************************************
* Description: See class declaration in header file
*
******************************************************************************/
/******************************************************************************************
* INC... | [
"dimon.frank@gmail.com"
] | dimon.frank@gmail.com |
2aa6ef371aa6cf24afd6510cb495a41fb2e377fc | 62d4601d67c3f86287f107843d800e1c4dd09c9c | /code/main.cpp | 85b6eb8d9b74784c7661f99194469a1327051872 | [] | no_license | JorgeBarcena3/SDL2-Base-project | c7549743f8559d753cdecb1b41c5f083655be1bf | 616b8bb6e90049f3d8e74ce58991443a863087f0 | refs/heads/master | 2020-09-08T22:57:53.627280 | 2020-03-25T02:44:24 | 2020-03-25T02:44:24 | 221,268,448 | 0 | 0 | null | null | null | null | WINDOWS-1250 | C++ | false | false | 2,264 | cpp | // File: main.cpp
// Description : Proyecto base con la libreria de SDL2
// Author: Jorge Bárcena Lumbreras
// © Copyright (C) 2019 Jorge Bárcena Lumbreras
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Softw... | [
"j.barcenalumbreras@gmail.com"
] | j.barcenalumbreras@gmail.com |
0bfb89a556d1f3e507fe2a17f7604f32388a33b9 | 75d568beed72fa3d705bafd158c1b95cc219f675 | /node.h | 515b71c245cc4227460dc05de70cb70595d8cbe9 | [] | no_license | MilenaFilippova/Haffman_cod | 245bddfd4be09e4a37e7b48a25467d04b9ae34f0 | 1693b71671e9538bd9d34c840d009c609aa888f5 | refs/heads/master | 2020-06-04T13:22:16.156713 | 2019-06-15T05:30:15 | 2019-06-15T05:30:15 | 192,039,404 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 542 | h | #ifndef NODE_H_INCLUDED
#define NODE_H_INCLUDED
#include <map>
#include <vector>
#include <iostream>
#include "sort.h"
#include "coder.h"
#include "decoder.h"
using namespace std;
class Node
{
private:
Node* L;
Node* R;
public:
Node *left;
Node *right;
int w;//вес узла
char symbol;
//конструктор по ... | [
"noreply@github.com"
] | MilenaFilippova.noreply@github.com |
aa9edb21b8037e19d421980cc5b8f0f5606f16af | 787bde65fe076cca1f985390f3d4e87ddf58964f | /Batch Runs/7 BR/4.00/MyDirection.cpp | cc0a0df15f8f88844a0f8ccfa4e1cba8be9a56ae | [] | no_license | VajiraK/Marc | 8630b1c4f579bccb088a2e3a1e79f2b56e886bdb | 33d6ac18c0c9a85feb3d377b12b2012d26979c51 | refs/heads/main | 2023-01-12T17:17:13.029472 | 2020-11-15T14:49:24 | 2020-11-15T14:49:24 | 313,052,531 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,892 | cpp | // MyDirection.cpp: implementation of the CMyDirection class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "MyDirection.h"
CMyDirection::~CMyDirection(){}
//----------------------------------------------------------------------------------------
CMyDirection::... | [
"vajira.kulatunga@pearson.com"
] | vajira.kulatunga@pearson.com |
5747e3682874ede22d23f926cccf91f574e165e5 | 493ac26ce835200f4844e78d8319156eae5b21f4 | /CHT_heat_transfer/constant/solid_15/polyMesh/faceZones | 8b03d9dfd282d08ea694fd5d235ee2a2d3c1dd21 | [] | no_license | mohan-padmanabha/worm_project | 46f65090b06a2659a49b77cbde3844410c978954 | 7a39f9384034e381d5f71191122457a740de3ff0 | refs/heads/master | 2022-12-14T14:41:21.237400 | 2020-08-21T13:33:10 | 2020-08-21T13:33:10 | 289,277,792 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 885 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1912 |
... | [
"mohan.2611@gmail.com"
] | mohan.2611@gmail.com | |
f48d357a3cc2fb4b3aefb77ff07510353530a48b | 65e7602d4f2fd18a010ec82e05e35347de78fe54 | /sorceFiles/MyReservation.cpp | 96f501c9cdad39f4f8fa08f8f390caef7e0b6d12 | [] | no_license | noagol/AirlineDataManagement | edf6986786d668bf3c1108978b4c3a02e0bda045 | 44dc8b12937a58212acda5245b3b73353fc05fe4 | refs/heads/master | 2020-05-21T21:16:24.632258 | 2019-05-11T15:34:49 | 2019-05-11T15:34:49 | 186,150,285 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,762 | cpp | #include "MyReservation.h"
/**
* Constractor
* @param customerId
* @param flihgtId
* @param cls
* @param baggage
*/
MyReservation::MyReservation(Customer *customerId, Flight *flihgtId, Classes cls, int baggage) :
customer(customerId), flight(flihgtId), classes(cls), maxBaggage(baggage),
... | [
"noreply@github.com"
] | noagol.noreply@github.com |
fb625acb879fed0a0fe959409853a58e2e7101fb | 3c311327423d13735edc298230d3c36d2691f5c7 | /tensorflow/lite/tools/optimize/operator_property.cc | 01a10a575671f736e9a0dffb9585faffb6f3d543 | [
"Apache-2.0"
] | permissive | drewszurko/tensorflow | 6075aafff00893837da583ccc13fb399a6e40bcd | f2a9a2cdd87673182e94b3c25fcfc210315d014b | refs/heads/master | 2020-04-25T00:07:56.946637 | 2019-04-18T18:51:56 | 2019-04-18T18:51:56 | 172,368,205 | 0 | 0 | Apache-2.0 | 2019-04-18T18:44:45 | 2019-02-24T17:33:14 | C++ | UTF-8 | C++ | false | false | 5,682 | cc | /* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or a... | [
"gardener@tensorflow.org"
] | gardener@tensorflow.org |
fabb85fc1d7896ddecd72a73d69997a9de63a946 | 622974cd61d5a4c6cb90ce39775198989e0a2b4c | /cuda/io/include/pcl/cuda/io/predicate.h | 2d4d9ae11b9c4d551ec565852ecbed9f574053b5 | [
"BSD-3-Clause"
] | permissive | kalectro/pcl_groovy | bd996ad15a7f6581c79fedad94bc7aaddfbaea0a | 10b2f11a1d3b10b4ffdd575950f8c1977f92a83c | refs/heads/master | 2021-01-22T21:00:10.455119 | 2013-05-13T02:44:37 | 2013-05-13T02:44:37 | 8,296,825 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,013 | h | /*
* Software License Agreement (BSD License)
*
* Copyright (c) 2011, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code mu... | [
"jkammerl@rbh.willowgarage.com"
] | jkammerl@rbh.willowgarage.com |
c8a8311151ccfa752ff7fbfc0bab0768eeeb5c21 | 3ad968797a01a4e4b9a87e2200eeb3fb47bf269a | /MFC CodeGuru/splitter/SplitterTog_source/SplitFrame.h | bf10ac6006fbf65faed545935c9aaa9069ac9ad5 | [] | no_license | LittleDrogon/MFC-Examples | 403641a1ae9b90e67fe242da3af6d9285698f10b | 1d8b5d19033409cd89da3aba3ec1695802c89a7a | refs/heads/main | 2023-03-20T22:53:02.590825 | 2020-12-31T09:56:37 | 2020-12-31T09:56:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,133 | h | #if ! defined( __SPLITFRAME_H__ )
#define __SPLITFRAME_H__
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
/*
** Author: Guy Gascoigne - Piggford
** Internet: guy@wyrdrune.com
**
** You can use this source in any way you like as long as you don't try to sell it.
**
** Any attempt to sell this in source ... | [
"pkedpekr@gmail.com"
] | pkedpekr@gmail.com |
20f408772f0f1dc537584e1369149398a495ea95 | 4081245b8ed21b053664ebd66340db8d38ab8c4f | /BuildBSTDCB.cpp | 163729d9fa75a5a8c18481fbddc53627086eacff | [] | no_license | anandaditya444/LEETCODE | 5240f0adf1df6a87747e00842f87566b0df59f92 | 82e597c21efa965cfe9e75254011ce4f49c2de36 | refs/heads/master | 2020-05-07T15:48:19.081727 | 2019-08-25T16:03:57 | 2019-08-25T16:03:57 | 180,653,012 | 2 | 1 | null | 2019-10-05T13:45:29 | 2019-04-10T19:48:40 | C++ | UTF-8 | C++ | false | false | 955 | cpp | #include <bits/stdc++.h>
using namespace std;
#define int long long int
#define IOS ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
#define ff first
#define ss second
#define pb push_back
#define pf push_front
#define endl "\n"
const int N = 1e3+5;
int a[N];
int t,n;
struct node
{
int data;
struct... | [
"anandaditya444@gmail.com"
] | anandaditya444@gmail.com |
07ee6988fb7b86e6fe9fb410facdd09df33dab39 | ab1712d65f8510a705a1f28064e4d3fc5a48cf64 | /SDK/SoT_WildRoseDefinition_classes.hpp | b8e743efd863e1aabd134859c109397f3b243e65 | [] | no_license | zk2013/SoT-SDK | 577f4e26ba969c3fa21a9191a210afc116a11dba | 04eb22c1c31aaa4d5cf822b0a816786c99e3ea2f | refs/heads/master | 2020-05-29T20:06:57.165354 | 2019-05-29T16:46:51 | 2019-05-29T16:46:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,063 | hpp | #pragma once
// Sea of Thieves (2.0) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "SoT_WildRoseDefinition_structs.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Classes
//---------------------------------------------------------------------------... | [
"igromanru@yahoo.de"
] | igromanru@yahoo.de |
db0b032dced7dae81036ab31c0c51040887fb123 | c2621eab966ec23d2293d0fb8e00087d9b86003e | /components/cpp_utils/FreeRTOS.cpp | 7b2be5d024f1be673362fba77cf57e97bbafdcc0 | [] | no_license | NguyenPham0106/esp32-snippets-enchancements-test | e976042d0c41bbb21ba8d1b43d350d95a8043203 | 9f1715b01a7b7c30e3efce893fc1a380eb23dede | refs/heads/master | 2023-04-08T07:34:43.579773 | 2018-10-06T16:00:03 | 2018-10-06T16:00:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,531 | cpp | /*
* FreeRTOS.cpp
*
* Created on: Feb 24, 2017
* Author: kolban
*/
#include <freertos/FreeRTOS.h> // Include the base FreeRTOS definitions
#include <freertos/task.h> // Include the task definitions
#include <freertos/semphr.h> // Include the semaphore definitions
#include <string>
#include <sstre... | [
"imperiaonline4@gmail.com"
] | imperiaonline4@gmail.com |
f346f64cbeadb4c7a9b4e5913dcb82b9d923e0f7 | 633ae1a2eb5151143dbe3744eb7fe70ba1112812 | /Chip-8/src/main.cpp | ad419783433c3b16aedbb8d8e16c07d8ad8e98f0 | [
"MIT"
] | permissive | MehTheHedgehog/Chiper8 | ff6118892082e91f47ef3155d93d36be215c4619 | 65cd16684e3edadb78dc27a32fa0dbe34cb1d46a | refs/heads/master | 2021-01-01T16:31:39.488061 | 2017-07-21T22:21:38 | 2017-07-21T22:21:38 | 97,849,987 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,433 | cpp | #include <string>
#include <tclap/CmdLine.h>
#include "SubSystem\Emulator.hpp"
int main(int argc, char** argv)
{
bool isDebug = false;
std::string strFileName;
//Parsing Command line arguments
try {
TCLAP::CmdLine cmd("Chip-8 emulator", ' ', "0.0.1a");
TCLAP::UnlabeledValueArg<std::string> fileArg("file", "Pa... | [
"mehthehedgehog@gmail.com"
] | mehthehedgehog@gmail.com |
f7065d246c1eff486d04c4d4d275e7016919ddc6 | 9247d93d625768940e0a28b418879014286861e5 | /algorithm_winterstudy/27_백준10844_(틀림)쉬운계단수_120119.cpp | f1a324db076865c7d0ca80cf7aac099c7d6fab7c | [] | no_license | inhoinno/BOSSMONSTER | 5cf15fe2b0943ff709de1b42c657c5cebcff7ffb | 699db45efe1c75ba1e448b3e774bd5092018b2fc | refs/heads/master | 2020-12-31T23:36:49.368242 | 2020-02-24T05:23:12 | 2020-02-24T05:23:12 | 239,078,563 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 903 | cpp | #include <iostream>
#include <cstdio>
using namespace std;
int D_Stair(int n){
int d[101];
d[0] = 0;
d[1] = 9;
if(d[n]>0) return d[n];
else{
d[n] = D_Stair(n-1)*2 -1;
return d[n]; ... | [
"56788537+inhoinno@users.noreply.github.com"
] | 56788537+inhoinno@users.noreply.github.com |
9a87325c2c7c2703065440d75efc42e720bfeba2 | 4c0e956ba72bd9aeffae22ae4db32036a1c33a9e | /La_Library/demo43_41.cpp | 6349903686b079313e8d37254eeb2905812b4f85 | [] | no_license | dzylikecode/La_Library | 277650a3be19263acb9f5e83d86710498d5c884e | e46d126890bc1feb33ecac343588e096b478b525 | refs/heads/master | 2023-07-30T17:03:37.076898 | 2021-09-05T03:10:45 | 2021-09-05T03:10:45 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 9,360 | cpp |
/*
***************************************************************************************
* 程 序:
*
* 作 者: LaDzy
*
* 邮 箱: mathbewithcode@gmail.com
*
* 编译环境: Visual Studio 2019
*
* 创建时间: 2021/08/31 9:14:54
* 最后修改:
*
* 简 介:
*
****************************************************************************... | [
"1494977853@qq.com"
] | 1494977853@qq.com |
d06d9d02dc25da3358c879f29b2b36551d71ba3c | 700bd6fb0f9eb2ec1d23ff39b069e5a3d7b26576 | /src/main.cpp | de74a6ea27d02346a50680020c25fa2823cd48ee | [] | no_license | iniwap/LeapMotion-SmallGame-With-OF | 6da32e0099cb8572ef51eba119cdd09c1214edd1 | c5fb0c97d4685c7cbeb4550d2ce33d36d584e3b9 | refs/heads/master | 2021-01-23T07:27:12.846640 | 2013-11-29T15:23:39 | 2013-11-29T15:23:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 413 | cpp | #include "ofMain.h"
#include "gameApp.h"
#include "ofAppGlutWindow.h"
//========================================================================
int main( ){
ofAppGlutWindow window;
ofSetupOpenGL(&window, 800,600, OF_WINDOW); // <-------- setup the GL context
// this kicks off the running of my app
// can b... | [
"iafun@iafuns-MacBook-Pro.local"
] | iafun@iafuns-MacBook-Pro.local |
86c98c5a5047ab3e0626b58aa26bfd5f3605e144 | 21aa7d1dbf2b6ae0582797b653090d0fb13d4da0 | /common/include/common/ConsoleLogger.h | 94143f554b7eb1fc22d6a8f27b06c8426da73daf | [
"MIT",
"LicenseRef-scancode-unknown",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | define-private-public/SpvGenTwo | 3b4e66a7ffb0732a8b3d28cedb11a1430ac4c767 | 5ff86437a0548134e7a3173f97edbefb5bedf7c3 | refs/heads/master | 2022-11-27T11:20:01.073015 | 2020-07-30T13:56:09 | 2020-07-30T13:56:09 | 284,812,481 | 0 | 0 | MIT | 2020-08-03T21:37:30 | 2020-08-03T21:37:29 | null | UTF-8 | C++ | false | false | 345 | h | #pragma once
#include "spvgentwo/Logger.h"
namespace spvgentwo
{
class ConsoleLogger : public ILogger
{
public:
ConsoleLogger();
ConsoleLogger(const ConsoleLogger&) = delete;
ConsoleLogger(ConsoleLogger&&) = delete;
private:
static void LogImpl(ILogger* _pInstance, LogLevel _level, const char* _pFormat, ... | [
"fwahlster@outlook.com"
] | fwahlster@outlook.com |
b1938f62740a3f9a2853d1547de65b7300f4dc68 | f1ac5501fd36e4e420dfbc912890b4c848e4acc3 | /src/script/serverchecker.cpp | 9be7932a7dd5634e391cccadecd47644ba55270a | [] | no_license | whojan/KomodoOcean | 20ca84ea11ed791c407bed17b155134b640796e8 | f604a95d848222af07db0005c33dc4852b5203a3 | refs/heads/master | 2022-08-07T13:10:15.341628 | 2019-06-14T17:27:57 | 2019-06-14T17:27:57 | 274,690,003 | 1 | 0 | null | 2020-06-24T14:28:50 | 2020-06-24T14:28:49 | null | UTF-8 | C++ | false | false | 3,897 | cpp | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "serverchecker.h"
#include "script/cc.h"
#include "cc/eval.h"
#include ... | [
"ip_gpu@mail.ru"
] | ip_gpu@mail.ru |
b0f04c3c4b787f6a3d7503fb71895791abdcee40 | f8d41b5c66e8daa27121824bbb16cc827a785cc2 | /Code/GraphMol/CIPLabeler/rules/Rules.h | 1d75c8d700020e76c996380a6edc54c86ecd802c | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | greglandrum/rdkit | 56a0e6531dd187308489122aaa67aa9907f9635e | 0eacf4824833b31a49de7fa7ad3ae00c946b7f14 | refs/heads/master | 2023-08-31T23:59:33.246643 | 2023-03-23T09:57:25 | 2023-03-23T09:57:25 | 40,303,040 | 3 | 3 | BSD-3-Clause | 2023-09-07T11:01:54 | 2015-08-06T12:14:42 | HTML | UTF-8 | C++ | false | false | 2,063 | h | //
//
// Copyright (C) 2020 Schrödinger, LLC
//
// @@ All Rights Reserved @@
// This file is part of the RDKit.
// The contents are covered by the terms of the BSD license
// which is included in the file license.txt, found at the root
// of the RDKit source tree.
//
#pragma once
#include <initializer_list>
#in... | [
"noreply@github.com"
] | greglandrum.noreply@github.com |
b5883035081eeeaf6a7d682e3a0aebdd2052ee70 | 2f10f807d3307b83293a521da600c02623cdda82 | /deps/boost/win/debug/include/boost/process/detail/windows/locale.hpp | da78bf0dd96785885ea645fdc9b3a5c7a89a1476 | [] | no_license | xpierrohk/dpt-rp1-cpp | 2ca4e377628363c3e9d41f88c8cbccc0fc2f1a1e | 643d053983fce3e6b099e2d3c9ab8387d0ea5a75 | refs/heads/master | 2021-05-23T08:19:48.823198 | 2019-07-26T17:35:28 | 2019-07-26T17:35:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 129 | hpp | version https://git-lfs.github.com/spec/v1
oid sha256:70e4104c44c9ba6d080542f5bc81dbcdd1a77212c9e0d719105ca80ade49495d
size 3154
| [
"YLiLarry@gmail.com"
] | YLiLarry@gmail.com |
def54fb831d8465aeb9d3f285236390c775cb212 | 13b25f161cc1f878c8aaa6e4635c20678068759f | /cplusplus_learning/rcf_client_learning/demo_client.cpp | aa4b7040febb591da6d00e883977e739ffd44887 | [] | no_license | JayL323/cpluspluslearning | d3df70859020e5758a68c1e74102f0dadba1b4e0 | 8f7912791bb15d6dd8019e42687f088c5270f94f | refs/heads/master | 2022-03-26T23:13:26.239058 | 2020-01-01T13:04:16 | 2020-01-01T13:05:06 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,012 | cpp | #include<iostream>
#include<iterator>
#include<RCF/RCF.hpp>
#include"demo_interface.h"
int main()
{
RCF::RcfInit rcfInit;
std::string ip = "127.0.0.1";
int port = 50001;
std::cout << "将要连接到" << ip << ":" << port << "\n";
std::vector<std::string> v;
v.push_back("one");
v.push_back("two");
v.push_back("three... | [
"942296928@qq.com"
] | 942296928@qq.com |
237f461adbe2e62bd6bc2eb39a490f2d7f8e96c7 | 1bf1d70e40faa87d458942abf9fc7b0856476efc | /uri/2374.2.cpp | 3d06c7443f2b24e715f116c408007696897ba148 | [] | no_license | lilianefreitas/competitive-programming-questions | 418bfe9c60b30c1e21e5332862b45ff36b6f12aa | fe832f68b9cd89514a6b3888219db01cc8c93877 | refs/heads/master | 2023-03-29T21:48:37.156877 | 2021-03-28T07:38:45 | 2021-03-28T07:38:45 | 267,492,757 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 387 | cpp | #include <bits/stdc++.h>
using namespace std;
// N = pressão desejada pelo motorista
// M = pressão lida pela bomba
int N, M;
int main() {
// pegar as entradas
scanf("%d%d", &N, &M);
// diferença entre a pressao desejada e a lida
int diferenca = N - M;
// imprimindo a diferença
// colocar b... | [
"alunalilianefreitas@gmail.com"
] | alunalilianefreitas@gmail.com |
9b9e1cd87852e72f62111137e22d054e1b1fddba | 45d87d819c13793102d01696dfde50619e14f243 | /src/visualization.h | 5488e4312da8d2cc5f32bfcc27f33f8169ab86a3 | [] | no_license | paraficial/perlin_noise_marching_cubes | aef77a75df024e6e0f28d09c52d63be1be6057dc | 33894becac715bb561afc18667d5bdbaaf30d47f | refs/heads/master | 2020-12-26T18:17:31.284278 | 2020-02-03T11:46:58 | 2020-02-03T11:46:58 | 237,593,565 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 446 | h | #ifndef VISUALIZATION_H
#define VISUALIZATION_H
#include <SDL2/SDL.h>
#include <glm/glm.hpp>
class Mesh;
class Shader;
class Visualization
{
public:
Visualization(int width, int height);
int init(int width, int height);
void loop(Mesh *mesh, Shader *shader, float angle);
private:
SDL_Window *window;
... | [
"gregor.wiese@gmx.de"
] | gregor.wiese@gmx.de |
fa72dd4ce48cf6fde1a6bcc772eab33f17bfd3b2 | c84629bf7158041eb5309f11cf5c678f116081b4 | /backUp/!_SHADER_GALLERY_noIndices/_SHADERS/velvet/velvet_INIT.cpp | 54e93413f74dc7f73145266c7743e94e85e287b4 | [] | no_license | marcclintdion/iOS_WIN3 | ce6358be75900a143f6639057c1d96b5e3f546b3 | d339cfab929534903abbdc6043ac0280ff68e558 | refs/heads/master | 2016-09-06T05:54:23.058832 | 2015-09-16T07:37:12 | 2015-09-16T07:37:12 | 42,571,722 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,335 | cpp | #ifdef __APPLE__
#import <OpenGLES/ES2/gl.h>
#import <OpenGLES/ES2/gl... | [
"marcclintdion@Marcs-iMac.local"
] | marcclintdion@Marcs-iMac.local |
780021fc00970191d05fbc233e8c2baf8e05fd4d | f7d8dfb897e4ab2a6b2b769ab16e3093d7ff7dc1 | /main.cpp | 9233a2beb76ecd6ebff21d9aa14ad63fb2628ee2 | [] | no_license | Rogan003/SwimmingCareerSimulatorDemo | 228a85a0f4e63921ed087752b64bfd3993956ab5 | 3c41b31a2df75a858cc9b4c298d8d89b6262d716 | refs/heads/master | 2021-04-11T19:22:59.596928 | 2020-12-18T11:39:11 | 2020-12-18T11:39:11 | 249,046,687 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,347 | cpp | #include <iostream>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include <list>
using namespace std;
enum drzava{Egipat,Jamajka,Srbija,Hrvatska,Svajcarska,Austrija,Italija,Rusija,Nemacka,Brazil,Australija,Kanada,Kina,VelikaBritanija,Japan,SAD};
enum Marka{TYR,Speedo,Arena};
#include "drzava.hpp"
#include "tren... | [
"roganovic.veselin@jjzmaj.edu.rs"
] | roganovic.veselin@jjzmaj.edu.rs |
2115f14f719ef66e3c7f4549fdc338cb4d524a66 | 7b3856478d8009a2b6bbd7101352e9452e7b1414 | /October 4/October 4 Solution.cpp | 7cc37aa87638a441a684c38349128510f0d45685 | [] | no_license | Sanjays2402/Leetcode-October-Challenge | 40ef29d6dafaa307303f836bb5470e783bc1a8fc | 922956d772a91632787f7993d647dc032a8c3f3f | refs/heads/main | 2023-01-05T14:25:07.122022 | 2020-10-28T17:49:26 | 2020-10-28T17:49:26 | 300,665,444 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 732 | cpp | class Solution {
public:
static bool comp(vector<int>& a, vector<int>& b)
{
if(a[0] == b[0])
return a[1] > b[1];
return a[0] < b[0];
}
int removeCoveredIntervals(vector<vector<int>>& intervals) {
if(intervals.size() == 0)
return 0;
... | [
"noreply@github.com"
] | Sanjays2402.noreply@github.com |
10cbeb320b3df4a6572a5fa4430aab306363449a | c2fb6846d5b932928854cfd194d95c79c723f04c | /4rth_Sem_c++_backup/Amlyan/shit/arka.cpp | f24511a7e641de93ef0c21860f97c049ea65a80d | [
"MIT"
] | permissive | Jimut123/code-backup | ef90ccec9fb6483bb6dae0aa6a1f1cc2b8802d59 | 8d4c16b9e960d352a7775786ea60290b29b30143 | refs/heads/master | 2022-12-07T04:10:59.604922 | 2021-04-28T10:22:19 | 2021-04-28T10:22:19 | 156,666,404 | 9 | 5 | MIT | 2022-12-02T20:27:22 | 2018-11-08T07:22:48 | Jupyter Notebook | UTF-8 | C++ | false | false | 319 | cpp | #include<iostream>
#include<cmath>
using namespace std;
int main()
{
int i,size = 20,pow=1,j;
float sum = 0,den;
for(i=0;i<20;i++)
{
cout<<1<<"/"<<(i+1)<<"*"<<3<<"^"<<i<<" + ";
pow=1;
for(j=1;j<=i;j++)
pow=pow*3;
den = (i+1)*pow;
sum = sum + 1/den;
}
cout<<"Sum = "<<sum<<endl;
return 0;
}
| [
"jimutbahanpal@yahoo.com"
] | jimutbahanpal@yahoo.com |
9fec39404899b69d0d269079355c32fd27ffdf6b | f3bdc5713fcbf31a5098e5c6bc7b536f63be1609 | /GameEngine/src/EventDispatcher.cpp | 2b63008d33ece7a180eeafe5f87e985f3f783aad | [] | no_license | leonardo98/GameEngine | 1cceaf0f6dc8bc66d9d1862f8523b8199ef54356 | 2f3c218437434c05afe9eaac0900c3ff46ff7055 | refs/heads/master | 2020-04-05T22:56:53.009769 | 2015-07-16T14:59:07 | 2015-07-16T14:59:07 | 33,198,384 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,319 | cpp | #include "EventDispatcher.h"
#include "Event.h"
namespace oxygine
{
EventDispatcher::EventDispatcher():_lastID(0), _listeners(0)
{
}
EventDispatcher::~EventDispatcher()
{
__doCheck();
delete _listeners;
}
int EventDispatcher::addEventListener(eventType et, EventCallback cb)
{
__doCheck();
if (!_list... | [
"am98pln@gmail.com"
] | am98pln@gmail.com |
d967e9ce296f1e9863ada34d4923e275531e31aa | 9ce1f0f2652f81903f31452451bfd17ae6873623 | /Code/Tools/FBuild/FBuildCore/FBuild.cpp | 8f51ef7c788f1489e9edf36fcc2bc2d3508e4aa3 | [
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-other-permissive"
] | permissive | missmah/fastbuild | 7044b4f62b696956dbd1651b12262aa0bd052e06 | 310dcff973cf8e6902b2608cf72dbf928fe89e9c | refs/heads/master | 2021-01-19T16:50:38.890910 | 2017-04-14T19:27:44 | 2017-04-14T19:27:44 | 88,291,891 | 1 | 2 | null | 2019-10-30T04:37:30 | 2017-04-14T18:17:37 | C++ | UTF-8 | C++ | false | false | 21,962 | cpp | // FBuild - the main application
//------------------------------------------------------------------------------
// Includes
//------------------------------------------------------------------------------
#include "Tools/FBuild/FBuildCore/PrecompiledHeader.h"
#include "FBuild.h"
#include "FLog.h"
#include "BFF/BFF... | [
"franta.fulin@gmail.com"
] | franta.fulin@gmail.com |
afa3ba926bc6a429b4d3d29dbc84898a68b18500 | 8f3ef878f138146a9df34440103d45607afeb48e | /Qt/Canvas/MainWindow.h | f19fa6f91c9a0665a5f9cca8a84124db1ae17b77 | [] | no_license | afester/CodeSamples | aa67a8d6f5c451dc92131a8722f301d026f5a894 | 10a2675f77e779d793d63e973672548aa263597b | refs/heads/main | 2023-01-05T06:45:52.130668 | 2022-12-23T21:36:36 | 2022-12-23T21:36:36 | 8,028,224 | 10 | 11 | null | 2022-10-02T18:53:29 | 2013-02-05T11:57:35 | Java | UTF-8 | C++ | false | false | 633 | h | /**
* This work is licensed under the Creative Commons Attribution 3.0 Unported
* License. To view a copy of this license, visit
* http://creativecommons.org/licenses/by/3.0/ or send a letter to Creative
* Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.
*/
#include <QMainWindow>
... | [
"Andreas.Fester@gmx.de"
] | Andreas.Fester@gmx.de |
670f419a089b0fc0015986991832c21ac74b99c9 | f180cdea1a82e9656c793a667081783029378b8e | /Derivator/sources/tree_dot_converter.cpp | 9367b89d5c18e6e9c81597050632eb853ae3a301 | [] | no_license | uberpup/industrial-programming-course | 21a09b600ac1c18c70c6669a2e615e103d48e171 | 50dec017ca2eb883e6af882c39dfe0418ea43ae4 | refs/heads/master | 2020-07-26T07:32:57.699106 | 2020-01-04T14:26:45 | 2020-01-04T14:26:45 | 208,578,669 | 0 | 0 | null | 2020-01-04T14:26:46 | 2019-09-15T10:41:06 | C++ | UTF-8 | C++ | false | false | 1,708 | cpp | #include "tree_dot_converter.h"
TreeDotConverter::TreeDotConverter(std::string filename) :
filename(std::move(filename)) {}
TreeDotConverter::~TreeDotConverter() {}
void TreeDotConverter::PrintTree(const Derivator& derivator) {
file = std::fopen(filename.c_str(), "w");
fprintf(file, "%s\n", "digraph ... | [
"tochilin.vn@phystech.edu"
] | tochilin.vn@phystech.edu |
276ed172ba95ca61cab0b2981ea9cd169e3e39f2 | 16137a5967061c2f1d7d1ac5465949d9a343c3dc | /cpp_code/meta/fib-slow.hpp | c41fa7fd7ff2e4c36579552b331d5c0dbcd304cf | [] | no_license | MIPT-ILab/cpp-lects-rus | 330f977b93f67771b118ad03ee7b38c3615deef3 | ba8412dbf4c8f3bee7c6344a89e0780ee1dd38f2 | refs/heads/master | 2022-07-28T07:36:59.831016 | 2022-07-20T08:34:26 | 2022-07-20T08:34:26 | 104,261,623 | 27 | 4 | null | 2021-02-04T21:39:23 | 2017-09-20T19:56:44 | TeX | UTF-8 | C++ | false | false | 460 | hpp | namespace Slower
{
template <unsigned TreePos, unsigned N>
struct FibSlower
{
enum
{
value = FibSlower<TreePos, N - 1>::value + FibSlower<TreePos + (1 << N), N - 2>::value
};
};
template <unsigned TreePos>
struct FibSlower<TreePos, 1>
{
enum
{
value = 1
};
};
template <unsigned Tr... | [
"konstantin.vladimirov@gmail.com"
] | konstantin.vladimirov@gmail.com |
678f8b1aa0dde8c824c72298218e5757d73b6334 | 8f58614751bd1eeace81c8b62ca51ea49c474645 | /uva/266/D.cpp | 640903cfa2cec8075d019f25af17776b6db060e2 | [] | no_license | iwiwi/programming-contests | 14d8a0c5739a4c31f1c3a4d90506e478fa4d08b5 | 8909560f9036de8f275f677dec615dc5fa993aff | refs/heads/master | 2021-01-25T04:08:39.627057 | 2015-05-10T13:28:20 | 2015-05-10T13:28:20 | 2,676,087 | 5 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,207 | cpp | #include <iostream>
#include <sstream>
#include <string>
#include <vector>
#include <stack>
#include <queue>
#include <set>
#include <map>
#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cctype>
#include <cmath>
#include <cassert>
using namespace std;
#define all(c) (c).begin(), ... | [
"iw@iwi.tc"
] | iw@iwi.tc |
04e0f357c4185b13cab03f81baa283d46702ab88 | 347ec1a55e81d0c793554cb297d10a3d01184705 | /Mesh.cpp | 6f0a43bb99d78623d7bd4bcb201e5f8e4d67db6f | [] | no_license | hobgreenson/electrophysiology-stimulus | e36a303d0d03573f170f8ef629ee6258ed68b69c | 2fcae6c3fe0d93fa7a5a46d94d7a949235ede23e | refs/heads/master | 2020-05-27T09:38:36.259452 | 2015-08-21T15:09:50 | 2015-08-21T15:09:50 | 30,271,596 | 1 | 0 | null | 2015-08-21T15:09:50 | 2015-02-04T00:02:25 | C++ | UTF-8 | C++ | false | false | 11,653 | cpp | #include "Mesh.h"
Mesh::Mesh(const char* vs_path, const char* fs_path)
: vertex_shader_path_(vs_path),
fragment_shader_path_(fs_path) {
// set transform matrix to identity
GLfloat matrix[16] = {
1.0, 0.0, 0.0, 0.0,
0.0, 1.0, 0.0, 0.0,
0.0, 0.0, 1.0, 0.0,
0.0... | [
"m.hobson.green@gmail.com"
] | m.hobson.green@gmail.com |
727d9325b96507e69279b3f598819c892b4e50a1 | 831e7458aeae4c3bedd56ef49eb412915a83be8c | /utils/frisoutil.cpp | 6d07b31d6b072ab7c30617da816cfb88b64e9c9b | [] | no_license | frankiegu/WriterFly | 2510dea04fd3218854fa14fa76235b0ac1efdc36 | 6680b93eee34901dadbf4bd11a324909d14fd0f5 | refs/heads/master | 2020-04-29T07:14:37.060475 | 2019-03-13T07:55:08 | 2019-03-13T07:55:08 | 175,945,175 | 2 | 0 | null | 2019-03-16T08:17:59 | 2019-03-16T08:17:59 | null | UTF-8 | C++ | false | false | 1,683 | cpp | #include "frisoutil.h"
FrisoUtil::FrisoUtil()
{
inited = false;
initing = false;
valid = true;
}
FrisoUtil::~FrisoUtil()
{
Destructor();
}
QStringList FrisoUtil::WordSegment(QString _text)
{
Q_UNUSED(_text);
#if defined(Q_OS_WIN)
if (!valid)
return sList;
if (!inited)
{
... | [
"wxy19980615@gmail.com"
] | wxy19980615@gmail.com |
9bf34289e7ab442b22cb72c6c1dac21db7cbcfc9 | 33d33eb0a459f8fd5f3fbd5f3e2ff95cbb804f64 | /40.combination-sum-ii.73403291.ac.cpp | 816fb5c08882b1450e8bafb4564b6f8412c7ab7e | [] | no_license | wszk1992/LeetCode-Survival-Notes | 7b4b7c9b1a5b7251b8053111510e2cefa06a0390 | 01f01330964f5c2269116038d0dde0370576f1e4 | refs/heads/master | 2021-01-01T17:59:32.945290 | 2017-09-15T17:57:40 | 2017-09-15T17:57:40 | 98,215,658 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 860 | cpp | class Solution {
public:
vector<vector<int>> combinationSum2(vector<int>& candidates, int target) {
vector<vector<int>> res;
vector<int> cmb;
sort(candidates.begin(), candidates.end());
combinationSumHelper(res, cmb, candidates, target, 0);
return res;
}
void com... | [
"wszk1992@gmail.com"
] | wszk1992@gmail.com |
ec39ae6e69fc39c428f27bb348721af9f821d227 | ce122446cb0493e2f744e37a7e6c3b0d2bb06f44 | /be/src/vec/exprs/lambda_function/varray_map_function.cpp | c3a26f18b162e23c70b62601d9d2861629bdc0de | [
"BSD-3-Clause",
"PSF-2.0",
"GPL-2.0-only",
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"dtoa",
"MIT",
"LicenseRef-scancode-facebook-patent-rights-2",
"bzip2-1.0.6",
"OpenSSL"
] | permissive | yanghongkjxy/palo | 1ce1ae3602e88f4ea8246135e310fddf3ba0c98e | afed14ba3181d0f0949acf5b1eec93e99fa3cf88 | refs/heads/master | 2023-04-02T12:42:03.643847 | 2023-03-18T02:49:09 | 2023-03-18T02:49:09 | 143,609,059 | 0 | 0 | Apache-2.0 | 2018-09-26T09:01:47 | 2018-08-05T12:01:32 | C++ | UTF-8 | C++ | false | false | 7,305 | cpp | // Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may... | [
"noreply@github.com"
] | yanghongkjxy.noreply@github.com |
37483ecc07f364f97236e6750815fa8e88668ace | 558b75f4715273ebb01e36e0b92446130c1a5c08 | /engine/src/qlcfixturedefcache.h | 316d75eeddec94822f159857ffb16069cb0f2af5 | [
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | sbenejam/qlcplus | c5c83efe36830dcd75d41b3fba50944dc22019e1 | 2f2197ff086f2441d755c03f7d67c11f72ad21df | refs/heads/master | 2023-08-25T09:06:57.397956 | 2023-08-17T16:02:42 | 2023-08-17T16:02:42 | 502,436,497 | 0 | 0 | Apache-2.0 | 2022-06-11T19:17:52 | 2022-06-11T19:17:51 | null | UTF-8 | C++ | false | false | 5,715 | h | /*
Q Light Controller
qlcfixturedefcache.h
Copyright (c) Heikki Junnila
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.txt
Unless r... | [
"massimocallegari@yahoo.it"
] | massimocallegari@yahoo.it |
b06026c1c4399aeff61afe8e47faf58a27f385d2 | 5950c4973a1862d2b67e072deeea8f4188d23d97 | /Export/macos/obj/src/lime/_internal/format/Zlib.cpp | 21f17693b5e3be87344aae43fb108c7a8932d361 | [
"MIT"
] | permissive | TrilateralX/TrilateralLimeTriangle | b3cc0283cd3745b57ccc9131fcc9b81427414718 | 219d8e54fc3861dc1ffeb3da25da6eda349847c1 | refs/heads/master | 2022-10-26T11:51:28.578254 | 2020-06-16T12:32:35 | 2020-06-16T12:32:35 | 272,572,760 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 3,762 | cpp | // Generated by Haxe 4.2.0-rc.1+cb30bd580
#include <hxcpp.h>
#ifndef INCLUDED_haxe_io_Bytes
#include <haxe/io/Bytes.h>
#endif
#ifndef INCLUDED_lime__internal_backend_native_NativeCFFI
#include <lime/_internal/backend/native/NativeCFFI.h>
#endif
#ifndef INCLUDED_lime__internal_format_Zlib
#include <lime/_internal/forma... | [
"none"
] | none |
125ff7c1cdd36286e335004d9853858f868e2054 | ae1350bf9241eae5c7f83a86a3b84792adc0d2e3 | /Bai 5.cpp | dcba24232e02f001a00eeb183e304677f73fec07 | [] | no_license | vietanhsbox/B-i-t-p-th-c-t-p | 0f7b31f15102ff374a6e89a020608626bad4824a | 8457624538078de45ebc1d0b824636e27b7960ad | refs/heads/master | 2020-03-19T01:07:28.857820 | 2018-05-31T05:09:45 | 2018-05-31T05:09:45 | 135,524,467 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 999 | cpp | #include <stdio.h>
#include <stdlib.h>
#include <conio.h>
int main()
{
float check1, check2, check3, ngay, thang, nam;
check1 = scanf_s("%f", &ngay);
check2 = scanf_s("%f", &thang);
check3 = scanf_s("%f", &nam);
if (check1 == 0 || check2 == 0 || check3 == 0 || ngay != (int)ngay || thang != (int)thang ... | [
"noreply@github.com"
] | vietanhsbox.noreply@github.com |
f9529045320a5d906366cb6ba17268c783ec6a93 | 9007e49918e2b3f41188439d0c1c9ebfa5ab6f9d | /Cplusplus98/main.cc | f8898e11b24ea5fde9b971e911280f24d536bd64 | [] | no_license | lishaohsuai/threadpool | a60a30ada35628cfa741c77c583808b18f0d92ed | 6ab71cd1916bcf6c35b2b3157cf454a12f05f1e7 | refs/heads/main | 2023-03-13T00:35:05.433725 | 2021-02-25T11:37:48 | 2021-02-25T11:37:48 | 341,180,502 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,136 | cc | #include <iostream>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <pthread.h>
#include <vector>
#include "threadPool.hh"
class MyTask: public zl::Task
{
public:
MyTask(){}
virtual int run() {
printf("thread[%lu] : %d\n", pthread_self(), *(int*)this->arg_);
... | [
"1049188593@qq.com"
] | 1049188593@qq.com |
620ccb08c730b22e5d16a229cd44a2b9558f41a4 | 083ca3df7dba08779976d02d848315f85c45bf75 | /DungeonGame.cpp | 5bb3cd62583701edfed384c5947848a84e9253ee | [] | no_license | jiangshen95/UbuntuLeetCode | 6427ce4dc8d9f0f6e74475faced1bcaaa9fc9f94 | fa02b469344cf7c82510249fba9aa59ae0cb4cc0 | refs/heads/master | 2021-05-07T02:04:47.215580 | 2020-06-11T02:33:35 | 2020-06-11T02:33:35 | 110,397,909 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,304 | cpp | #include<iostream>
#include<vector>
using namespace std;
class Solution {
public:
int calculateMinimumHP(vector<vector<int> >& dungeon) {
int m = dungeon.size(), n = dungeon[0].size();
vector<vector<int> > dp(m, vector<int>(n));
dp[m-1][n-1] = max(1, 1 - dungeon[m-1][n-1]... | [
"jiangshen95@163.com"
] | jiangshen95@163.com |
96f6217baf607bd5e28e25f0fb70b8a7ccd771a5 | 1130bcd2ab620dcc7c5ea81e6d275283fdfb9f88 | /channelinfo.cpp | 8faa4c83dfdacd089ca879afa2789351b9003b29 | [] | no_license | 372272083/mfds | c2245f98ee4d5e5ec89379e72e61826f00d3d334 | 659f01e9e206ff12c2aa327968d24ef717d2b65d | refs/heads/master | 2020-04-14T15:03:51.850005 | 2019-08-12T08:54:54 | 2019-08-12T08:54:54 | 143,227,303 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 75 | cpp | #include "channelinfo.h"
ChannelInfo::ChannelInfo() : TreeNodeInfo()
{
}
| [
"372272083@qq.com"
] | 372272083@qq.com |
4ecd991fc4f3a7fa6a380ab861ee92ef6c21d754 | 737d18cdcc25bc1932d5888e5144c977af377eda | /Mouse Interfacing/src/mainwindow.cpp | 3c6df08e39958c5d399d56e7682268e82b455494 | [] | no_license | Kshitij09/Computer-Graphics | e2c94ee7d5dd15cf8b14a85a874b9c49155a6b07 | 736c8d1c41dc5c477c4e88c79428107c5e12b771 | refs/heads/master | 2020-03-09T02:48:00.749239 | 2018-04-09T22:00:20 | 2018-04-09T22:00:20 | 128,548,964 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,280 | cpp | #include "mainwindow.h"
#include "ui_mainwindow.h"
#include "clicklabel.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
ui->label->setMouseTracking(true);
connect(ui->label,SIGNAL(mouse_pos()),this,SLOT(mouse_pos()));
connect(ui->lab... | [
"kshitijpatil98@gmail.com"
] | kshitijpatil98@gmail.com |
d8f5788723d71489a009b0c81715a4b6e690a2ce | f0cbd1891b71b73645e30a66eb3669512325ebd0 | /CarbonRender/Inc/CRGLHelper.h | bcd587b8682a54ce0302c7157f74e9b2a0a49641 | [
"MIT"
] | permissive | Hanggansta/CarbonRender | 0cba7b1abf0853069c117cd9124d9c831fe5d889 | f484dfbdf45403f0b548d51a4adbe72840aabdec | refs/heads/master | 2020-07-31T06:23:20.885346 | 2019-09-23T21:53:36 | 2019-09-23T21:53:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 585 | h | #ifndef CR_GLHELPER
#define CR_GLHELPER
#include "..\Inc\CRGloble.h"
class GLHelper
{
public:
static void SetGLArrayBuffer(GLuint bIndex, GLsizeiptr bSize, const GLvoid* bData, GLuint eSize, GLenum eType, GLuint aPos);
static GLuint SetGLRenderTexture(GLsizei w, GLsizei h, GLint internalFormat, GLenum format, GLenu... | [
"carbonsunsu@gmail.com"
] | carbonsunsu@gmail.com |
5c448fedde2f5d8c0bd3ac58b756e03900e86169 | d7a5503983afe9cefe20ede4ff95d5f161d17e69 | /uva11364.cpp | c6f9b54e45ca50201fe8ea56a22104920c3e8e88 | [] | no_license | x8522207x/uva | 93acf2caeb5d04e5a6353187b32124a6d29bac9f | c120baee2fc6d8734eec6a12348a2042a8d0032d | refs/heads/master | 2022-02-13T02:35:42.184762 | 2019-07-19T10:58:36 | 2019-07-19T10:58:36 | 107,366,185 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 379 | cpp | #include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main(){
int Case=0;
cin>>Case;
while(Case--){
int nums=0,sum=0;
cin>>nums;
vector<int>park;
for(int i=0,g=0;i<nums;i++){
cin>>g;
park.push_back(g);
}
sort(park.begin(),park.end());
for(int i=0;i<park.size()-1;i++)... | [
"noreply@github.com"
] | x8522207x.noreply@github.com |
6b05cfeef0c81bc602cd9227b30c9ffc6498d62c | 82815230eeaf24d53f38f2a3f144dd8e8d4bc6b5 | /Laminar Pipe/laminarPipe3/system/blockMeshDict | 3491effb200ecd07d59f9db4f54f45ef738366ab | [
"MIT"
] | permissive | ishantja/KUHPC | 6355c61bf348974a7b81b4c6bf8ce56ac49ce111 | 74967d1b7e6c84fdadffafd1f7333bf533e7f387 | refs/heads/main | 2023-01-21T21:57:02.402186 | 2020-11-19T13:10:42 | 2020-11-19T13:10:42 | 312,429,902 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,740 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1912 |
... | [
"ishantamrakat24@gmail.com"
] | ishantamrakat24@gmail.com | |
8f7fe346591e99e07b1521ac18f23a48fa07129d | 7a3fb6fafb5dff31d998d8db529361d462acca1d | /Games/Tactics/Code/Game/Rendering/Mesh.hpp | cfccf21c6c4101227c588da246b4ab422c9a96e2 | [] | no_license | jholan/Kaleidoscope | 643cc65bdcf43cfac292137f08ba5789396d51dc | 5aa3c91c75d73c8ed3718c031ae449b6199e1d44 | refs/heads/master | 2020-05-23T08:55:00.707693 | 2019-06-26T20:05:08 | 2019-06-26T20:05:08 | 186,697,847 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,701 | hpp | #pragma once
#include <vector>
#include <map>
#include "Engine/Strings/HashedString.hpp"
#include "Engine/XML/XMLUtils.hpp"
#include "Engine/Math/Primitives.hpp"
#include "Engine/Rendering/LowLevel/RenderingEnums.hpp"
class VertexBuffer;
class IndexBuffer;
class VertexLayout;
enum eResourceLoadState;
class Sub... | [
"jholan@smu.edu"
] | jholan@smu.edu |
24bcf3591d31761d3deb26c0b8d3405372b36d91 | 5c41d1e2eb0f4a73c939b061657045363d4e667c | /src/graph/timing_internal_graph.cpp | 5b1326afcfec4c1f9f8c52ffe9ca20263a378369 | [] | no_license | me2x/iNARK | 93d2f2179466d6fd7c509e1789057fd39407db58 | f59dcfdedbe0306ebb814aaf6d26d3a6b0ec1096 | refs/heads/master | 2020-05-21T12:27:42.023362 | 2017-04-04T14:21:58 | 2017-04-04T14:21:58 | 47,130,570 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 31,971 | cpp | #include "timing_internal_graph.hpp"
#include "custom_visitors.hpp"
timing_internal_graph::timing_internal_graph()
{
ig = Timing_Graph();
}
void timing_internal_graph::build_graph(std::shared_ptr<Source_Graph> g){
std::cout<<"print called"<<std::endl;
PRINT_DEBUG("print called");
ig.clear();
std::p... | [
"vitali.ema@hotmail.it"
] | vitali.ema@hotmail.it |
c1e7472e39f0b344d4fca6bd44fc67f300b3280d | 9ebede2bbe515e7e0c5b24284ae91fd1ce759de4 | /labust_mission/include/labust_mission/serviceCall.hpp | f5f3ef3310f5af631fb81c8ac481270b1bfe3148 | [] | no_license | compiaffe/labust-ros-pkg | f0476f73c8a51d12d404a47c0703515eb0e75dfc | e4e5fc2093575932d6d86cb23ff652848171461c | refs/heads/master | 2021-01-18T16:52:18.457602 | 2014-08-26T16:27:58 | 2014-08-26T16:27:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,409 | hpp |
/*********************************************************************
* serviceCall.hpp
*
* Created on: Feb 26, 2014
* Author: Filip Mandic
*
********************************************************************/
/*********************************************************************
* Software License Agr... | [
"filip.mandic@gmail.com"
] | filip.mandic@gmail.com |
52f55123b63e1c1d68a253a92e37cbca9eff51d3 | 4cdaf1bcf4ade491da75053d5240fc5b8c3c0566 | /TIDCore/TIDModel.cpp | f019ea714e92ab4fae017b53322e3a4f009cb179 | [] | no_license | presscad/Tid | 2deae59b344363e0ce132ae8d8c5a6d422eee489 | 528afa2fea893e3131fa8bb7673363fba5d6e67b | refs/heads/master | 2021-02-15T20:28:35.226199 | 2020-02-26T07:57:09 | 2020-02-26T07:57:09 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 81,676 | cpp | #include "StdAfx.h"
#include "tidmodel.h"
#include "SegI.h"
#include "list.h"
#include "ArrayList.h"
#include "LogFile.h"
#include "WirePlaceCode.h"
#if defined(_DEBUG)&&!defined(_DISABLE_DEBUG_NEW_)
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////... | [
"wxc_sxy@163.com"
] | wxc_sxy@163.com |
b0ed8a2cbed8c17ff2e7e7f5c2b83df2d7948b47 | cbca949c25ef12fb2f1134752d7f684251c00052 | /core/modules/cliff_settings.cpp | ca771b8ce01890b59d96f403381028471de5a6d3 | [
"MIT"
] | permissive | lebedyanka/rf | 7427dd5471e75951302e043a511eb40adafc2dd0 | aaedc7c8b7bdf6caf2732bf214db8936fa8dc018 | refs/heads/master | 2023-04-27T19:23:09.086283 | 2021-05-11T15:41:28 | 2021-05-11T15:41:28 | 366,419,878 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,140 | cpp | #include "cliff.h"
namespace prowogene {
namespace modules {
using std::string;
using utils::JsonObject;
static const string kEnabled = "enabled";
static const string kOctaves = "octaves";
static const string kLevels = "levels";
static const string kSeed = "seed";
static const string kGrain = "grain";
void Cl... | [
"lebedyanka97@gmail.com"
] | lebedyanka97@gmail.com |
eb481c4bc3c811826fe377121a4763d6f3c1bc8f | c5534a6df16a89e0ae8f53bcd49a6417e8d44409 | /trunk/Dependencies/Xerces/include/xercesc/internal/VecAttributesImpl.cpp | 421153a8851b0024e40bf368a251d425551fae51 | [] | no_license | svn2github/ngene | b2cddacf7ec035aa681d5b8989feab3383dac012 | 61850134a354816161859fe86c2907c8e73dc113 | refs/heads/master | 2023-09-03T12:34:18.944872 | 2011-07-27T19:26:04 | 2011-07-27T19:26:04 | 78,163,390 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,083 | cpp | /*
* Copyright 1999-2001,2004 The Apache Software Foundation.
*
* 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
*
* Unle... | [
"Riddlemaster@fdc6060e-f348-4335-9a41-9933a8eecd57"
] | Riddlemaster@fdc6060e-f348-4335-9a41-9933a8eecd57 |
f06c7946b8ece14ad3cd6a4226c2a1f669fc46cf | b136d3337b25b08bef4d60582e10fe14a24daa57 | /src/model/cpu/SignedMorsel.h | ef8169585aa7f8b0dc5ecee4ada7876c68a33ca6 | [] | no_license | jcantrell/cpusim | f5f61f52d5a35c9cd7f21a50c9986b854f280d84 | 619a3fe0f30c7eb8acc78b35bb47e50bd14b7fff | refs/heads/master | 2023-03-27T08:34:06.519382 | 2020-04-20T05:52:10 | 2020-04-20T05:52:10 | 351,300,683 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,581 | h | #ifndef SIGNEDMORSEL_H
#define SIGNEDMORSEL_H
#include <boost/dynamic_bitset.hpp>
#include <boost/functional/hash.hpp>
#include <iostream>
#include "UnsignedMorsel.h"
using namespace std;
using namespace boost;
class UnsignedMorsel;
class SignedMorsel
{
private:
UnsignedMorsel um;
friend class UnsignedMorsel... | [
"cantrel2@pdx.edu"
] | cantrel2@pdx.edu |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.