blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2e0e24ae3ced5e30584e532a07e297f943b0244e | 9a8c683054f2a34de10a6d5eba74d77d7d5ce832 | /Arbitrary codes/doublydeletion.cpp | 3df8ea6032170ec6dfb01518fe33d023761b31c8 | [] | no_license | SKBshahriar/Codes | 5f85a4e1220f25e4cf8d766482e04279d92a7645 | bbf6ff3af37b9436ed75f23290cef60e88840fc2 | refs/heads/master | 2022-02-27T08:47:37.831842 | 2019-10-05T09:39:51 | 2019-10-05T09:39:51 | 116,161,613 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,498 | cpp | #include<stdio.h>
struct list{
int data;
struct list *back;
struct list *next;
};
typedef struct list node;
void display(node *start)
{
node *temp;
temp=start;
while(temp!=NULL)
{
printf("%d ",temp->data);
temp=temp->next;
}
}
int main()
{
node *start,*temp,*prev;
... | [
"34690284+SKBshahriar@users.noreply.github.com"
] | 34690284+SKBshahriar@users.noreply.github.com |
ed87a2ef3db941f55137e22b4c85a4a33dd72b85 | 4090222a5a1418ee607fe1fb86e7287b02f459df | /include/lstm/cell.hpp | 57addc1cbf72ccf1b2ba452ebf1f552c180f515c | [
"MIT"
] | permissive | pcannon67/lstm-from-scratch | 539ed7d3be0d7a31cc712d6346ace84c55e2b6d0 | df61ded892ae7ef576a0c7cc572f6375dd13c99b | refs/heads/master | 2020-12-03T10:04:52.907136 | 2018-12-08T21:39:46 | 2018-12-08T21:39:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,298 | hpp | /**
* MIT License
*
* Copyright (c) 2018 Prabhsimran Singh
*
* 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, co... | [
"pskrunner14@gmail.com"
] | pskrunner14@gmail.com |
e7ef6bba5aeeef65302cc9742b2792b3dfbab4c1 | b54b6168ba35ce6ad34f5a26b5a4a3ab8afa124a | /kratos_3_0_1/kratos/linear_solvers/luc_solver.h | 98ec95320ccf5b559ecb0963ed552524c60f683f | [] | no_license | svn2github/kratos | e2f3673db1d176896929b6e841c611932d6b9b63 | 96aa8004f145fff5ca6c521595cddf6585f9eccb | refs/heads/master | 2020-04-04T03:56:50.018938 | 2017-02-12T20:34:24 | 2017-02-12T20:34:24 | 54,662,269 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 25,514 | h | /*
==============================================================================
Kratos
A General Purpose Software for Multi-Physics Finite Element Analysis
Version 1.0 (Released on march 05, 2007).
Copyright 2007
Pooyan Dadvand, Riccardo Rossi
pooyan@cimne.upc.edu
rrossi@cimne.upc.edu
CIMNE (International ... | [
"pooyan@4358b7d9-91ec-4505-bf62-c3060f61107a"
] | pooyan@4358b7d9-91ec-4505-bf62-c3060f61107a |
de320e506ad6889a9fa1f28254dd8520f63b94a5 | af0ecafb5428bd556d49575da2a72f6f80d3d14b | /CodeJamCrawler/dataset/12_1292_16.cpp | 48d6ee7afa86692a3d9bef7d3ad3a979be5764e1 | [] | no_license | gbrlas/AVSP | 0a2a08be5661c1b4a2238e875b6cdc88b4ee0997 | e259090bf282694676b2568023745f9ffb6d73fd | refs/heads/master | 2021-06-16T22:25:41.585830 | 2017-06-09T06:32:01 | 2017-06-09T06:32:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,978 | cpp | #include <iostream>
#include <set>
#include <string>
#include <vector>
#include <deque>
#include <queue>
#include <stack>
#include <list>
#include <map>
#include <math.h>
#define PI 3.14159265
#define EPS .0000001
#define max(a,b) if((a)>(b)) return (a); else return (b);
double min(double a, double b);
... | [
"nikola.mrzljak@fer.hr"
] | nikola.mrzljak@fer.hr |
629a56fbae25c968c7e369ca6f7beb07c2b6cb09 | 44275f10c058d27f293a8fba86d4c4c79d8b8e6c | /src/lexical.cpp | 214f17d4acd54bbb5b91616f050476ef212308f1 | [] | no_license | sultanyaril/interpreter | 813528a9b3549bb653544140490c14b321a37342 | 7ec32b0de5054989d527c0c8652d4aef09dbae7c | refs/heads/main | 2023-04-09T04:45:54.126208 | 2021-04-30T16:33:11 | 2021-04-30T16:33:11 | 344,024,857 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,390 | cpp | #include <lexical.h>
Lexem *get_oper(string & codeline, int & i) {
for (int op = 0; op < NUMBER_OF_OPS; op++) {
string subcodeline = codeline.substr(i, OPERTEXT[op].size());
if (OPERTEXT[op] == subcodeline) {
i += OPERTEXT[op].size();
if (subcodeline == "if" || subcodeline =... | [
"sultanyaril@gmail.com"
] | sultanyaril@gmail.com |
3ff198c6ff51a01c5e5376d456fceb400880efc0 | af0ecafb5428bd556d49575da2a72f6f80d3d14b | /CodeJamCrawler/dataset/09_16380_9.cpp | 8ef2a298c89c956bd8ad7edf69e30ebb43657d56 | [] | no_license | gbrlas/AVSP | 0a2a08be5661c1b4a2238e875b6cdc88b4ee0997 | e259090bf282694676b2568023745f9ffb6d73fd | refs/heads/master | 2021-06-16T22:25:41.585830 | 2017-06-09T06:32:01 | 2017-06-09T06:32:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 859 | cpp | #include<iostream>
#include<list>
#include<algorithm>
#include<windows.h>
#include<string>
#include<dos.h>
#include "math.h"
using namespace std;
int next(int num)
{
int mainarray[10]={0};
int num1;
num1=num;
int index;
while(num1 != 0)
{
index = num1%10;
mainarray[index]++;
num1 /= 1... | [
"nikola.mrzljak@fer.hr"
] | nikola.mrzljak@fer.hr |
67cf7124d5b6b0f9c6fc181e94e5a93333d9c92d | 41f8be8ecd6a6b939f3d846a0cc0919ab2c8d638 | /project/changeTheAPPColor/main/mainwindow.cpp | bd8a63164881efa4aa6d3ce2e07031c91cf3c057 | [] | no_license | lsy1599/WorkSpace | 4ca5132c7ebd2b3a9e9f2fdab5e13d69a51e28fc | 680d03ddb6e35a22a43e103116d2949044cc4e02 | refs/heads/master | 2020-05-14T15:11:16.909045 | 2017-02-21T07:24:44 | 2017-02-21T07:24:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 329 | cpp | #include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QToolButton>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
ui->pushButton-> setAutoDefault(false);
ui->pushButton->setText(tr("hello"));
}
MainWindow::~MainWindow()
{
dele... | [
"qiankun@nfschina.com"
] | qiankun@nfschina.com |
8f18c507803a8e48adcf98c4a96e5d79d90fbfed | e12d90df109ec398b42394e1e47c238853d4e4d4 | /puru/Player.h | cead43cd2977a80e71d84fbe41eef7353567bca7 | [] | no_license | Zwiterrion/Puru-SFML | 82708f213c6d3eb42ef9efac3665641eb32bcad7 | a13df7516ee52d6e31e8b3b5f03da969c2ae5378 | refs/heads/master | 2020-05-20T09:37:30.499799 | 2014-05-23T15:14:54 | 2014-05-23T15:14:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 700 | h | //
// Player.h
// THE_PURU
//
// Created by sayw00t on 24/02/2014.
// Copyright (c) 2014 sayw00t. All rights reserved.
//
#ifndef __THE_PURU__Player__
#define __THE_PURU__Player__
#include <iostream>
#include "Case.h"
#include "Position.h"
class Player : public Case{
public:
Player();
virtual ~Player();... | [
"etianne@info-spadax.iut.bx1"
] | etianne@info-spadax.iut.bx1 |
83c2a8500c300725ffc2a9405fe7ea956cc53921 | 5c1d53b106586ff07bb9e62d8b09970a44c7149e | /college/seit/TERMSEM2/dsf/mad/TREEIMAG.CPP | a508c5c332bda7c39f1d697c5ca9f2488142793c | [] | no_license | knotverygood/CollegeCode | 93de0021cc601989dbded8dee0d686ece15a77d3 | dc96f63d7a635942ce519ff42d53b8da93c63a64 | refs/heads/master | 2020-12-29T03:19:40.111697 | 2011-07-01T06:41:48 | 2011-07-01T06:41:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,776 | cpp | #include<iostream.h>
#include<fstream.h>
#include<process.h>
#include<graphics.h>
#include<conio.h>
#include<stdio.h>
#include<string.h>
#include<dos.h>
#include<stdlib.h>
struct node
{
char a[10];
node*lt,*rt;
};
char ch;
void gettree(node*trev,int x,int y)
{
gotoxy(x,y);
fflush(stdin);
gets(trev->a);
gotoxy(1,25);
p... | [
"ahuja.madhur@gmail.com"
] | ahuja.madhur@gmail.com |
4c0cff9d7e8ff060fc9c63e91639b970bc25c263 | b2b298f4f3205e16e0491b26f81df7e352dddc7a | /include/opendis/Environment.h | d34bf9bfaa4327c703bf75f3dc18507e60653f9e | [] | no_license | mustafaemre06/tools | 9e20ded4fb34a5494e15a9f630952133e4c15ec0 | 7135c1376b643d7d3730fb180dafa53dfb2cefe5 | refs/heads/master | 2020-12-12T06:23:53.718215 | 2017-07-05T14:55:58 | 2017-07-05T14:55:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,432 | h | #ifndef ENVIRONMENT_H
#define ENVIRONMENT_H
#include <DIS/DataStream.h>
#include <DIS/msLibMacro.h>
namespace DIS
{
// Section 5.2.40. Information about a geometry, a state associated with a geometry, a bounding volume, or an associated entity ID. NOTE: this class requires hand coding.
// Copyright (c) 2007-2012, M... | [
"tim.tisler@digitalglobe.com"
] | tim.tisler@digitalglobe.com |
5d256fbc963c97ae29a77e0550eb9a9fd096633c | 851047b48314011afab311c7089188044ebffcab | /src/chainparamsbase.cpp | 12b560d762c8d870764ae18e082ec999e18279a7 | [
"MIT"
] | permissive | splashgroup/splashfarms-master | 25161f6e062a67dbe8a2c7ba030dd41faa9b212d | 9cbf1246f46b71c657e032dd53cde1a68d06fa9f | refs/heads/master | 2020-03-29T10:18:50.424689 | 2018-09-22T17:03:10 | 2018-09-22T17:03:10 | 149,798,603 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,833 | cpp | // Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2016-2017 The SPLASHFARMS developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "chainparamsbase.h"
#includ... | [
"vangyangpao@gmail.com"
] | vangyangpao@gmail.com |
35af97ce5ead0856ef6cc0372146a195dc3dfd5d | 03c6f14835bab9ce6bae28834a851ce044ca3d73 | /Forelesning_2_Individuell_Arduinopakke/PLab-Analog-Buzzer-Continous.ino | 9d6be2ac53577d673cbc70e83711d3166244de81 | [] | no_license | IDI-PLab/Lecture-examples | 4e466b63b88e286469a5026ad82997b3164cc883 | f321bca3da10ecbbdfa9b2bb17a697d33dd59304 | refs/heads/master | 2021-01-17T13:34:10.087584 | 2017-03-21T15:21:52 | 2017-03-21T15:21:52 | 29,125,706 | 5 | 8 | null | null | null | null | UTF-8 | C++ | false | false | 996 | ino | /*
Reads an analog input on pin 0 and outputs a square
wave with a frequency determined by the analog input.
Attach the center pin of a potentiometer to pin A0,
and the outside pins to +5V and ground.
The same code works for photoresistor setup on Pin A0.
Dag Svanæs, IDI, NTNU, 2015
This exampl... | [
"terjero@idi.ntnu.no"
] | terjero@idi.ntnu.no |
c50e758fdb6715bab952d943e7640f19f1c3259f | b84719d7e648d7afee61d19dc62dd966c1c61c80 | /include/importwizard.h | 245af626380670d1b4489d7184e2523bb0ca0f4a | [
"MIT"
] | permissive | chipgw/depthview | 45d6ce21fb23e9b4001adab3d069a252aa66206d | 188a18df2758b8ca0416bdd1fb39bab838abc93d | refs/heads/master | 2021-01-10T18:44:24.408915 | 2016-01-30T02:48:49 | 2016-01-30T02:48:49 | 8,889,302 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 599 | h | #pragma once
#include <QWizard>
#include <QDir>
class ImportWizard : public QWizard {
Q_OBJECT
const QDir ¤tDirectory;
public:
explicit ImportWizard(const QDir &directory, QWidget *parent = 0);
int nextId() const;
private:
enum { Page_Intro, Page_SelectFile, Page_SideBySide, Page_TopBotto... | [
"gw.chip.gw@gmail.com"
] | gw.chip.gw@gmail.com |
bdc2376ce23007b37733b6f0ec61b5589a8f843b | 94a70c240ca95b67368fc6fd41d3a4d942b68c44 | /src/core/BSPParser.cpp | 3f5711ce0524fc9c8c6ccb80afcaaec32b57a715 | [
"BSD-2-Clause"
] | permissive | harubaru/AquaEngine | 4197a8b792080e609859eebdd5a070ca6a5a84ae | 12253d0de8a41071c0d1b001e39d64e1042a2ea7 | refs/heads/master | 2022-03-21T15:45:04.673719 | 2019-12-16T19:17:34 | 2019-12-16T19:17:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,578 | cpp | #include <core/BSPParser.h>
void BSPParser::Load(const std::string &path)
{
std::ifstream file(path, std::ios::in | std::ios::ate | std::ios::binary);
unsigned char* data;
size_t data_len;
/* Get file size */
file.seekg(0, file.end);
data_len = file.tellg();
file.seekg(0, file.beg);
/* Read file into a buffe... | [
"tone121@cox.net"
] | tone121@cox.net |
ec5695d88c9c35e5c44551c90cf4a179d0cde0d2 | 6230f26d35774e26c29e0ed40c7100da515ab158 | /src/script/sign.cpp | e40494596c89787940890f9c74f2f921881817a0 | [
"MIT"
] | permissive | CoinAge-DAO/solari | 5dc8e8f064a7a9bacbbf090d1e618bd8ad7a7464 | 2d6cdf02c9a9e5ceb4f72364f81fce4c34e6c856 | refs/heads/master | 2020-05-18T00:02:41.459253 | 2015-04-11T18:50:01 | 2015-04-11T18:50:01 | 33,024,449 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,605 | cpp | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin Core Developers
// Copyright (c) 2015 Solarminx
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "script/sign.h"
#include "primitives/tr... | [
"chandradas@Chandras-MacBook-Air.local"
] | chandradas@Chandras-MacBook-Air.local |
2d1e19b161486f047f70f13312386c8212f1b5d2 | 4daed53ef188fe57fc90771c9042dd137e306261 | /WebKit/Source/WebKit/chromium/src/InspectorClientImpl.h | b16b6f46818c33ce4295e5f83a6a75c9b5e21d2c | [
"BSD-2-Clause",
"Apache-2.0"
] | permissive | JavaScriptTesting/LJS | ece7d0537b514e06f7f6b26cb06a9ab4e6cd7e10 | 9818dbdb421036569fff93124ac2385d45d01c3a | refs/heads/master | 2020-03-12T14:28:41.437178 | 2018-04-25T10:55:15 | 2018-04-25T10:55:15 | 130,668,210 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,736 | h | /*
* Copyright (C) 2009 Google 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 must retain the above copyright
* notice, this list of conditio... | [
"cumtcsgpf@gmail.com"
] | cumtcsgpf@gmail.com |
0d1da1d0d26f0e8799fe9e8d4bcf706afad91d10 | 6f2496382ff79ea61cf19ac0371860a7ee3676bc | /src/particle_filter.cpp | 962efb270913e91c2a3dc6ffad9ad3b5bd2aae38 | [
"MIT"
] | permissive | nturumel/CarND-Kidnapped-Vehicle-Project | b3037a89998f87ac61dd6a636e050802637a0c58 | 79d4d502e6b6ee1704c662d33b53161e492d7cfe | refs/heads/master | 2022-10-19T10:55:04.763612 | 2020-06-16T06:27:22 | 2020-06-16T06:27:22 | 272,379,967 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,806 | cpp | /**
* particle_filter.cpp
*
* Created on: Dec 12, 2016
* Author: Tiffany Huang
*/
#include "particle_filter.h"
#include <math.h>
#include <algorithm>
#include <iostream>
#include <iterator>
#include <numeric>
#include <random>
#include <string>
#include <vector>
#include <cmath>
#include "helper_functions.h"
#in... | [
"nihar1912@live.com"
] | nihar1912@live.com |
49a9493eb9f113e0bb1da6a7e8f414bb996e1f35 | 2a7e77565c33e6b5d92ce6702b4a5fd96f80d7d0 | /fuzzedpackages/tmg/inst/include/magnet/math/spline.hpp | 90f5eb1e951fa3fe5f0e5299362bd8fe9becdaa8 | [] | no_license | akhikolla/testpackages | 62ccaeed866e2194652b65e7360987b3b20df7e7 | 01259c3543febc89955ea5b79f3a08d3afe57e95 | refs/heads/master | 2023-02-18T03:50:28.288006 | 2021-01-18T13:23:32 | 2021-01-18T13:23:32 | 329,981,898 | 7 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 9,205 | hpp | /* dynamo:- Event driven molecular dynamics simulator
http://www.dynamomd.org
Copyright (C) 2011 Marcus N Campbell Bannerman <m.bannerman@gmail.com>
This program is free software: you can redistribute it and/or
modify it under the terms of the GNU General Public License
version 3 as published by... | [
"akhilakollasrinu424jf@gmail.com"
] | akhilakollasrinu424jf@gmail.com |
fceb55bc6d21b9f15eec72c607e1dddf641deb23 | 9cc213acfe71fabc9adb667abbf615e3b4ebbfe2 | /06-templates-and-linked-lists/node.hpp | 2f8fbf9d857fb7b2ce873ef18c9a16eced39ceca | [] | no_license | 2021-spring-cop-3530-tth/lecture-code | 0633ca2977cfb55e1b685785e6503cc892fb437e | fcd72b9720013cd5b6b378d52cc0be9040843c9a | refs/heads/main | 2023-04-09T22:13:58.296645 | 2021-04-21T14:14:14 | 2021-04-21T14:14:14 | 330,843,702 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 260 | hpp | #ifndef NODE_HPP
#define NODE_HPP
template <typename DataType>
class Node
{
private:
DataType payload;
Node<DataType>* next;
public:
Node (DataType data, Node<DataType>* next = nullptr);
DataType GetData ();
Node<DataType>* GetNext ();
};
#endif
| [
"sbitner@uwf.edu"
] | sbitner@uwf.edu |
57c8d5570fd279ad5490bc116f4061d1682d5247 | 8834b745b49a9593507c7854804f982680733fc5 | /中级算法/数组和字符串/三数之和/C++/citation.cpp | c56f2bfcd24f44fb31bd64c291a992817d99aa8d | [] | no_license | xingkaihao/Leetcode | 739105eb6416d0480a36f532b8abf894980465d2 | 61b6a4ce0854b81e9a095b8ba0fba91fe92c60b5 | refs/heads/master | 2020-04-08T02:26:00.583629 | 2019-08-22T02:32:20 | 2019-08-22T02:32:20 | 158,935,556 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,397 | cpp | class Solution {
public:
vector<vector<int>> threeSum(vector<int>& nums) {
vector<vector<int>> result;
int i = 0, j = 0, k = 0, target = 0;
sort(nums.begin(),nums.end()); //对数组进行排序
for(i = 0; i < nums.size(); i ++){
if(nums[i] > 0)
break;
else... | [
"18202419054@163.com"
] | 18202419054@163.com |
fd44e8e8b472c610a621c04448a928c185d39ee0 | 5ed358ac90e68e225a13d6b2a5749c7dc38e7b97 | /chapter 12/12.27/query_result.h | 501781868221eee28ede5dbece0c45f0559e250b | [] | no_license | zzzwind/cpp-primer-5th-exercises | 202cc241000bd888d1d0b849f37328a593d83d01 | 404e4e0c5c0a055f7b8334b93a6b95f75b71501f | refs/heads/main | 2023-06-06T16:27:28.981906 | 2021-07-13T07:15:25 | 2021-07-13T07:15:25 | 331,148,894 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 619 | h | #ifndef QUERYRESULT_H
#define QUERYRESULT_H
#include <fstream>
#include <string>
#include <vector>
#include <map>
#include <set>
#include <memory>
class QueryResult {
friend std::ostream& print(std::ostream&, const QueryResult&);
public:
using line_no = std::vector<std::string>::size_type;
QueryResult(std::str... | [
"zykblack@gmail.com"
] | zykblack@gmail.com |
491ee780e0fca6edbea28de9838da82a7c098940 | 4c052882366dd86b06880d8e9908b30d627b8d2e | /0061_unique_paths/solution.cpp | 0f7508a55477009c0370db522e3bbf38c4178209 | [] | no_license | adithya-tp/leet_code | da93c9f4422d92c472e5595011abf898ae88586e | 42204865cde865dd5b8306c3e1861b8086fb19e6 | refs/heads/master | 2022-08-31T14:28:54.711351 | 2022-08-11T15:18:04 | 2022-08-11T15:18:04 | 214,262,000 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 624 | cpp | class Solution {
public:
int uniquePaths(int m, int n) {
vector<vector<int>> dp_grid(m, vector<int>(n,0));
dp_grid[0][0] = 1;
for(int i = 0; i < m; i++){
for(int j = 0; j < n; j++){
if(i > 0 && j > 0){
dp_grid[i][j] += dp_grid[i-1][j] + dp_grid... | [
"adithyatp@yahoo.com"
] | adithyatp@yahoo.com |
2ed4ebf44820aa4bacdfc1a752033984f3605f67 | c99563482d18ebb50c3bdd3feb3e3f821f7cccc4 | /src/netbase.cpp | 1e0c032b657607632fe6a4e7fb98b498bfee09c5 | [
"MIT"
] | permissive | matsuiny2004/BookCoin | afa85971ae01a17a9d53c3fdcdc1cca7db05270e | 23ad19110babe6b0cdd80b62eec314d3c270938b | refs/heads/master | 2020-04-13T22:01:41.080231 | 2018-11-18T17:39:14 | 2018-11-18T17:39:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 43,753 | cpp | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifdef HAVE_CONFIG_H
#include "config/book-config.h"
#endif
#include "netbase.h"... | [
"bookcoin@protonmail.com"
] | bookcoin@protonmail.com |
df08f0e658bfdf865593802ac907f703b559499b | d1a4428dd57c7a5dbfa84dd04cb9054df2388a9c | /src/content/renderer/media/webrtc/webrtc_audio_renderer.h | e22078580953d32d663d1180e91fb69cb536c740 | [
"BSD-3-Clause"
] | permissive | riverite/chromium | bfa4e354dc71fdbe942c648d311a7663533af379 | 458877c9b9a7e0f8ee55cb787cd12a1ecef3fe0f | refs/heads/master | 2022-12-29T23:14:08.184892 | 2018-11-02T14:45:03 | 2018-11-02T14:45:03 | 154,111,141 | 1 | 5 | null | 2022-12-18T00:43:23 | 2018-10-22T08:36:22 | null | UTF-8 | C++ | false | false | 10,155 | h | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_AUDIO_RENDERER_H_
#define CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_AUDIO_RENDERER_H_
#include <stdint.h>
#i... | [
"sket0039@gmail.com"
] | sket0039@gmail.com |
24f5a7b5a6550f0498d52889836e4df663d24f12 | c09dc7a0a2cf63d9314c7353bf00cfd987dcc250 | /SturdyGoggles/SturdyGoggles/InputLayout.h | 96f5aa369f53ab6ae13be74cc532092b8dd3fd28 | [
"MIT"
] | permissive | SenorChurro/sturdy-goggles | 62b88227aef823799a7aa0e5bd1da25be099ccc7 | 6d242ec30668af3b95340d005bf0734538005dc6 | refs/heads/master | 2021-05-17T17:14:37.732756 | 2020-11-09T01:55:56 | 2020-11-09T01:55:56 | 250,890,507 | 0 | 0 | MIT | 2020-11-09T01:55:57 | 2020-03-28T20:48:01 | C++ | UTF-8 | C++ | false | false | 317 | h | #pragma once
#include "Bindable.h"
class InputLayout : public Bindable
{
public:
InputLayout(Graphics& gfx,
const std::vector<D3D11_INPUT_ELEMENT_DESC>& layout,
ID3DBlob* pVertexShaderBytecode);
void Bind(Graphics& gfx) noexcept override;
protected:
Microsoft::WRL::ComPtr<ID3D11InputLayout> pInputLayout;
};
| [
"parker.brian.dev@gmail.com"
] | parker.brian.dev@gmail.com |
e095f4e44341daae2680f1ad5fd95b132a42b42c | 002d74020e9ab301b712fb81d4d1ea56638aef27 | /Exercises.h | 4b9ada6b82331e79797b91cfae85fcc97dda95d4 | [] | no_license | dongwookang95/C-practice | 4b8896ddb6cc06a72b096e516903fceb68e260c9 | 82db95363a0bfb9dbba1e99e54d86a89311aff75 | refs/heads/master | 2020-07-24T10:20:32.129425 | 2019-09-11T19:40:53 | 2019-09-11T19:40:53 | 207,892,662 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,250 | h | #ifndef EXERCISES_H
#define EXERCISES_H
#include <list>
#include <set>
////////////////// Exercise 1 ////////////////////////////////////
std::pair<float, float> Statistics(const std::list<float>& values)
{
return std::pair<float, float>(0.f, 0.f);
}
//////////////////////////////////////////////////////////////////... | [
"d.kang-1@student.tudelft.nl"
] | d.kang-1@student.tudelft.nl |
52c9146a0c505553baa601d7756c47f9615b7290 | 127f962913f2366de4614311af41cd6f814f590e | /Image-processing-Lab-3/Image-processing-Lab-3/hough_circle.h | 24b77e55d18d3f427fa0113d663a3e474aaf04a3 | [] | no_license | Oleg-ui/Image-processing-Lab-3 | cc110333d98f89a05806b6a5a1c3570d64b222e6 | 88797737b292fed0fe37557163bf4cce4a7e41e4 | refs/heads/main | 2023-01-28T13:35:42.016474 | 2020-12-06T17:29:32 | 2020-12-06T17:29:32 | 319,076,256 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 439 | h | #include <vector>
namespace keymolen {
class HoughCircle {
public:
HoughCircle();
virtual ~HoughCircle();
public:
int Transform(unsigned char* img_data, int w, int h, int r);
int GetCircles(int threshold, std::vector< std::pair< std::pair<int, int>, int> >& result );
const unsigned int* GetAccu(int *w... | [
"olejka647@gmail.com"
] | olejka647@gmail.com |
5ea481608956c06a2544a62ae553ce52e10a8429 | 5f231ebdb98e6c83e2e3586eec2820b36bd4dec8 | /fx_graphics/PostprocessDemo.h | 73f75a22407802cc7a132c59de525d9d5e00f83b | [] | no_license | uttumuttu/niwa | 926583b4cc9b420b827d3cb991227f2b34486778 | 9e4fc79c469cf7db8b081e489df6e7d04140f336 | refs/heads/master | 2016-09-03T06:22:19.772697 | 2015-09-02T15:26:15 | 2015-09-02T15:26:15 | 40,969,355 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,753 | h | /**
* @file
* @author Mikko Kauppila
*
* Copyright (C) Mikko Kauppila 2009.
*/
#ifndef POSTPROCESSDEMO_H
#define POSTPROCESSDEMO_H
#include "niwa/demolib/AbstractEffect.h"
namespace niwa {
namespace graphics {
class FrameBuffer;
class Program;
class Texture;
}
}... | [
"mikko.kauppila@oulu.fi"
] | mikko.kauppila@oulu.fi |
f90130299fc5518373765dbcab659eefbd1b176c | 99a34576627604d5e1bc97c4cac2f49a616dabe8 | /test/test_xhighfive.cpp | 06ba1a8a495e4454cc1d1a2e8f9e5720a4e9bfd3 | [
"BSD-3-Clause"
] | permissive | ken012git/xtensor-io | 0510a3603e076e792745a2601018086f55e497a4 | 2a77dcb600d24c8a74e77969732efbffecbe4217 | refs/heads/master | 2020-04-09T08:49:32.117748 | 2018-12-04T15:17:20 | 2018-12-04T15:17:20 | 160,209,740 | 0 | 0 | BSD-3-Clause | 2018-12-03T15:08:57 | 2018-12-03T15:08:56 | null | UTF-8 | C++ | false | false | 5,191 | cpp | /***************************************************************************
* Copyright (c) 2016, Johan Mabille, Sylvain Corlay and Wolf Vollprecht *
* *
* Distributed under the terms of the BSD 3-Clause License. *
* ... | [
"tom@geus.me"
] | tom@geus.me |
a22a3ed11dbbc7c589625e3429d2dfe66ef91f6f | bef657345910dc788471ac375d8d280e9828876b | /external/tapir-0.3/src/problems/activetag/ActiveTagModel.hpp | 1acf014ba5fcdfbb6211f4c5ef0dcd1fbeb52810 | [] | no_license | isnanmulia/csipb-jamu-prj | 47186d50cc8a101d92e8b00596c4b33840ce4efa | 6fd95571267be32bbaf3efb84ff69e9612cfc6ee | refs/heads/master | 2021-01-17T06:40:49.574352 | 2015-06-12T11:57:10 | 2015-06-12T11:57:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,320 | hpp | /** @file ActiveTagModel.hpp
*
* Contains ActiveTagModel, which implements the core Model interface for the ActiveTag POMDP.
*/
#ifndef ACTIVETAGMODEL_HPP_
#define ACTIVETAGMODEL_HPP_
#include <memory> // for unique_ptr
#include <ostream> // for ostream
#include <string> ... | [
"vektor.dewanto@gmail.com"
] | vektor.dewanto@gmail.com |
ac75246e743a01e9e6c7e8959341f440b79b8e05 | 627d4d432c86ad98f669214d9966ae2db1600b31 | /src/scripttools/debugging/qscriptbreakpointswidgetinterface.cpp | 14ab828424507bde8a3dfae542d7426aa9bab630 | [] | no_license | fluxer/copperspice | 6dbab905f71843b8a3f52c844b841cef17f71f3f | 07e7d1315d212a4568589b0ab1bd6c29c06d70a1 | refs/heads/cs-1.1 | 2021-01-17T21:21:54.176319 | 2015-08-26T15:25:29 | 2015-08-26T15:25:29 | 39,802,091 | 6 | 0 | null | 2015-07-27T23:04:01 | 2015-07-27T23:04:00 | null | UTF-8 | C++ | false | false | 1,626 | cpp | /***********************************************************************
*
* Copyright (c) 2012-2015 Barbara Geller
* Copyright (c) 2012-2015 Ansel Sermersheim
* Copyright (c) 2012-2014 Digia Plc and/or its subsidiary(-ies).
* Copyright (c) 2008-2012 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.... | [
"ansel@copperspice.com"
] | ansel@copperspice.com |
7518fabd8de7042e88bb08cd12f5db9646f20b97 | 337c9311a4e81368d434bb511a9a6bcfce9534e4 | /SlothEngine/SlothEngine/Source/Graphics/SfmlDebugPhysicsRenderer.h | ea5f7071cce0428e57c9840cb945296c74339ab2 | [] | no_license | mylescardiff/PCGUniverse | 8c28a204e25725544d5d0078e18bdc92b19037e6 | 6ca222f96cacf4ade8efd639aa6106cbcd6e2c0d | refs/heads/master | 2023-01-23T23:56:42.935881 | 2020-12-07T21:25:16 | 2020-12-07T21:25:16 | 263,781,376 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,114 | h | #pragma once
#include <Box2D.h>
#include <SFML/Graphics.hpp>
#include <Common.h>
// this file is from Dylan, just using it to fix my polygon woes
namespace slth
{
class SfmlGraphics;
class IGraphics;
class SfmlDebugPhysicsRenderer : public b2Draw
{
private:
sf::RenderWindow* m_pTarget;
public:
SLTH_AP... | [
"myles@mylescardiff.com"
] | myles@mylescardiff.com |
e5dad5cbcbf0f8ee977b108fe41814922873d4c8 | 6a2420e2a51bb3b37491ca7f3a79efbd48d97947 | /benchmark/fileio.cpp | c978c5015b0177fb1ed2bf06ce68536f1fb683a8 | [] | no_license | linuxaged/lxd | cc3599eb2f4a63999a8668f28f26e358c9ab24e7 | 647bac54c39e512c64c851ce0154f0688aed0419 | refs/heads/master | 2021-07-05T03:00:13.661389 | 2020-09-16T07:48:20 | 2020-09-16T07:48:20 | 177,797,619 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 544 | cpp | #include <benchmark/benchmark.h>
#include "../src/numbers.h"
#include <charconv>
static void BM_SimpleAtof(benchmark::State& state) {
for(auto _ : state) {
float pi{};
lxd::SimpleAtof("3.1415926", &pi);
}
}
BENCHMARK(BM_SimpleAtof);
static void BM_fromChars(benchmark::State& state)... | [
"1991md@gmail.com"
] | 1991md@gmail.com |
2480fce72f0721582cfc2b69145ecf5ef87457e2 | 1e0d369a4b274771859b46f2d950ea9605d95f04 | /FinalProject2020/Final/src/_enemyB.cpp | eec13bf1368e3079023e0092b2ab795a828eda76 | [] | no_license | ccodecheff/game-development-project-opengl | b2c8a8417b18bd6b570b253e31d2a490aa55733e | f80a318c624f4aceec04d265d2e26b0243a99df8 | refs/heads/main | 2022-12-30T05:53:25.562071 | 2020-10-05T03:25:49 | 2020-10-05T03:25:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,876 | cpp | #include "_enemyB.h"
#include <windows.h>
_enemyB::_enemyB()
{
xPos = -0.3;
yPos = 0.0;
zPos = -1.0;
xSize = 0.19;
ySize = 0.19;
rotateX = 0.0;
rotateY = 0.0;
rotateZ = 0.0;
xMove=0.01;
speed = 0.01;
aiType = 0;
}
_enemyB::~_enemyB()
{
//dtor
}
void _enemyB::Enemy... | [
"rathore.karan.sn1@gmail.com"
] | rathore.karan.sn1@gmail.com |
ae5158edf6dc0cc7b664c7290aba6ce9d3395f05 | 08b8cf38e1936e8cec27f84af0d3727321cec9c4 | /data/crawl/squid/old_hunk_6245.cpp | ca2f174dc7bc99f4d1d92ea2617003a82a49d795 | [] | no_license | ccdxc/logSurvey | eaf28e9c2d6307140b17986d5c05106d1fd8e943 | 6b80226e1667c1e0760ab39160893ee19b0e9fb1 | refs/heads/master | 2022-01-07T21:31:55.446839 | 2018-04-21T14:12:43 | 2018-04-21T14:12:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,465 | cpp | static long fqdncache_low = 180;
static long fqdncache_high = 200;
static void
fqdncacheEnqueue(fqdncache_entry * f)
{
static time_t last_warning = 0;
struct fqdncacheQueueData *new = xcalloc(1, sizeof(struct fqdncacheQueueData));
new->f = f;
*fqdncacheQueueTailP = new;
fqdncacheQueueTailP = &new->... | [
"993273596@qq.com"
] | 993273596@qq.com |
e6d46238a7063296e234d869f2327a064ba8e3b4 | d0ab80441b2e37cbafbbb43c107db3f566a8e45d | /Include/Core/NTypes.hpp | 71be3cdc812b82ad23b6569490c90b857f435e65 | [] | no_license | aeadara/muzima-fingerprint-android | 653ad65ccbd60294afdef987522617ac5eef9e08 | a82a9c836ce1518c27234668858f139a0d8ae06a | refs/heads/master | 2020-12-03T10:37:23.712383 | 2015-08-11T15:30:10 | 2015-08-11T15:30:10 | 35,594,266 | 0 | 1 | null | 2015-05-14T06:11:44 | 2015-05-14T06:11:44 | null | UTF-8 | C++ | false | false | 74,460 | hpp | #ifndef N_TYPES_HPP_INCLUDED
#define N_TYPES_HPP_INCLUDED
#include <stdarg.h>
#include <iterator>
#include <iostream>
namespace Neurotec
{
#include <Core/NTypes.h>
}
#ifndef N_CPP
#error Only C++ is supported.
#endif
#ifndef N_FRAMEWORK_NO_AUTO_DETECT
// Try auto-detect the framework
#if defi... | [
"vikas.pandey06081986@gmail.com"
] | vikas.pandey06081986@gmail.com |
d2bc25a529261e345a1b6da9bd1f449cd070d77d | 3ff1fe3888e34cd3576d91319bf0f08ca955940f | /ms/src/v20180408/model/SDKPlan.cpp | f4f51a2a39a0f7263c24e3f5e4e92aa925206412 | [
"Apache-2.0"
] | permissive | TencentCloud/tencentcloud-sdk-cpp | 9f5df8220eaaf72f7eaee07b2ede94f89313651f | 42a76b812b81d1b52ec6a217fafc8faa135e06ca | refs/heads/master | 2023-08-30T03:22:45.269556 | 2023-08-30T00:45:39 | 2023-08-30T00:45:39 | 188,991,963 | 55 | 37 | Apache-2.0 | 2023-08-17T03:13:20 | 2019-05-28T08:56:08 | C++ | UTF-8 | C++ | false | false | 1,953 | cpp | /*
* Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
... | [
"tencentcloudapi@tencent.com"
] | tencentcloudapi@tencent.com |
329e945110a392e346223edb7814dbdee1ff117d | c17bfeb1d60a4bff2cddb3d556479fc8eaa18800 | /thridparty/ANTLR/antlr3baserecognizer.inl | ce92bdb92525c7c82812aaf5998e292e035b4e89 | [] | no_license | richardw347/STRP_V2 | c62c9ff55640489c03dab4e7337a578c5ce012be | 18d6925c8b4a6f1f5c6f30f2f55a773b79f2125e | refs/heads/master | 2021-01-13T01:49:03.830488 | 2015-05-18T16:20:52 | 2015-05-18T16:20:52 | 35,823,427 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 27,302 | inl | ANTLR_BEGIN_NAMESPACE()
template< class ImplTraits, class StreamType >
BaseRecognizer<ImplTraits, StreamType>::BaseRecognizer(ANTLR_UINT32 sizeHint,
RecognizerSharedStateType* state)
{
m_debugger = NULL;
// If we have been supplied with a pre-existing recognizer state
// then we just install it... | [
"richardw347@gmail.com"
] | richardw347@gmail.com |
3bfe58625e0282f6672efe814a5805fba45171b2 | 0de553bef21d03effa503c03481a8991dc426600 | /Engine/UISystem/UIBox.hpp | c3dc69c056362b2fdb2190cf8a13e875f0bc75a8 | [] | no_license | clayh7/Thesis | c7ef37cffcf6893bd0719915226f876ce02383e9 | 731e3587d72edc9ad432cb4a7dcd2ca01e3c0817 | refs/heads/master | 2020-04-27T10:20:39.716866 | 2020-03-24T22:16:51 | 2020-03-24T22:16:51 | 174,249,345 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,988 | hpp | #pragma once
#include "Engine/UISystem/UIWidget.hpp"
//-------------------------------------------------------------------------------------------------
class Mesh;
class MeshRenderer;
class Transform;
class UIWidgetRegistration;
struct XMLNode;
//-------------------------------------------------------------------... | [
"clayh7@gmail.com"
] | clayh7@gmail.com |
cadaa13395eeb87eeba6cde86fa416c05db3824f | 45b63a923c15751e0abcdbdae67bfec1fa5d9937 | /master/src/io/SessionHandler.cpp | 9bad0e5909046b56a6b9617f8740b5cd8e674de0 | [] | no_license | kzerbe/eos_daemon | e8e653aa22ee7f8d897b56baf92707525e88ea3f | dc8cceb6c1300869eab66976dbf7d39c3a95a319 | refs/heads/master | 2021-01-10T08:00:33.464874 | 2015-06-10T12:53:01 | 2015-06-10T12:53:01 | 36,790,493 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,289 | cpp |
#include <assert.h>
#include <unistd.h>
#include <sys/socket.h>
#include <errno.h>
#include <cstring>
#include "io/SessionHandler.h"
SessionHandler::SessionHandler(size_t bufferSize)
: m_bufferSize(bufferSize)
, m_fd()
, m_tracer("SessionHandler")
{
m_readBuffer = nullptr;
m_writeBuffer = null... | [
"vmadmin@localhost.localdomain"
] | vmadmin@localhost.localdomain |
22e04cf210d5c065267fc1a528086be02548b49a | 0f449b76892f7f33a1aee0345de5e04399d12f7d | /Practices/WriteReadUTF8File/src/main.cpp | 190f995ea323b080287accac87dc81a5f8d972ec | [
"MIT"
] | permissive | kenny-nelson/GomiBako | b0f1a9f9f126d5e3e78bd744d214260849e1cc98 | 45fbeaa4e7fe6876510535386cc9ebab0941379a | refs/heads/master | 2020-06-04T02:23:15.752090 | 2017-01-27T03:28:01 | 2017-01-27T03:28:01 | 30,114,605 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,591 | cpp | #include <iostream>
#include <locale>
#include <fstream>
#include <codecvt>
#include <sstream>
using namespace std;
const std::codecvt_mode kBom =
static_cast<std::codecvt_mode>(std::generate_header |
std::consume_header);
typedef std::codecvt_utf8<wchar_t, 0x10ffff, kBom> WideConvUtf... | [
"taro.yamada.was.born.in.63.bce@gmail.com"
] | taro.yamada.was.born.in.63.bce@gmail.com |
138cde0166f6479ac5c0cc893b4afd0c208b07d4 | d7c94f4a713aaf0fbb3dbb9b56c9f6945e0479c1 | /URI Online Judge/uri1430.cpp | 152708bfa1e6f6b4bdd02c0c901a21d3078cd2cd | [] | no_license | fonte-nele/Competitive-Programming | 2dabb4aab6ce2e6dc552885464fefdd485f9218c | faf0c6077ae0115f121968f7b70f4d68f9ce922b | refs/heads/master | 2021-06-28T09:24:07.708562 | 2020-12-27T14:45:15 | 2020-12-27T14:45:15 | 193,268,717 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,684 | cpp | #include <bits/stdc++.h>
using namespace std;
#define f(inicio, fim) for(int i = inicio; i < fim; i++)
#define fr(inicio, fim) for(int j = inicio; j < fim; j++)
#define all(x) x.begin (), x.end ()
#define sz(x) (int) x.size ()
#define pb push_back
#define mk make_pair
#define fi first
#define se second
#define eps 1e-... | [
"felipephontinelly@hotmail.com"
] | felipephontinelly@hotmail.com |
b1f780aacbf791d140d9eb3875efbc7485477cc8 | ddcd87d11fc6ed46f2989548fa66606ef8405862 | /sensor.h | 5d1bff47376ce10a04e0154e765c387ac1419490 | [] | no_license | togglebit/Arduino-Sensor-Library | ed7da271e1020ea0afe78f3205f2429d0d81e15a | df5674031880037a48b9d3cbcd7981a7d62a0327 | refs/heads/master | 2021-01-10T02:43:04.582583 | 2015-11-19T03:12:43 | 2015-11-19T03:12:43 | 45,045,371 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,576 | h | #ifndef SENSOR_H
#define SENSOR_H
#include "FIFOMath.h"
#include "acquisition.h"
//defines length of string array
#define STR_LNGTH 10
/**
* rename for public access via sketch with something user friendly
*/
#define scanSensors() cAcquire::runAcquisition ()
/**
* again rename for user friendly access, get last k... | [
"dan@togglebit.net"
] | dan@togglebit.net |
e42a25db230c947c4d0ae69de29fe2fa69909d73 | 9b2d8581233ac54b511045c3ef3172fdabb52ca0 | /retire_my.cpp | 3fc746153d3dfef4b5c19abed9be20349130896b | [] | no_license | eunjiWon/algorithm_study | 17e46f92052eaf5eeba44599c5e1945ca049ab25 | f779b537827a76d37aed2e69d09e25b6d5e8ecaa | refs/heads/master | 2021-01-25T14:10:00.507306 | 2018-09-08T10:21:28 | 2018-09-08T10:21:28 | 123,658,053 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,314 | cpp | // 오늘부터 N+1 일 째 되는 날 퇴사를 하기 위해서, 남은 N일 동안 최대한 많은 상담을 하려고 한다.
// 각각의 상담은 상담을 완료하는데 걸리는 기간 T와 상담을 했을 때 받을 수 있는 금액 P로 아루어져있다. 하루에 한사람씩 상담
// 첫째 줄에 N이 주어진다.
// 둘째 줄 부터 N개의 줄에 T와 P가 주어진다. 1일부터 N일까지 순서대로 주어진다.
// 얻을 수 있는 최대 이익을 출력한다.
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
vector< pair... | [
"eunjiwon@eunjiui-MacBook-Pro.local"
] | eunjiwon@eunjiui-MacBook-Pro.local |
db603419d6a15412d35b702281ae50c86aa8b40b | 9d70c35bd24bf128951cbcfd80f8f4a812ab9656 | /CLASSES/Contact1.cpp | 096d11800957591a87cc9d7af21d13e970e6187a | [] | no_license | dev-area/C-CPP | 81cdfa250bace00c83b14943fd7bf59d427c0cd4 | 53171edf07c990e436581168df478f9564224ed5 | refs/heads/master | 2021-01-23T06:10:57.869147 | 2020-01-26T08:42:11 | 2020-01-26T08:42:11 | 86,343,262 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,992 | cpp | // contact1.cpp
//
// implementation of contact class methods
//
#include "contact1.h"
void Contact::getContactDetails() {
//
// Class function to read and the attributes of the class
//
char buffer[255];
//
// Prompt for, and read data for class. No validation!
cout << "\nEn... | [
"liranbh@gmail.com"
] | liranbh@gmail.com |
79ef47bc0cc3a30d08687ce728bbcf1bfceab6ec | f977bd24b33f924ed5adea1288f932861d42cd4f | /ic/ic/mmio.cpp | bdaebe35b88c574ae3adeb3ba39c749f8df72689 | [] | no_license | poise30/OS_homework_2 | a17ba9acd07e8f67e5eb9e8fde42b43be7476489 | 3fa60fcdd9d23468b13c8de95c0f91b9d0bd62b5 | refs/heads/master | 2020-05-16T00:31:20.668634 | 2015-07-20T16:08:27 | 2015-07-20T16:08:27 | 39,393,517 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 16,458 | cpp | /**----------------------------------------------------------------------------
*
*-----------------------------------------------------------------------------
* All rights reserved by Noh,Yonghwan (fixbrain@gmail.com, unsorted@msn.com)
*-----------------------------------------------------------------------------
*
*... | [
"dladhsk@naver.com"
] | dladhsk@naver.com |
63c980f5fbd596dd1861744dadc2bced9d4e40eb | 2521f019d85941a9732e2bbb1ae18cafff3bbc72 | /DeferredRendering/DeferredRendering/Timer.cpp | 4db555cd2c5b49f396fb2dc84a4d1bf50685d361 | [] | no_license | vanish87/is-deferred-rendering-vs2012 | 03418e43cb1620d46f204abbe4cd033fb2ad7fc2 | 6122759bfa71ecdcd816222e80c3dfc1ceae4fd4 | refs/heads/master | 2020-05-28T03:25:18.717194 | 2017-01-29T06:57:57 | 2017-01-29T06:57:57 | 32,836,346 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 628 | cpp | #include "Timer.h"
namespace MocapGE
{
Timer::Timer(void)
{
}
Timer::~Timer(void)
{
}
void Timer::Retart()
{
PC_freq_ = 0.0;
counter_start_ = 0;
LARGE_INTEGER freq;
if(!QueryPerformanceFrequency(&freq))
PRINT("QueryPerformanceFrequency failed!");
PC_freq_ = double(freq.Q... | [
"vanish8.7@gmail.com@6294a696-770a-505e-ba8e-939081b951f1"
] | vanish8.7@gmail.com@6294a696-770a-505e-ba8e-939081b951f1 |
85136545b5718b94a955faa580f8c7ccb664f5a8 | b20c683654f483ff784373716d302ba4ef1084a3 | /src/qt/bitcoingui.cpp | 3edc8eede6ab132d9479682d3a6a564ab4808404 | [
"MIT"
] | permissive | valuecash/valuecash | cc99356fb12436443914b095060067a6c9d648e0 | a9912a6f545dcafd064731e391105e1cc57cd217 | refs/heads/master | 2021-07-21T04:27:23.669146 | 2017-10-27T17:04:19 | 2017-10-27T17:04:19 | 108,563,186 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 30,170 | cpp | // Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <QApplication>
#include "bitcoingui.h"
#include "transactiontablemodel.h"
#include "optionsdialog.h"
#include "abou... | [
"root@ubuntu-minimal.unspecified"
] | root@ubuntu-minimal.unspecified |
001ea1772f8308cece1ccdb8a6aa74947106b2f6 | 1d304cb05e293fedfdcc9cf4f38133f32d5447b0 | /VMSClient/editblackinfodlg.h | 0e13da04078486af8417d76589cfe94172694457 | [] | no_license | DimaKornev/VideoManagmentSystem | db254427e479669d713d604e3f97a73a2fccb1d3 | 27d2eb8b75a4f21afa67135e3ee51711aaa19cdf | refs/heads/master | 2023-04-15T08:14:04.180847 | 2021-04-29T08:30:40 | 2021-04-29T08:30:40 | 362,552,722 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,473 | h | #ifndef EDITBLACKINFODLG_H
#define EDITBLACKINFODLG_H
#include "clientbase.h"
#include <QDialog>
namespace Ui {
class EditBlackInfoDlg;
}
class NextButtonItem;
class FrameResultItem;
class ServerInfoSocket;
class EditOneBlackListSocket;
class EditBlackInfoDlg : public QDialog
{
Q_OBJECT
public:
explicit Ed... | [
"demidemi_1@outlook.com"
] | demidemi_1@outlook.com |
77db9160ce8db2ebac0fe8c60ba2817f63eea83f | 7398d79483b8b6fa51874859e07f1629e2cc7686 | /test/doc/http_snippets.cpp | 1547de72017e6ee1b31dce5ea0f87e8a87af68fe | [
"BSL-1.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | buckaroo-upgrade-bot/boost-beast | 4dc17ec199ce73d5cbec974ce2ac1fcf91c5b89f | d9a87bffcd92c58e2bc2f873a2e1ca6802e96fe4 | refs/heads/master | 2020-04-17T08:19:06.026456 | 2019-03-19T23:40:24 | 2019-03-19T23:40:24 | 166,407,132 | 0 | 0 | null | 2019-01-18T13:12:45 | 2019-01-18T13:12:45 | null | UTF-8 | C++ | false | false | 11,389 | cpp | //
// Copyright (c) 2016-2017 Vinnie Falco (vinnie dot falco at gmail 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)
//
// Official repository: https://github.com/boostorg/beast
//
#include <boost/beas... | [
"vinnie.falco@gmail.com"
] | vinnie.falco@gmail.com |
247cf1ffbca41d65eadac56fc8d16f78796406e4 | 67fc9e51437e351579fe9d2d349040c25936472a | /wrappers/8.1.1/vtkLightWrap.h | d4e20b83906f83541a967cb953663ac84ed0d651 | [] | permissive | axkibe/node-vtk | 51b3207c7a7d3b59a4dd46a51e754984c3302dec | 900ad7b5500f672519da5aa24c99aa5a96466ef3 | refs/heads/master | 2023-03-05T07:45:45.577220 | 2020-03-30T09:31:07 | 2020-03-30T09:31:07 | 48,490,707 | 6 | 0 | BSD-3-Clause | 2022-12-07T20:41:45 | 2015-12-23T12:58:43 | C++ | UTF-8 | C++ | false | false | 5,033 | h | /* this file has been autogenerated by vtkNodeJsWrap */
/* editing this might proof futile */
#ifndef NATIVE_EXTENSION_VTK_VTKLIGHTWRAP_H
#define NATIVE_EXTENSION_VTK_VTKLIGHTWRAP_H
#include <nan.h>
#include <vtkSmartPointer.h>
#include <vtkLight.h>
#include "vtkObjectWrap.h"
#include "../../plus/plus.h"
class Vtk... | [
"axkibe@gmail.com"
] | axkibe@gmail.com |
2d5639a31e7188d1f5dcc32514afdb2f5ee7013a | 49e19b37a5e02de8536d3b27aaab850304f8a04f | /Cours08/Cours08/cDuree.h | bd235d53406fc2c7540b9c3ed0c6be5127701814 | [] | no_license | CdrcMag/Cpp | 18093fe2765b784abc00185f4becbf17a8657ae9 | 25f413143eeefe70d54d76f1ab24c889aef1c29f | refs/heads/master | 2023-01-05T12:59:17.476894 | 2020-11-02T13:08:20 | 2020-11-02T13:08:20 | 256,959,698 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 581 | h | #pragma once
#include <iostream>
#include <string>
using namespace std;
class cDuree
{
public:
cDuree(int heures = 0, int minutes = 0, int secondes = 0);
cDuree();
~cDuree();
private:
void display(ostream& out) const; //Permet d'écrire la durée dans un flux
int m_heures;
int m_minutes;
int m_secondes... | [
"44393506+CdrcMag@users.noreply.github.com"
] | 44393506+CdrcMag@users.noreply.github.com |
40f5c774797bf858d9ac045c506622e4412273c6 | c7b3fe0bfba65401385a362c8233943807c2a52c | /src/playlisttabwidget.h | d370a856cfab0594765464f787721d5ef2fe7789 | [
"MIT"
] | permissive | MarcoQin/LavAplayer | 0a2857e13a412d4004a710eb48607cc6de64bb48 | 7bd04fba4a8a099b655daeb498c354a7b795f89f | refs/heads/master | 2021-01-13T04:19:49.393571 | 2017-01-19T11:02:02 | 2017-01-19T11:02:02 | 77,434,644 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 321 | h | #ifndef PLAYLISTTABWIDGET_H
#define PLAYLISTTABWIDGET_H
#include <QTabWidget>
class PlayListView;
class PlayListTabWidget : public QTabWidget
{
Q_OBJECT
public:
PlayListTabWidget(QWidget *parent = nullptr);
public slots:
PlayListView *createTab(bool makeCurrent = true);
};
#endif // PLAYLISTTABWIDGET_H... | [
"qyyfy2009@163.com"
] | qyyfy2009@163.com |
c16f424879cd8021a1cdcb0a8eba9ecdef832a44 | 30578c2f81c901b57b4b0805a8ca878367115ac0 | /Src/LandscapeEditorFrame.cpp | 0a9d64f50c9a76106e2aacffd9217c173324eb5f | [
"MIT"
] | permissive | CerberusDev/LandscapeEditor | dbe4bb6aa7b3dd8b4d203d7b77a81d39a9551656 | 6ee5a36854c808518b24e841200bb33cb3867076 | refs/heads/master | 2016-09-06T18:13:05.815552 | 2014-09-28T14:40:13 | 2014-09-28T14:40:13 | 22,888,537 | 2 | 2 | null | 2014-09-21T18:38:38 | 2014-08-12T18:51:21 | C++ | UTF-8 | C++ | false | false | 6,945 | cpp | // --------------------------------------------------------------------
// Created by: Maciej Pryc
// Date: 23.03.2013
// --------------------------------------------------------------------
#include <wx/stdpaths.h>
#include <wx/numdlg.h>
#include "LandscapeEditor.h"
// ----------------------------------------------... | [
"pryc.maciej@gmail.com"
] | pryc.maciej@gmail.com |
33bd8d9a004d035aabda141389dea4cf39afa793 | bc776f64914f5d82224af354cd41119b232b742f | /dynarobinsim/DynaRobinIKin/ALGLIB/alglibmisc.cpp | 5ee53bb8bfa2c5253f5a235f76c528fca5d66e17 | [] | no_license | DominikPetrovic/Diplomski-seminar-2017 | 3bb93a87d481a59ef2fe6b3a5111924e174ba787 | 7914e62233fab258e163bcf2f7210a3f0282f716 | refs/heads/master | 2021-06-19T07:22:14.907560 | 2017-05-25T21:29:34 | 2017-05-25T21:29:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 179,717 | cpp | /*************************************************************************
Copyright (c) Sergey Bochkanov (ALGLIB project).
>>> SOURCE LICENSE >>>
This program is a Commercial Edition of the ALGLIB package licensed
to Fakultet strojarstva i brodogradnje (Licensee).
Only Licensee and its Sublicensees can u... | [
"dominik.petrovic@fer.hr"
] | dominik.petrovic@fer.hr |
c53c80bd7feb1dae10d7bf8137e276ff54a58250 | cc7661edca4d5fb2fc226bd6605a533f50a2fb63 | /mscorlib/CodeAccessSecurityAttribute.h | b85de520bd83f887005bcd59d83241d4adde2c94 | [
"MIT"
] | permissive | g91/Rust-C-SDK | 698e5b573285d5793250099b59f5453c3c4599eb | d1cce1133191263cba5583c43a8d42d8d65c21b0 | refs/heads/master | 2020-03-27T05:49:01.747456 | 2017-08-23T09:07:35 | 2017-08-23T09:07:35 | 146,053,940 | 1 | 0 | null | 2018-08-25T01:13:44 | 2018-08-25T01:13:44 | null | UTF-8 | C++ | false | false | 186 | h | #pragma once
namespace System
{
namespace Security
{
{
namespace Permissions
{
class CodeAccessSecurityAttribute : public SecurityAttribute // 0x18
{
public:
}; // size = 0x18
}
| [
"info@cvm-solutions.co.uk"
] | info@cvm-solutions.co.uk |
de62e6f787c53726d724fd9aadd55ebd55744734 | 55ecb900e0b067a757871e0ee14127e29bd69ff6 | /importfbx/stdafx.h | 3ccff71049be5403746850231d484ff9ecd4e3f0 | [
"MIT"
] | permissive | yearling/contentexporter | 0f2f543c3d1d893b2b478a608870ae947ce48944 | 1c9e307778dbfbbda88f38085faff867c4c26da9 | refs/heads/master | 2021-01-12T21:38:08.418480 | 2015-05-06T22:33:13 | 2015-05-06T22:33:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,774 | h | //-------------------------------------------------------------------------------------
// stdafx.h
//
// Precompiled header for the ImportFBX project.
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WAR... | [
"chuckw@windows.microsoft.com"
] | chuckw@windows.microsoft.com |
08c3af71310872977036a8dfb3b4a82e72bb2012 | 98b17ee4d3d28b893218193f67774b6d047a6586 | /User-centric NOMA/main.cpp | 41f9e15557c4bf765b0c4f7a2d55ebce0e898f74 | [] | no_license | logeee/User-centric-NOMA | 7989dd1b111bcaa5dd56b0e5f325bdc817e6f1b1 | 6f32116a800a5a2a2327ced79d00be1808b60662 | refs/heads/master | 2022-10-25T21:03:32.457930 | 2020-06-18T10:04:32 | 2020-06-18T10:04:32 | 273,202,960 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,029 | cpp | //
// main.cpp
// User-centric NOMA
//
// Created by 俞斩味 on 2020/3/20.
// Copyright © 2020 俞斩味. All rights reserved.
//
#define BS 21
#define UE 210
#define bandwidth 180000
#define noise 7.16593e-16
#define sP 50e-3
#define mP 200e-3
#define demand 0.03
#define rho_limit 1
#include <iostream>
#include <string>
#... | [
"zwyuapr1@gmail.com"
] | zwyuapr1@gmail.com |
d9ff69ee9121c63a0a803da2b739088a18576d0d | 543d5ce858c055686318980a2c76969ab956f74d | /CreateProcess.cpp | 5ecda319815a53be92218a76f8bb3e4e54dd169c | [] | no_license | barinova/WinAPI | 0a23c6c2ae907c290364a25bb69b90e80367adcf | 30e05f42b095200bfff8417df5a6c7c4cdf00136 | refs/heads/master | 2019-07-29T13:55:51.289363 | 2013-08-13T10:35:16 | 2013-08-13T10:35:16 | null | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 2,523 | cpp | #include <windows.h>
#include <iostream>
#include <process.h>
void commandLine()
{
STARTUPINFO siForCmd = {sizeof(siForCmd)};
PROCESS_INFORMATION piForCmd;
TCHAR czCommandLine[] = "tasklist /FI \"imagename eq notepad.exe\"";
std::cout << "notepad.exe: \n";
if(!(CreateProcess(NULL, czCommandLi... | [
"barinovaanastasija@gmail.com"
] | barinovaanastasija@gmail.com |
ea0356d032fb2d12bdfab5ca993acbcb71185561 | c74c5870f3715120d2397827eb16de6c086cb994 | /OpenGL/Texture.cpp | 86f14ca0a004ebf0e11f5c1eb813333feb634566 | [] | no_license | ssss3301/OpenGL | 5e3057c1a2f48b4ebbb7ad3fda00cb8506417be3 | edb48921b043e7416201a658d6a3e509300708fc | refs/heads/master | 2020-06-04T05:36:15.193998 | 2019-08-15T03:18:42 | 2019-08-15T03:18:42 | 191,890,964 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 3,159 | cpp | #include "Texture.h"
#include "stb_image.h"
#include <glm/glm.hpp>
bool Texture::init(int width, int height, std::string& title, GLFWmonitor* monitor, GLFWwindow* share) {
if (!GLApplication::init(width, height, title, monitor, share)) {
return false;
}
setup_vao();
load_textures();
load_shaders();
return tr... | [
"wangm_2009@163.com"
] | wangm_2009@163.com |
9aac17fcf7762f3f43b9b5fcd4287add89540500 | 229f6a9ad0051ef9d5281bd0e92591c3bdd1c8de | /src/hdchain.cpp | 2bb350d3b52040f82ad1951521def08a033a410b | [
"MIT"
] | permissive | connormcn37/winecoin | 41f3b361e3003201be28575a7e5edb7a16db8844 | 382f1dee0ed7cc14d7e6b5b04faa6b21452bad1c | refs/heads/master | 2020-06-16T04:20:40.023725 | 2019-07-06T00:09:48 | 2019-07-06T00:09:48 | 195,477,782 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,744 | cpp | // Copyright (c) 2014-2017 The Wine Core developers
// Distributed under the MIT software license, see the accompanying
#include "base58.h"
#include "bip39.h"
#include "chainparams.h"
#include "hdchain.h"
#include "tinyformat.h"
#include "util.h"
#include "utilstrencodings.h"
bool CHDChain::SetNull()
{
LOCK(cs_ac... | [
"connormcn37@gmail.com"
] | connormcn37@gmail.com |
7ce6bd91a96f3ae0827ca1a4d47f043d14c28a16 | 27cd4d99b345ad8cb4f9c1ed4d1a9f0d52600b18 | /src/scene.hpp | d17f1522a5f630f16d282b05c95350414c9b42e5 | [
"MIT"
] | permissive | thatoddmailbox/tigame | 78c48e0497f07c7af69352251cdb40210902759f | 31febcec29c70ba066ca7afc0ee8209cd85d5dc8 | refs/heads/master | 2023-06-10T16:03:50.711653 | 2021-07-06T03:52:21 | 2021-07-06T03:52:21 | 275,680,074 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 598 | hpp | #ifndef TIGAME_SCENE_HPP
#define TIGAME_SCENE_HPP
#include <memory>
#include <vector>
#include <glm/glm.hpp>
#include "camera.hpp"
#include "mesh.hpp"
#include "object.hpp"
namespace tigame
{
class Game;
class Scene
{
public:
Scene();
void AddObject(const std::shared_ptr<Object>& object);
const std::vec... | [
"alex@studer.dev"
] | alex@studer.dev |
063b32d393e954dcd054270add498586893a1a0f | 4d60a8ab17c0910cdfee3e0cfdaa97fa3fba82bd | /primes.h | 9ee9c42ea98467caf02bfbe45eeb5ea53de7b0f9 | [] | no_license | itamakatz/AA | dbe10b6d6c402c9f320579ccd8a4184862606bbe | 3701771d00724b49a276246a6cba4e932c5e307a | refs/heads/master | 2019-04-08T17:19:57.758150 | 2017-04-23T19:38:04 | 2017-04-23T19:38:04 | 88,426,856 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 304 | h | #ifndef PROTEIN_MATCHING_PRIMES_H
#define PROTEIN_MATCHING_PRIMES_H
#include <vector>
#include <stdio.h>
#include <iostream>
#include <typeinfo>
#define NUM_OF_PRIMES 1000
extern std::vector<unsigned long int> prime_vector;
void primeFactors(unsigned long int n);
#endif //PROTEIN_MATCHING_PRIMES_H
| [
"itamakatz@gmail.com"
] | itamakatz@gmail.com |
292608a81065ff676397413c5d5bf3861c2e6334 | 6f891734e4424da62f565f64510e5b3592d06291 | /aa/AAVSOP87C_EAR.h | 8d215235cc99e604dad8b7a0d59fcab4ecab8535 | [
"MIT"
] | permissive | danielkucharski/satcon | c345b1276d0d8f29b0733c877535b13a7deeb400 | fed5391528929ee2666afb847d115525dfa33557 | refs/heads/master | 2023-06-13T03:55:34.506699 | 2021-07-02T23:13:01 | 2021-07-02T23:13:01 | 382,482,593 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,405 | h | /*
Module : AAVSOP87C_EAR.h
Purpose: Implementation for the algorithms for VSOP87
Created: PJN / 13-09-2015
History: PJN / 13-09-2015 1. Initial public release.
Copyright (c) 2015 - 2017 by PJ Naughter (Web: www.naughter.com, Email: pjna@naughter.com)
All rights reserved.
Copyright / Usage Details:
You are allowed ... | [
"daniel@quarc.org"
] | daniel@quarc.org |
73dec04d483e4f577587ec59dfe46e76695678ea | 670af94f93e7c7ef680dcc63b770a9bb7bf5071b | /libs/guibase/colormap/colormapcustomsettingdialog.cpp | 51760d1016a6f5f7bb7379dca6be0948dabf2c21 | [] | no_license | Leon-Zhang/prepost-gui | ef2e570bed88bd3232253cfd99e89b3eadfc661f | bff4db57df6a282f6e76e3942dbb02d66fbb5d9e | refs/heads/master | 2021-01-01T19:05:10.124321 | 2017-07-27T04:36:47 | 2017-07-27T04:36:47 | 98,504,251 | 0 | 0 | null | 2017-07-27T07:00:00 | 2017-07-27T07:00:00 | null | UTF-8 | C++ | false | false | 11,361 | cpp | #include "ui_colormapcustomsettingdialog.h"
#include "../widget/coloreditwidget.h"
#include "colormapcustomsettingdialog.h"
#include "widget/realnumbereditwidget.h"
#include <misc/lastiodirectory.h>
#include <QColor>
#include <QColorDialog>
#include <QFileDialog>
#include <QItemDelegate>
#include <QMessageBox>
#incl... | [
"kinoue@2cc7cdd0-1db9-4218-aa4a-1d8dad43e0f0"
] | kinoue@2cc7cdd0-1db9-4218-aa4a-1d8dad43e0f0 |
078d8424738c7b2974c75ff4204581882547f483 | 7d0f68fb588b8f15d4221bd7a1458465a808c76e | /OverlordEngine/Components/SpriteComponent.cpp | 79919c60642e3aee28b6a05d6d544888dbfe2b41 | [
"MIT"
] | permissive | Zakatos/Rift-Traveller | 8248c0fc62af2bb1cc02768bd1c522b72b2ad5b4 | cbce326e4c508f9342a4fa9904bfad2a9fcabb92 | refs/heads/master | 2020-03-31T22:18:53.908010 | 2018-10-11T15:34:24 | 2018-10-11T15:34:24 | 152,611,866 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,809 | cpp | //Precompiled Header [ALWAYS ON TOP IN CPP]
#include "stdafx.h"
#include "SpriteComponent.h"
#include "../Diagnostics/Logger.h"
#include "../Scenegraph/GameObject.h"
#include "../Graphics/TextureData.h"
#include "../Content/ContentManager.h"
#include "../Graphics/SpriteRenderer.h"
#include "../Components/TransformComp... | [
"ameletiadis@yahoo.com"
] | ameletiadis@yahoo.com |
8b247a4c716c616fd5dc65add45017db1eb49d34 | 081b54b77d99869ddd483847fe511db201e6b8f9 | /p152/p152_bf.cpp | 8d15b082595a116e3deed907b154c40db47b2f1f | [] | no_license | guigui2993/Euler | 6e43eb7a6d810b861187d5d87f9142998e9c1e4c | 3e594a23ef5cec93372037c772d675cb5a6618c7 | refs/heads/master | 2022-11-06T14:51:38.101296 | 2022-10-24T06:50:15 | 2022-10-24T06:50:15 | 72,674,719 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,234 | cpp | /*
Problem 152
Writing 1/2 as a sum of inverse squares
idea: recursive function, take it or pass to the next with check if still possible
Need to remove the cases where it's almost 1/2: should compute cs perfectly
*/
#include <iostream>
#include <ctime>
/*
# Python stat
# before Frac
# 30 => 4.5s, ... | [
"guigui2993@gmail.com"
] | guigui2993@gmail.com |
00b6458581b05b8492f13bd893f10488cafdab17 | d5b8e47fdd3cbca0d4462b35896caa315b2a983a | /examples/A6PingMQTT/MQTTHelpers.cpp | 0ea69b6436a5711e8e909c5475baa9ea909a80bd | [] | no_license | mgaman/A6General | e5cd9366d77714c44e2448504dfc0c6681efa996 | 4970040b8cac1535a38148fc701613631377741d | refs/heads/master | 2021-01-11T17:39:36.478804 | 2020-05-06T08:12:37 | 2020-05-06T08:12:37 | 79,815,275 | 5 | 1 | null | 2018-07-17T09:09:36 | 2017-01-23T15:08:00 | C++ | UTF-8 | C++ | false | false | 3,214 | cpp | /*
* None of these callback routines HAVE to be implemented but it makes life a lot easier if they are
* AutoConnect kicks off the whole process and can be recalled when necessary e.g. if the broker disconnects
* OnConnect is called when a CONNACK was received. Do not assume that the connection was successful - chec... | [
"davidh@zickel.net"
] | davidh@zickel.net |
97c27fbce27ed81091f53703cbde2e8050275ec3 | f333ef1a05872ca438bc6cea9f57d6458ab29989 | /gdal/ogr/ogrsf_frmts/elastic/ogr_elastic.h | e0b080bce8f4908ac8c0d51fa2d7fcebdba0ab13 | [
"MIT",
"LicenseRef-scancode-other-permissive",
"LicenseRef-scancode-info-zip-2005-02",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer",
"SunPro"
] | permissive | flippmoke/gdal | f85e1b27eb8c122f36ffeaf15421a91988d978f3 | 5b74f8a539c66b841e80a339854507ebe7cc1b8c | refs/heads/trunk | 2021-01-24T02:07:03.951460 | 2014-07-30T19:56:09 | 2014-07-30T19:56:09 | 21,472,451 | 2 | 0 | null | 2014-07-21T16:39:59 | 2014-07-03T18:17:22 | C++ | UTF-8 | C++ | false | false | 3,754 | h | /******************************************************************************
* $Id$
*
* Project: ElasticSearch Translator
* Purpose:
* Author:
*
******************************************************************************
* Copyright (c) 2011, Adam Estrada
*
* Permission is hereby granted, free of charg... | [
"even.rouault@mines-paris.org"
] | even.rouault@mines-paris.org |
d9a7b37cdfcf9d1412b3596ddf4294d568556598 | 254429a7daec000512a8685fbb104a157c0940ca | /examples/cpp/observers/propagate/src/main.cpp | 46cab8754edd000fccc9a364d1f3da0107645a35 | [
"MIT"
] | permissive | ten3roberts/flecs | 1bc95e3933095896d4b227eb5f06bbc8ebcc8bb6 | fd73b8682b954ec443551531d6a270f1790ab0a7 | refs/heads/master | 2023-02-20T13:50:11.785741 | 2022-12-30T23:52:26 | 2022-12-30T23:52:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,785 | cpp | #include <propagate.h>
#include <iostream>
// Events are propagated along relationship edges. This means that observers can
// listen for events from a parent or prefab, like triggering when a component
// inherited from a prefab was set.
//
// Event propagation happens automatically when an observer contains a filter... | [
"sander.mertens8@gmail.com"
] | sander.mertens8@gmail.com |
3c24dc250d563ada5015ad2ec7b2e87405d1b7ca | 55c7c13de11747af26b69f95426e3daf31069836 | /client/uutoolbar/src/lib/6beebase/uulogging.cpp | 298a72bf1d6a5fe160f956d6cf1bc45477b79ba1 | [] | no_license | henrywoo/ultraie | fce86f5e3622f674253a0f96db191f14ddc2f432 | 9ed8fbef6f7f484e00f433ad8073149546faa7bc | refs/heads/master | 2021-01-18T08:12:59.321596 | 2016-02-25T04:54:01 | 2016-02-25T04:54:01 | 40,107,182 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,383 | cpp | // UltraIE - Yet Another IE Add-on
// Copyright (C) 2006-2010
// Simon Wu Fuheng (simonwoo2000 AT gmail.com), Singapore
// Homepage: http://www.linkedin.com/in/simonwoo
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published ... | [
"wufuheng@gmail.com"
] | wufuheng@gmail.com |
13957ab105ad7f43f7c8a7b49a9916a4467ab922 | 16ec6f99ff3f1dc22749d2189b4d6b86d18c1d2c | /string_util.h | 546363d75d1a24c040ec274a69d4a3e5dd771192 | [] | no_license | NMT1985/Aurorablast3 | 0200e6ea65f9dbf66227d490b3f4e57b619135c2 | 37c7ea2ba2ab344834ac0dd1dd586865ee4d6f40 | refs/heads/master | 2021-06-03T00:14:34.783325 | 2016-08-07T16:27:49 | 2016-08-07T16:27:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 375 | h | #include <Windows.h>
#include <list>
#include <string>
#include <sstream>
using namespace std;
class CStringUtil{
public:
static list<string> split(const string &str, char delim);
};
list<string> CStringUtil::split(const string &str,char delim){
list<string> ret;
istringstream iss(str);
string tmp;
while(getline... | [
"666nmt666@gmail.com"
] | 666nmt666@gmail.com |
d86a8c0a6f5a034819152d9aeaaefbf7098c50d0 | d5d923936965fdecbed96068e9c4d359d432f182 | /libRedZone/src/Node/Variable.h | 1662f63bb99c9acc26cd938d502c08f3d599c8fc | [
"BSD-2-Clause"
] | permissive | jcfromsiberia/RedZone | 02542c8b6893408daa02d50475c5d26a4ba715b5 | 1adc3e78d07b366f6fa087fc847be299a4ff651c | refs/heads/master | 2021-01-17T09:16:37.590696 | 2016-04-25T21:22:49 | 2016-04-25T21:22:49 | 21,431,855 | 34 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 488 | h | /*
* Variable.h
*
* Created on: 2014
* Author: jc
*/
#pragma once
#include <Export.h>
#include "Node.h"
namespace RedZone {
class Fragment;
class RZ_API Variable: public Node {
public:
Variable();
virtual void render( Writer * stream, Context * context ) const;
virtual void processFragment... | [
"microblast.jc@gmail.com"
] | microblast.jc@gmail.com |
aff038c02c852bf709287b6e05415f6cfd08a424 | f8cb1fd0c17ac6607132cd2061a83d57e45b6d59 | /all_reduce_tree/networking_service/include/endnode.h | 6176b24147e421af4c4d12cc0fee5f84783cc902 | [] | no_license | NEWPLAN/RCL | dbfa937ea072989fbaca0e60d9f16a9552dcb8d8 | 1e044e9ec5dc0cf7d238281e8b4ab9c188a0da51 | refs/heads/master | 2023-04-28T16:25:56.551612 | 2021-01-20T14:21:28 | 2021-01-20T14:21:28 | 280,341,465 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 714 | h | #ifndef __NEWPLAN_RDMA_ENDNODE_H__
#define __NEWPLAN_RDMA_ENDNODE_H__
#include "rdma_base.h"
#include "config.h"
#include <vector>
#include <thread>
class RDMAEndNode
{
public:
RDMAEndNode() {}
virtual ~RDMAEndNode() {}
public:
virtual void setup(Config conf) { this->conf_ = conf; };
virtual void conne... | [
"enwplan001@163.com"
] | enwplan001@163.com |
ceb3d42c59df401c9811a25c8371656152df6ffd | 24d75ffa3af1b85325b39dc909343a8d945e9171 | /SceniX/inc/nvsg/nvsg/StrippedPrimitiveSet.h | 08f09455ce606499ddd709d942e3ca41e030662f | [] | no_license | assafyariv/PSG | 0c2bf874166c7a7df18e8537ae5841bf8805f166 | ce932ca9a72a5553f8d1826f3058e186619a4ec8 | refs/heads/master | 2016-08-12T02:57:17.021428 | 2015-09-24T17:14:51 | 2015-09-24T17:14:51 | 43,080,715 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,553 | h | // Copyright NVIDIA Corporation 2002-2011
// TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THIS SOFTWARE IS PROVIDED
// *AS IS* AND NVIDIA AND ITS SUPPLIERS DISCLAIM ALL WARRANTIES, EITHER EXPRESS
// OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY
// AND FITNESS FOR A PARTICULAR PU... | [
"assafyariv@gmail.com"
] | assafyariv@gmail.com |
c59cde3c1caac9e5a4d068ef8355966cb53cb2ba | 978f1df1f55fa450b6cb47a4df23f01109c59cc9 | /Algorithm/Code/T3/Fibo495.cpp | 8eac6c6d7d058e6385fb73c0ea4a5604b813876a | [] | no_license | legianha592/C | 5e2337b3d67524890e4be94f0c01b9ef58407265 | 234f10403274919abbb5e39823f539c11a82f23d | refs/heads/master | 2022-06-01T07:26:28.550733 | 2020-05-02T02:50:31 | 2020-05-02T02:50:31 | 258,418,718 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 735 | cpp | #include <stdio.h>
using namespace std;
int main()
{
int a[5000],b[5000],so[5000],x,max;
freopen("fibo495.txt","r",stdin);
freopen("fibo495.out","w",stdout);
while (true)
{
x=0;
scanf("%d",&x);
if (x==0) break;
for (int i=0; i<5000; i++)
{
a[i]=0;
b[i]=0;
so[i]=0;
}
a[0]=1;
b[0]=1;
max... | [
"doantrihung592@gmail.com"
] | doantrihung592@gmail.com |
78a9ee09e5b0fc20d43c72c17de46cf7d2b3099d | 2f78e134c5b55c816fa8ee939f54bde4918696a5 | /code/physics/staticlg.h | abc0119b476369ad41ebb0a27bd0282448c39cc4 | [] | no_license | narayanr7/HeavenlySword | b53afa6a7a6c344e9a139279fbbd74bfbe70350c | a255b26020933e2336f024558fefcdddb48038b2 | refs/heads/master | 2022-08-23T01:32:46.029376 | 2020-05-26T04:45:56 | 2020-05-26T04:45:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,756 | h | //---------------------------------------------------------------------------------------------------------
//!
//! \file physics/staticlg.h
//!
//! DYNAMICS COMPONENT:
//! Logic groups supporting the old CDynamicsStates.
//!
//! Author: Mustapha Bismi (mustapha.bismi@ninjatheory.com)
//! Created: 2005.08.01
//!
//--... | [
"hopefullyidontgetbanned735@gmail.com"
] | hopefullyidontgetbanned735@gmail.com |
cdb76b8f51eb3db2f3651cb4fce9c617ce21f2c7 | 814621dbf05f98a1d140c956c07ba5a6cd7e20bd | /src/xengine/rwlock.h | b976235b5c4c8bb4be526388aa26ba503764439b | [
"MIT"
] | permissive | sunny023/BigBang | 64a308d340f1705a9161784c87c732a3a7a06dff | 8a41582df5320b0c08fa4db2b143528bb219130c | refs/heads/master | 2020-09-09T14:52:46.127960 | 2019-09-29T04:07:57 | 2019-09-29T04:07:57 | 221,476,302 | 1 | 0 | MIT | 2019-11-13T14:20:08 | 2019-11-13T14:20:07 | null | UTF-8 | C++ | false | false | 3,951 | h | // Copyright (c) 2019 The Bigbang developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef XENGINE_RWLOCK_H
#define XENGINE_RWLOCK_H
#include <boost/noncopyable.hpp>
#include <boost/thread/thread.hpp>
namespace x... | [
"jhkghmn@gmail.com"
] | jhkghmn@gmail.com |
24dd4daef81e0afa08a77e7c4f2a8d20817f2e7c | 6e90b0e4b74be26c3f196227b803d6daff57805f | /tests/memory/pseudo_destructor_call.cc | ec43bda727357dc712e422f253f9c31436593f94 | [
"LicenseRef-scancode-unknown-license-reference",
"BSL-1.0"
] | permissive | gintenlabo/etude | 52472b652004383c76089f5145a7cab350b6eb05 | c9e9db5cce72d560a50b1ab27a0ee675a725aefa | refs/heads/master | 2016-09-07T19:08:57.455833 | 2013-08-09T09:54:51 | 2013-08-09T09:54:51 | 1,121,611 | 14 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,206 | cc | //
// etude/memory/pseudo_destructor_call.hpp に対するテスト
// というより仕様
//
// Copyright (C) 2010 Takaya Saito (SubaruG)
// Distributed under the Boost Software License, Version 1.0.
// http://www.boost.org/LICENSE_1_0.txt
//
#include "../../etude/memory/pseudo_destructor_call.hpp"
#include <type_traits>
#define ... | [
"gintensubaru@gmail.com"
] | gintensubaru@gmail.com |
e11835bece90041c03bf6b10a7c4ab7fb42498f3 | 7d6879692a7a269b0c058073453c4bb5cbe7ac46 | /Source/Display.cpp | 02074135528925231e2533e58a0a4a79f222a09f | [
"MIT"
] | permissive | ShannonHG/CHIP-8-Emulator | 954450ea584ee42a7c361c06f1a91fcc98841176 | 37a69e031d276c3ec0d170c34bcaac0450a91d7e | refs/heads/main | 2023-03-24T09:17:44.371690 | 2021-03-16T03:27:23 | 2021-03-16T03:27:23 | 345,189,491 | 6 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,690 | cpp | #include <iostream>
#include "Display.hpp"
namespace SHG
{
Display::Display(int width, int height)
{
if (SDL_Init(SDL_INIT_VIDEO) < 0)
{
std::cout << "SDL failed to initialize! SDL Error: " << SDL_GetError() << std::endl;
return;
}
screenWidth = width;
screenHeight = height;
// Since a screen siz... | [
"s.hargrave4@gmail.com"
] | s.hargrave4@gmail.com |
9a5895011147f0e46cd9e28b937972f74ce5d08d | cd0987589d3815de1dea8529a7705caac479e7e9 | /webkit/WebKit2/Shared/CoreIPCSupport/WebProcessMessageKinds.h | 377117c6099e104d45c161bb53d862f6e68234e1 | [] | no_license | azrul2202/WebKit-Smartphone | 0aab1ff641d74f15c0623f00c56806dbc9b59fc1 | 023d6fe819445369134dee793b69de36748e71d7 | refs/heads/master | 2021-01-15T09:24:31.288774 | 2011-07-11T11:12:44 | 2011-07-11T11:12:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,158 | h | /*
* Copyright (C) 2010 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of condi... | [
"sdevitt@rim.com"
] | sdevitt@rim.com |
3e5e37c203916fb9ec1ac01b18f87af3870f2572 | 4315058df0fd9b4f70917fa35fa4d33244bfdd9d | /TP3 --- Test lire map et déplacement/main.cpp | 13bff95c8d4c1f923697858a096e8bc1e9cd5355 | [] | no_license | bmw546/TP3-----Test-lire-map-et-d-placement | 451b1d0e8fc45d2fe5539fa511b33765907c346d | 23703b3a7273bd8c3e95f05dedf7f1dfe44a111c | refs/heads/master | 2021-08-23T11:20:39.845581 | 2017-12-04T17:24:37 | 2017-12-04T17:24:37 | 113,072,913 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,085 | cpp | /*****************************************************************************
File : main.cpp
Author: Marc-Etienne Pepin
Date : 2017/11/01
Goal : Extrait des labyrinthes a partir de fichier texte
Resout des labyrinthes a l'aide de :
Robot qui se promene dans le labyrinthe
Pile de deplacement qui contient le chemin... | [
"marc-etienne-pepin@hotmail.com"
] | marc-etienne-pepin@hotmail.com |
a2eb634f9d06ab3cd6b20c7016678c88fef05a99 | 3dc9a2b37eb9f9849de0c2c9d9be2b73fdcfd759 | /PA3/src/planet.cpp | 2453daaa1c3327e7fbe9846daf698b4667221978 | [] | no_license | ErylKenner/CS480Kenner | 96d360a72fcd43d770db96fd105860eac6565356 | 961f748502e4fe40549ff624fcf870431adf17fc | refs/heads/master | 2022-03-24T18:16:39.962629 | 2019-12-16T01:06:34 | 2019-12-16T01:06:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 979 | cpp | #include "planet.h"
Planet::Planet(Object *parent_, float orbitRadius_, float orbitRate_, float rotateRate_)
: Object(parent_),
orbitRadius(orbitRadius_),
orbitRate(orbitRate_),
rotateRate(rotateRate_){
angleInOrbit = 0.0f;
rotateDirection = 1.0;
orbitDirection = 1.0;
}
void Planet::Deri... | [
"eryl.kenner@gmail.com"
] | eryl.kenner@gmail.com |
901603a941f5945f112738b7de635acd0b7643f6 | 4eda5347b1915958143b53d020e43f563372d296 | /第11章/FileSystem/AddDirDlg.h | bb8c2eea0b5339fe084855d21f6ff1adcc5295c6 | [] | no_license | natsuki-Uzu/Windows_Program | 40e4380e7d08f764051104a4bbcc99e9b4ff387c | a994ffaa3174e83a7d69f2c7015dac930312afaf | refs/heads/master | 2023-04-26T15:53:39.205163 | 2012-07-31T06:21:23 | 2012-07-31T06:21:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,243 | h | #if !defined(AFX_ADDDIRDLG_H__7410D4B3_96A1_4226_983E_AA9CB9008A6A__INCLUDED_)
#define AFX_ADDDIRDLG_H__7410D4B3_96A1_4226_983E_AA9CB9008A6A__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// AddDirDlg.h : header file
//
//////////////////////////////////////////////////////////////////... | [
"Administrator@PRC-20120724DKO.(none)"
] | Administrator@PRC-20120724DKO.(none) |
b44b84fe0023fdae4bbdcd54e0f78f772df65cc2 | 0081b46f52f48782d4c6e1563c91a6ba8d14bb51 | /SimpleImageLoad/openCLUtilities.h | ca5df933889629533c3a2247f4cd53353cce7d25 | [] | no_license | BeauJoh/SimpleImageLoad | 6c3b9150606b98cfea21e1230e6b5476dc810a5a | 86144791c41319b96f60cdcdd96318af11569af2 | refs/heads/master | 2016-09-09T23:14:38.928153 | 2011-07-28T07:52:10 | 2011-07-28T07:52:10 | 2,117,396 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,684 | h | //
// openCLUtilities.h
// Simple
//
// Created by Beau Johnston on 25/07/11.
// Copyright 2011 University Of New England. All rights reserved.
//
#ifndef Simple_openCLUtilities_h
#define Simple_openCLUtilities_h
#if defined (__APPLE__) && defined (__MACH__)
//Apple openCL build
#include <OpenCL/opencl.h>
#else
... | [
"beau@inbeta.org"
] | beau@inbeta.org |
0198977b3c10c35f50118876a69efa097439e038 | 776f81fb3ef7a7fac9bcf1ba396f5ebe37493dcf | /Codeforces/Avito Cool Challenge 2018/D 二分+dfs或最小生成树.cpp | 6bab1a2648ac663174c36d166e6f2f69fe10b13b | [] | no_license | hangzhangac/Algorithm-Problem | 192b39fb37a621de9d7b042a3cf42faf2ff85348 | 9d0d0712d4667035e38e72f2a2da129f75385b6f | refs/heads/main | 2023-07-29T20:08:35.241911 | 2021-09-19T23:51:40 | 2021-09-19T23:51:40 | 394,736,490 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,477 | cpp | #include <algorithm>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <cstdio>
#include <string>
#include <queue>
#include <cmath>
#include <map>
#include <set>
#include <stack>
#define mem(a,x) memset(a,x,sizeof(a))
#define gi(x) scanf("%d",&x)
#define gi2(x,y) scanf("%d%d",&x,&y)
#define gi3(x,y,z) ... | [
"hz2447@nyu.edu"
] | hz2447@nyu.edu |
cf2ce7a97d67c655cb6a8a55e3a2ec187103d55c | aff4e63901d89003ac3ac5bd5a3d8a07611f25c8 | /ch07/Fig07_25/fig07_25.cpp | d15d17a4fe283d405e11640d5adf0d19fe3afe0b | [] | no_license | geopaps/Deitel_code | b8e4c67b0cf6aa4b14173fdad80689827b959c09 | 2dfdac0a200e752443342bc11dfb519961bdb370 | refs/heads/master | 2023-03-30T23:56:19.536112 | 2023-03-27T09:27:59 | 2023-03-27T09:27:59 | 226,296,427 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,390 | cpp | // Fig. 7.25: fig07_25.cpp
// Demonstrating C++ Standard Library class template vector.
#include <iostream>
#include <iomanip>
#include <vector>
using namespace std;
void outputVector( const vector< int > & ); // display the vector
void inputVector( vector< int > & ); // input values into the vector
int main()
{
v... | [
"geopaps@gmail.com"
] | geopaps@gmail.com |
2e02dd1c3182a90b8143f603ca3650dfbd10f145 | c930c4228229931c1faffb25de05f79cded545f4 | /Source/Z80MapEditor/ErrorList.cpp | f16302830e1539d2e633adc53675377e5d59c6a7 | [] | no_license | saibotshamtul/WabbitStudio | a37e9c6f45bda4f14e0b733a79d367399976cf30 | f9e05f783d6f70b1f036aecaa5587e340abc3187 | refs/heads/master | 2020-03-17T03:00:36.898184 | 2017-12-10T22:40:32 | 2017-12-10T22:40:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,385 | cpp | #include "stdafx.h"
extern HINSTANCE g_hInstance;
static HWND hwndList = NULL;
static void SetupColumns(HWND hwndList)
{
LVCOLUMN lvc = {0};
lvc.mask = LVCF_TEXT | LVCF_SUBITEM | LVCF_FMT | LVCF_WIDTH;
lvc.iSubItem = 0;
lvc.fmt = LVCFMT_LEFT;
lvc.pszText = _T("File");
lvc.cx = 100;
ListView_InsertColumn(hwnd... | [
"robertkuhfss@gmail.com"
] | robertkuhfss@gmail.com |
0117ee259da8b001603801747d3a9362409ca0e6 | 374e0488acd90d913720fd92c787280227f15ff5 | /jt1main.cpp | 99e78b65b78d578e21c6ed62680c8144f3a419ac | [] | no_license | alantany/cpprep | 73e6845fe4e2f78952e376dfd7fe37702e46feb8 | 9f1b723b05b2dfa47b90a356c3d57f608f245699 | refs/heads/master | 2021-01-22T20:26:12.747131 | 2017-06-26T14:43:43 | 2017-06-26T14:43:43 | 85,322,287 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 234 | cpp | #include<iostream>
#include"d:\cpp\gitrep\jt1.h"
using namespace std;
int main()
{
int x = 10, y = 20;
jt1 j1;
jt1 *j2=&j1;
cout << jt1::plus() << endl;
cout << j1.plus() << endl;
cout << j2->plus() << endl;
system("pause");
} | [
"alantany@gmail.com"
] | alantany@gmail.com |
b9bf0f65e6469ce588852d7a9b65c189d9b930ee | d624e14c8d466d6efdd3f8b328ba782833a908b0 | /HDOJ/HDOJ1089/1089.cpp | 030bf2ca7893c75c9098f6c41a0fc6e7f47f9c11 | [] | no_license | Oozwding/helloworld | e2408852fc609cbdddd3e49b09ca449b4bc4d6f4 | 224703c43a1e0c7865639cb31512cb42ce4eabfe | refs/heads/master | 2020-02-26T15:44:25.338786 | 2016-06-16T04:51:41 | 2016-06-16T04:51:41 | 54,907,706 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 6,435 | cpp | /**
* Filename:HDOJ1089
* Date :2016/3/19
* @Author :zwding
* Describe:C++大数类模板 A+B
*/
#include<iostream>
#include<string>
#include<cstdio>
#include<cstring>
#include<iomanip>
#include<algorithm>
using namespace std;
#define MAXN 9999
#define MAXSIZE 10
#define DLEN 4
class BigNum
{
private:
int a[500];... | [
"zwdingcoder@gmail.com"
] | zwdingcoder@gmail.com |
2551ea46d00fc4cdce91f2dc6c63f399bae9f24b | 97478e6083db1b7ec79680cfcfd78ed6f5895c7d | /components/favicon/core/features.h | 6d6acdde80f80da3f07f7c6651c6ab6c24c08a84 | [
"BSD-3-Clause"
] | permissive | zeph1912/milkomeda_chromium | 94e81510e1490d504b631a29af2f1fef76110733 | 7b29a87147c40376bcdd1742f687534bcd0e4c78 | refs/heads/master | 2023-03-15T11:05:27.924423 | 2018-12-19T07:58:08 | 2018-12-19T07:58:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 566 | h | // Copyright (c) 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_FAVICON_CORE_FEATURES_H_
#define COMPONENTS_FAVICON_CORE_FEATURES_H_
namespace base {
struct Feature;
}
namespace favicon {
exte... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
2001c6a76ab67814cfd26a6505f3fb6a1e49696f | e041f6a59f5a9dc8edb301f32876abca061c9dab | /Fonts/FontFactory.cpp | a4dea528fb4f041e9f59d832e0fb0916948f1370 | [] | no_license | jmfb/x-com-generations | 8b12e4993f6ac0d6ad59658f5ffe77e06f5beaa6 | 01050f976c6fe5dee2a40cd9a285f5a42aae035c | refs/heads/master | 2020-04-08T18:23:30.968806 | 2012-10-01T04:47:13 | 2012-10-01T04:47:13 | 32,373,578 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 709 | cpp | #include "FontFactory.h"
#include "../Error.h"
#include "FontNormal.h"
#include "FontLarge.h"
#include "FontTime.h"
#include "FontSmall.h"
#include "FontArrow.h"
#include "FontUpDown.h"
namespace XCom
{
const BaseFont& FontFactory::GetFont(FontType type)
{
static FontNormal normal;
static FontLarge large;
static F... | [
"Jacob.Buysse@gmail.com"
] | Jacob.Buysse@gmail.com |
6ed9746cad5f855f5f612a706a4561c809d7ac84 | 992f36f0c82132aa2512132a7c60c7e919bcf9a9 | /src/validation.h | 2c985ee430b7e4bc76dcbb3f56d7c7ac076d7b63 | [
"MIT"
] | permissive | maylois/wurzelpfrumpft | cd93a9db76db6e0df4e406adc4c2f038b420ceda | 5a5da808841410683d9261317af3c13bff745527 | refs/heads/master | 2021-09-05T10:26:10.252550 | 2018-01-26T11:43:48 | 2018-01-26T11:43:48 | 118,001,032 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 22,332 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2016 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_VALIDATION_H
#define BITCOIN_VALIDATION_H
#if defined(HAVE_CONFI... | [
"wpf@factsoft.de"
] | wpf@factsoft.de |
c0d34f2674bb68e49bacdabcd02fd976861bdde4 | bf77f38c1d42ce97902bd5dc0e498d7d89ab4705 | /aoj/itp1/4-a.cpp | c70f37f211351bf24cc65277e3b30e339d478edf | [] | no_license | byam/algorithms | 6c570c8d00ad5457346d6851f634d962b2ef744e | f3db7230655c945412774505254e2be4cbf23074 | refs/heads/master | 2022-05-12T16:24:39.831337 | 2022-04-08T13:59:07 | 2022-04-08T13:59:07 | 68,830,972 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 185 | cpp | #include <bits/stdc++.h>
using namespace std;
int main() {
long long a, b;
cin >> a >> b;
double fb = b;
printf("%d %d %.5f\n", a / b , a % b, a / fb);
return 0;
}
| [
"bya_ganbaatar@r.recruit.co.jp"
] | bya_ganbaatar@r.recruit.co.jp |
dc15bfb17287002d45a7e5765771ac624b867bdf | 4dd69f3df7d32a35b3318c226f6765d3e9a63b0a | /book1/Ch3/3.5/176_3.cpp | 41899f8bc38a3b92418fa6d3a779b108e9493ecb | [] | no_license | dereksodo/allcode | f921294fbb824ab59e64528cd78ccc1f3fcf218d | 7d4fc735770ea5e09661824b0b0adadc7e74c762 | refs/heads/master | 2022-04-13T17:45:29.132307 | 2020-04-08T04:27:44 | 2020-04-08T04:27:44 | 197,805,259 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,898 | cpp | #include <iostream>
#include <cstring>
#include <cstdlib>
#include <set>
#include <vector>
#include <map>
#include <cstdio>
#include <utility>
#include <algorithm>
#include <cmath>
#include <queue>
#include <stack>
#include <cassert>
#include <climits>
#include <numeric>
#include <sstream>
using namespace std;
typedef ... | [
"pi*7=7.17"
] | pi*7=7.17 |
adc799358561e7ea60154af318dc03d008e91936 | b7db4356b2c806cb1e1b8d38c223c885b6db8502 | /PacMan/GUI/ITEM/mybutton.h | d9244fe395a04d266dbc9a5f70b97db93ceb0475 | [] | no_license | MarcinBobinski/PacMan | a0e789243ce9644668f23b717e4bd1b22a33f4d0 | 895906281358505939c282e2bed70ca3ea4a1668 | refs/heads/master | 2023-06-11T11:22:41.115629 | 2021-02-09T18:28:17 | 2021-02-09T18:28:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 940 | h | #ifndef MYBUTTON_H
#define MYBUTTON_H
#include <QObject>
#include <QGraphicsRectItem>
#include <QGraphicsSceneMouseEvent>
/**
* @brief The MyButton class klasa odpowiedzialna za wyswietlanie oraz dzialanie przyciskow w aplikacji
*/
class MyButton : public QObject, public QGraphicsRectItem
{
Q_OBJECT
private:
... | [
"yiomiziom@gmail.com"
] | yiomiziom@gmail.com |
954ad61ff460a0347830163303bd2f470fc734bc | 5bd2afeded6a39311403641533f9a8798582b5c6 | /codeforces/166/E.cpp | 54cdc240beef97f7b1777009eea049def9d27fc8 | [] | no_license | ShahjalalShohag/ProblemSolving | 19109c35fc1a38b7a895dbc4d95cbb89385b895b | 3df122f13808681506839f81b06d507ae7fc17e0 | refs/heads/master | 2023-02-06T09:28:43.118420 | 2019-01-06T11:09:00 | 2020-12-27T14:35:25 | 323,168,270 | 31 | 16 | null | null | null | null | UTF-8 | C++ | false | false | 3,753 | cpp | #pragma comment(linker, "/stack:200000000")
#pragma GCC optimize("Ofast")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#pragma GCC optimize("unroll-loops")
#include<bits/stdc++.h>
#include<ext/pb_ds/assoc_container.hpp>
#include<ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
us... | [
"shahjalalshohag2014@gmail.com"
] | shahjalalshohag2014@gmail.com |
ed4ab4db957362f08edea08550286e8d4250fad4 | a2d3ebcb82e1e411a30bf548d331423c6be80d01 | /test_2020_03_03_刷题/test_2020_03_03_刷题/test.cpp | 9a12da4da9b20694932b8bf82088ae4d97c4dbf9 | [] | no_license | maoyanmm/C-Advance-Plus | e8b2814aa5b22ac40092b3bd9d7b24645a63337c | 3cd9ad54779c80cfbfa19c8dae9bc770c67eaaea | refs/heads/master | 2020-11-24T14:05:59.286835 | 2020-04-11T14:33:53 | 2020-04-11T14:33:53 | 228,182,343 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 618 | cpp | /**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* removeNthFromEnd(ListNode* head, int n) {
ListNode* cur = head;
ListNode* behind = head;
ListNode* prev = NULL;
while (--n &... | [
"804826526@qq.com"
] | 804826526@qq.com |
2a84984b37cd4e3e0785786406a83a0f3183c9b5 | 019b1b4fc4a0c8bf0f65f5bec2431599e5de5300 | /remoting/host/win/unprivileged_process_delegate.cc | 8203318ca4f87317b12025f7583d0100f4bc32ec | [
"BSD-3-Clause"
] | permissive | wyrover/downloader | bd61b858d82ad437df36fbbaaf58d293f2f77445 | a2239a4de6b8b545d6d88f6beccaad2b0c831e07 | refs/heads/master | 2020-12-30T14:45:13.193034 | 2017-04-23T07:39:04 | 2017-04-23T07:39:04 | 91,083,169 | 1 | 2 | null | 2017-05-12T11:06:42 | 2017-05-12T11:06:42 | null | UTF-8 | C++ | false | false | 15,734 | cc |
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// This file implements the Windows service controlling Me2Me host processes
// running within user sessions.
#include "remoting/host/win/unprivil... | [
"wangpp_os@sari.ac.cn"
] | wangpp_os@sari.ac.cn |
02e522696eb0fc95a7f995986898a3e565385fbb | 3b6ee14ff27aa37882cee98f16de21daf60f48aa | /DWMFCApplication/stdafx.cpp | 1067cbad529a3e311d47216e2d8594e99142237d | [] | no_license | seenunit/DesignWorld | 410aa01c274d9eac04b6ef52222d0273420f960b | 40d311b2ddf4dcc5c555689b3b4bf4a0c97f2c39 | refs/heads/client | 2021-01-18T21:21:03.688005 | 2017-07-01T07:57:19 | 2017-07-01T07:57:19 | 34,983,157 | 3 | 1 | null | 2016-04-04T12:35:26 | 2015-05-03T11:09:04 | C++ | UTF-8 | C++ | false | false | 210 | cpp |
// stdafx.cpp : source file that includes just the standard includes
// DWMFCApplication.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
| [
"seenunit@gmail.com"
] | seenunit@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.