blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2e69f810a3bb2ddd1e936f7a2ea5c51ddaa24d4d | ba00572231a7ec66461c242a57ac8f9daf1d6343 | /cplusplus_course_projects/BookItem_and_Inhertance/BulkItem.h | d2307e72db7ac8fa17535768571413636b607b99 | [] | no_license | zhushh/cplusplus | e57b7d808b1c9e5d2f4be7a686f392183e099439 | 036575f83ac5baa1aca04bbecddc0cca181dc846 | refs/heads/master | 2021-07-10T22:11:02.550430 | 2021-03-31T12:37:08 | 2021-03-31T12:37:08 | 85,827,719 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 528 | h | #ifndef BULKITEM_H
#define BULKITEM_H
#include "BookItem.h"
#include <iostream>
using std::string;
class BulkItem:public BookItem {
public:
BulkItem(const string& bookName, double salesPrice,
int qty = 0, double salesDisc = 1.0);
/*
* Return the total price of these books
* If cnt is gre... | [
"zsh5318@gmail.com"
] | zsh5318@gmail.com |
dd64ad899abba2d3972cc324804ef7bd572b1838 | bfe8834b87c1674ee1f4742aab58905719bc9f80 | /Android/HelloARVideoNative/app/src/main/jni/helloarvideo.cc | f1f4d99d13b0726057cd0d879b6848bffee6e8f7 | [] | no_license | sereinli/ARDemo | 5040c53dfca7ccf7f07ed00f745f545decc8a5a0 | e0a5ba70954de21665db8afa23a10412bb66ba9a | refs/heads/master | 2021-01-19T11:32:27.662235 | 2017-02-17T03:34:21 | 2017-02-17T03:34:21 | 82,252,035 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,724 | cc | /**
* Copyright (c) 2015-2016 VisionStar Information Technology (Shanghai) Co., Ltd. All Rights Reserved.
* EasyAR is the registered trademark or trademark of VisionStar Information Technology (Shanghai) Co., Ltd in China
* and other countries for the augmented reality technology developed by VisionStar Information Tec... | [
"lichangyin@haibao.com"
] | lichangyin@haibao.com |
df5f07608f32823e3c16e313b983074181e160f8 | c3418c96159c2539012307d15cb99d8f5920c77a | /boundarymatrix.cpp | 49523e01549891b9edc14b522e794c8a8d35e47f | [] | no_license | chandan73933/Data-Structure-Algo | 27246951e733810e796bc90dbef241b2a3fcad90 | 429c83979e38082d0edd8e05721958a6369f6659 | refs/heads/main | 2023-08-18T13:24:43.660944 | 2021-10-05T16:23:21 | 2021-10-05T16:23:21 | 375,261,117 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 349 | cpp | #include<iostream>
using namespace std;
int main()
{
int r,c;
cin>>r>>c;
int mat[r][c];
for(int i=0;i<r;i++)
{
for(int j=0;j<c;j++)
{
cin>>mat[i][j];
}
}
for(int i=0;i<c;i++)
{cout<<mat[0][i];
}
for(int i=1;i<r-1;i++)
{cout<<mat[i][c-1];
}
for(int i=c-1;i>=0;i--)
{cout<<mat[r-1][i];
}
for(int i=r-2;i>=1;... | [
"noreply@github.com"
] | noreply@github.com |
95e308de559baa9d5cc10f890175562440a5953e | 53c9375b2ff0028d0bfb0bd98c19d9efdc68c47d | /couponsbruteforce.cpp | 3782e91e245131252d843b5760aa33e4389ecb06 | [] | no_license | pocafup/my-code | a2fa6ec3bb0b70ec992f20ac90146e8ed00f2463 | 92a3785023e3e87f01b65a6c30ff91dd6055d7e8 | refs/heads/master | 2021-01-07T19:04:01.702122 | 2020-10-20T10:41:13 | 2020-10-20T10:41:13 | 241,790,879 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,101 | cpp | #include <iostream>
#include <algorithm>
#include <queue>
#include <cstring>
using namespace std;
pair<long long,long long> cost[50001];
long long dp[2][50001];
bool sorted(pair<long long,long long> aa, pair<long long,long long> bb){
return aa.first<bb.first;
}
int main(){
long long a,b,c; cin >> a >> b >> c;
... | [
"noreply@github.com"
] | noreply@github.com |
c47bb55ce3d2129b1df63adddeb740f5c91e6cbb | 08d17ddeb5713d8e7a4ee01054fcce78ed7f5191 | /tensorflow/core/kernels/batch_kernels.cc | 338f61ff6642cbc604bb77dfe1908fe28b9fc142 | [
"Apache-2.0"
] | permissive | Godsinred/tensorflow | 9cd67e1088ad8893265651ad4a5c45a6640b6c96 | 45100d5f55d7cba15bffcd91bf521ed37daf7bca | refs/heads/master | 2020-04-25T19:44:53.669366 | 2019-02-28T01:54:55 | 2019-02-28T02:59:15 | 173,030,955 | 2 | 0 | Apache-2.0 | 2019-02-28T03:03:41 | 2019-02-28T03:03:41 | null | UTF-8 | C++ | false | false | 48,760 | cc | /* Copyright 2017 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 |
3673ceceacbedbfd73d900e7682316e77d075dc7 | 5fdca34122c2f2c6aa3bea8a587c9b6f1a4dbe0f | /PWGLF/NUCLEX/Nuclei/Nucleipp/AliLnSecondaries.h | ce1a45d4cf1404cb6720fd5b4e9a8a936dece9ae | [] | permissive | ALICEHLT/AliPhysics | df9be958613fbec367de23d07900bdfaa1bd8c2b | ac60d90f9a9c28b789c842979573a34485966b8f | refs/heads/dev | 2021-01-23T02:06:10.419609 | 2018-05-14T19:20:25 | 2018-05-14T19:20:25 | 85,963,503 | 0 | 7 | BSD-3-Clause | 2018-02-21T12:27:23 | 2017-03-23T15:06:08 | C++ | UTF-8 | C++ | false | false | 3,685 | h | #ifndef ALILNSECONDARIES_H
#define ALILNSECONDARIES_H
/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
* See cxx source for full Copyright notice */
// removal of secondaries using DCA templates
// author: Eulogio Serradilla <eulogio.serradilla@cern.ch>
#incl... | [
"eserradi@f7af4fe6-9843-0410-8265-dc069ae4e863"
] | eserradi@f7af4fe6-9843-0410-8265-dc069ae4e863 |
c7bc5bc9306f04eb2056331690709011f49148d9 | 5d6dc8314cc0795ab1ba5d1ce8ca404bc489589f | /Lab/Lehr_Lab_03-28-2017/Game_of_Craps_V3/main.cpp | b5799147159bde651119178ba523c9c4b0475dd7 | [] | no_license | TRomero15/RomeroTristan_CS5_Spring2017 | 0f338067302fd6f2e111508f5eebb2b13bef38c3 | abfe7a4f496ac4a61776df90b5fc25234cffa2f3 | refs/heads/master | 2021-03-13T04:00:22.256880 | 2017-04-04T19:57:35 | 2017-04-04T19:57:35 | 84,239,360 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,714 | cpp | /*
* File: Sum of dice
* Author: Tristan Romero
* Created on 28 March 2017
* Purpose:
*/
//System Libraries
#include <iostream> //input - output library
#include <ctime> //time for rand
#include <cstdlib> //srand to get the seed
#include <fstream> //file I/O
#include <iomanip> //format the output
using nam... | [
"tristanromero71@yahoo.com"
] | tristanromero71@yahoo.com |
d901508778e2171e82d3d89d8250d20285e2dae2 | 8bd6ed7ce9811e2c8682e057e906780834e825a5 | /SimpleOpenGLQtViewer.h | 4dc8451e6f00505958c1071ab9c25aba04b0be4c | [] | no_license | deepaksamuel/simple | 5a20651dc243ffe9638b48d91904b36cdc309689 | 5f88639bd81bfcdad1fb8b87f2c345388877baf2 | refs/heads/master | 2023-01-28T23:47:22.947569 | 2023-01-13T12:50:09 | 2023-01-13T12:50:09 | 210,591,616 | 20 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 15,234 | h | #ifndef SIMPLEOPENGLQTVIEWER_H
#define SIMPLEOPENGLQTVIEWER_H
// File modified by Deepak Samuel on 25 Sep 2019
//
// ********************************************************************
// * License and Disclaimer *
// * ... | [
"deepaksamuel@gmail.com"
] | deepaksamuel@gmail.com |
16d8e32104d073c45dc921225fb538d2c5b69ef2 | f96a28c630ff0539bf4af998618540046656c4bb | /VS4/ConsoleApplication1/ConsoleApplication1/bookbot.h | 4a51877f3b0d5cc8f196dc04f95d20b8c6f16f81 | [] | no_license | viskantas/University-Year-1-Cpp-Language | 413bc47ad8509c13342b91af23cbc8096ea84891 | cd103e06831ef2dc27a39fd6ec3f800e7a9c4269 | refs/heads/master | 2022-04-29T17:11:00.150302 | 2017-04-06T15:47:03 | 2017-04-06T15:47:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,901 | h | #ifndef BOOKBOT_H_INCLUDED
#define BOOKBOT_H_INCLUDED
#include "book.h"
#include "bookpile.h"
class BookBot{
public:
//function to pick up a book from a BookPile
bool PickUpBook(BookPile& p){
//if BookPile is empty, return false and print out an error
if (p.GetNumBooks()==0){
cout<... | [
"viskantas2@gmail.com"
] | viskantas2@gmail.com |
f5e2cf72ed4c8b4e2b7061b1bb12cbe7943b3fef | b8376621d63394958a7e9535fc7741ac8b5c3bdc | /lib/lib_XT12/Source/DockingPane/XTPDockingPane.cpp | 893f89bc73b13ae939d0c08b1a89bafd5a1466a6 | [] | no_license | 15831944/job_mobile | 4f1b9dad21cb7866a35a86d2d86e79b080fb8102 | ebdf33d006025a682e9f2dbb670b23d5e3acb285 | refs/heads/master | 2021-12-02T10:58:20.932641 | 2013-01-09T05:20:33 | 2013-01-09T05:20:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,959 | cpp | // XTPDockingPane.cpp : implementation of the CXTPDockingPaneclass.
//
// This file is a part of the XTREME DOCKINGPANE MFC class library.
// (c)1998-2008 Codejock Software, All Rights Reserved.
//
// THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
// RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOU... | [
"whdnrfo@gmail.com"
] | whdnrfo@gmail.com |
126c04758f4574704bfaae2f36570bf6c45b6f7b | 00f215b15b65b600f10d035fcbf664d23c3d83ae | /Kushagra Shekhawat/Day 13/59. Best Time to Buy and Sell Stock.cpp | 1009e7dc5edb32e6baadf4fa6452736b4e3f1a74 | [] | no_license | SubhamGupta007/Dynamic-Programming | 810131eb6fe5513b4f4bb728d2d2af66a5e20c5c | 32e1faac325d2ed3479abf3cef4a7c2470356667 | refs/heads/master | 2023-03-24T16:57:30.304582 | 2020-09-24T04:55:01 | 2020-09-24T04:55:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 459 | cpp | class Solution {
public:
int maxProfit(vector<int>& prices) {
if(prices.size()<2)
return 0;
int maxProfit=0,buy=prices[0],sell;
for(int i=1;i<prices.size();i++){
if(buy>=prices[i]){
buy = prices[i];
}else{
sell = prices[i];
... | [
"kushagrashekhawat414@gmail.com"
] | kushagrashekhawat414@gmail.com |
2c846ee6b914b8c45eaa976a1ba681e558e5663f | 9f6475dcf316560b7af0bcb04297e07db6e37edb | /Lab11.cpp | 4dfe86e1dec9f55d22825715d578ebd0cfd34819 | [] | no_license | 380676003925/Labb | ee932fc599e7a240e75dd8d6beddf278f321aff3 | 5911b9de79cbd176dba6ca3ce9b8d341fe599023 | refs/heads/master | 2020-04-06T07:32:08.024956 | 2018-12-14T19:41:06 | 2018-12-14T19:41:06 | 157,275,706 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 467 | cpp | #include <iostream>
#include <vector>
#include <conio.h>
using namespace std;
int main(int argc, char**argv) {
vector<char> v;
char ch;
bool over = false;
int x = 33;
char *surname;
do {
ch = _getch();
x = static_cast<int>(ch);
if (ch == 32) break;
v.push_back(ch);
} while (ch != 32)... | [
"noreply@github.com"
] | noreply@github.com |
1f607d9801e605e3455f06b0e780aaa944fcbbb2 | 2ee048cd4fdcf8677191a6ef335df6e99638780e | /5.6.cpp | 4d53d720e33831cf57c8bd80e3270e6ed3d470a7 | [] | no_license | AnoushSim/Prata_Solutions-6th- | 5f13d6e343a1b9521fc1cbab456ec78ca338eabf | 63d1006cad582ae2a87064f626839e3dfc4fce7f | refs/heads/master | 2020-03-16T18:11:02.976294 | 2018-05-10T11:10:52 | 2018-05-10T11:10:52 | 132,863,162 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 589 | cpp | #include <iostream>
#include <string>
const int n=12;
int main()
{ int j,s=0;
std::string months[n]= { "January", "February", "March",
"April", "May", "June",
"July", "August", "September",
"October", "November", "December" };
int books_of_eachmonth[1][n];
for( j = 0; j < n; j++)
... | [
"noreply@github.com"
] | noreply@github.com |
329896e2fa3ccfbf3a373587ad9a1a3d41babf76 | 7687fcd132f5632338cfebadb82eb4f8b1bd8415 | /test2n/2的n次方.cpp | 1294179bba64d42bf2c8ab85604f8ed110d14076 | [] | no_license | Zhengjun-Du/AlgorithmPrograms | 1ab2ef8dd6c46bb854a405c764e140f413f4da99 | b0959589bd275cb1f892c5d0a39ba41404b9e340 | refs/heads/master | 2021-08-17T00:03:18.218872 | 2017-11-20T15:14:36 | 2017-11-20T15:14:36 | 107,687,393 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 616 | cpp | // test2n.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include <math.h>
#include <iostream>
using namespace std;
bool Is2N_1(int x)
{
int i = 1;
while(1)
{
if(i == x) return true;
else if(i > x) return false;
i *= 2;
}
}
bool Is2N_2(int x)
{
while(x % 2 == 0)
x /= 2;
return x == 1;
}
bool Is2N_3(in... | [
"duzjqhu@aliyun.com"
] | duzjqhu@aliyun.com |
d6601ff1dfce6975417136543aadc26d126a394f | 5f71575fac3e746298c6d3551fd6d78ba5a23909 | /PCLab/mainwindow.h | f840bfdd0a8b8f46e484b5aaf3c8f49c4f3cd956 | [] | no_license | framled/point-cloud-lab | 3905bfeb4d0aaa7e9958859ed14975b09deb917d | 17dab3a8976b8b1f51fe11ab9121bb95e6461530 | refs/heads/master | 2021-01-10T11:45:22.589297 | 2013-03-23T14:11:20 | 2013-03-23T14:11:20 | 50,537,894 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 661 | h | #ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "pcl_visualization.h"
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
protected:
pcl_visualization *pclVisualization;
bool pclVisualizationThreadExists;
public:
expli... | [
"meexmachina@gmail.com"
] | meexmachina@gmail.com |
74ec88dc1fc07d410fbb801b9fa79c596caf0d82 | 67476073317c1ee6505e3193037596d99c29973d | /NEPS/Ordenacao/problema44/44.cpp | b2ee8decf7f6d08ed4bbcd5e5dcd15f99f20d319 | [] | no_license | gabriellerosa/Codigos-Maratona | 67d68ede4d2c85991323453b0f0166d86e01d27a | 091225d258534b716fe3baa70e67d1fce68aa026 | refs/heads/master | 2023-01-19T10:39:56.153642 | 2020-11-24T21:24:28 | 2020-11-24T21:24:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 849 | cpp | #include <iostream>
#include <algorithm>
using namespace std;
struct pais{
int ouro, prata, bronze, id;
};
int func(pais a, pais b){
if(a.ouro != b.ouro){
return a.ouro > b.ouro;
}
if(a.prata != b.prata){
return a.prata > b.prata;
}
if(a.bronze != b.bronze){
return a.b... | [
"gabi.rosa1@hotmail.com"
] | gabi.rosa1@hotmail.com |
873804886ffc05b55bdec34ad89b2b1c5869a23a | 43d4da2fd106cabded9175d19c6a371f89627821 | /TT_5/CArray.h | ee43afb24924153dd028a5d1d1a86ae1e926925d | [] | no_license | metaluga/tt5 | dc9f39cc06a4e8e75c4c1cdebe2104b7fa127719 | 7a0b61f3aaecbb096fac2316dffadebc56dc0c27 | refs/heads/master | 2020-06-20T20:58:45.027897 | 2019-07-16T18:27:17 | 2019-07-16T18:27:17 | 197,246,529 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,979 | h | #pragma once
template <typename TData> class CArray
{
public:
CArray()
{
m_buffer = 0;
m_capacity = 0;
m_size = 0;
}
CArray(
const CArray & _array
)
{
m_capacity = _array.m_capacity;
m_size = _array.m_size;
m_buffer = new TData[m_size];
for (unsigned int i = 0; i < m_size;... | [
"metaluga1995@gmail.com"
] | metaluga1995@gmail.com |
054f46ee80ef4990eb0a1b9279337e2b1cb663ff | 28862363fda2e3d28bbf6b561e5916ec2a6a813a | /simple_mesh.cpp | fd26bfa38b70e3bf5ef61a2bb382f91744f470a4 | [] | no_license | ScatteredRay/Layed | a2741b1cded8b717f781695c5653e42e857e35b1 | 7fddbf41168643d996c8df301a2266e9a8034c27 | refs/heads/master | 2021-05-27T20:37:05.954485 | 2011-03-24T07:49:24 | 2011-03-24T07:49:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,250 | cpp | // Copyright (c) 2010, Nicholas "Indy" Ray. All rights reserved.
// See the LICENSE file for usage, modification, and distribution terms.
#include "simple_mesh.h"
#include <assert.h>
#include <gl.h>
GLuint CreateMesh(unsigned int num_verticies, size_t vertex_size, const void* data)
{
GLuint vbuffer;
glGenBuff... | [
"arelius@gmail.com"
] | arelius@gmail.com |
0d7c8716c46954e5d01adfe246ac13694ea9e7fa | 5e066944696d45ac4d245f91307f13fa1a5c2d05 | /src/main/cpp/set-matrix-zeroes.cpp | cc9bf6a13af8bd75d626e0316ee89720d7c019b9 | [
"Apache-2.0"
] | permissive | wittyResry/leetcode | f63bf78dd1d8de40816f10c7d8fb93abd102dca0 | 182258d91d8cd160fd897e9a5cce33104ac31afe | refs/heads/master | 2022-06-23T05:45:55.864901 | 2019-07-21T05:49:31 | 2019-07-21T09:39:06 | 59,641,494 | 1 | 0 | Apache-2.0 | 2022-06-17T01:53:53 | 2016-05-25T07:39:32 | HTML | UTF-8 | C++ | false | false | 1,912 | cpp | LeetCode OJ
Subscribe
Problems
Mock
Articles
Discuss
Book
xiaoqinqiu
Notes
|||
Type here...(Markdown is enabled)
73. Set Matrix Zeroes My Submissions QuestionEditorial Solution
Total Accepted: 68329 Total Submissions: 202527 Difficulty: Medium
Given a m x n matrix, if an element is 0, set its entire row and colum... | [
"329110452@qq.com"
] | 329110452@qq.com |
04c3a5531bcf0b8fbd0c037ee478ec58a12790db | 89292be10b520779772588bbd90184e4f6d00748 | /content/renderer/screen_orientation/screen_orientation_dispatcher.h | d672defa1754643c2d77b7a5b72fc8ad72fb81c1 | [
"BSD-3-Clause"
] | permissive | anirudhSK/chromium | 2cd85630932a05fa065a5d9a1703de33e9b5c483 | a8f23c87e656ab9ba49de9ccccbc53f614cdcb41 | refs/heads/master | 2016-09-11T03:25:35.744751 | 2014-03-14T15:59:45 | 2014-03-14T15:59:45 | 10,112,188 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,341 | h | // Copyright 2014 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_SCREEN_ORIENTATION_DISPATCHER_H_
#define CONTENT_RENDERER_SCREEN_ORIENTATION_DISPATCHER_H_
#include "base/macros.h"
#include "co... | [
"mlamouri@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98"
] | mlamouri@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98 |
e4baa9ff4c0f1f3a9b175b17aec3adc19d77f2fc | 8ecdbfc9e5ec00098200cb0335a97ee756ffab61 | /games-generated/Stencyl_Vertical_Shooter/Export/windows/obj/src/openfl/_Vector/FloatVector.cpp | eb41de1579e4be6dd070e4a08a229e00e03f884b | [] | no_license | elsandkls/Stencyl_VerticalSpaceShooter | 89ccaafe717297a2620d6b777441e67f8751f0ec | 87e501dcca05eaa5f8aeacc9f563b5d5080ffb53 | refs/heads/master | 2021-07-06T11:08:31.016728 | 2020-10-01T05:57:11 | 2020-10-01T05:57:11 | 184,013,592 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 25,820 | cpp | // Generated by Haxe 3.4.7
#include <hxcpp.h>
#ifndef INCLUDED_openfl__Vector_FloatVector
#include <openfl/_Vector/FloatVector.h>
#endif
#ifndef INCLUDED_openfl__Vector_IVector
#include <openfl/_Vector/IVector.h>
#endif
HX_DEFINE_STACK_FRAME(_hx_pos_055b1e986ae1a23a_632_new,"openfl._Vector.FloatVector","new",0x7ccdf3... | [
"elsandkls@kidshideaway.net"
] | elsandkls@kidshideaway.net |
be439b1697dd5e00121e941fc51f6635eac89fb8 | 8774e1860d88aeadcd1709e543f262b9f7983f31 | /src/qt/editaddressdialog.cpp | 3c6244f455b120b658d81d04a4d4c0db080519e5 | [
"MIT"
] | permissive | npq7721/raven-dark | cb1d0f5da007ff5a46f6b1d8410101ce827a7f5f | abc2c956f5eb5b01eb4703918f50ba325b676661 | refs/heads/master | 2020-08-04T17:04:11.847541 | 2019-07-19T19:32:55 | 2019-07-19T19:32:55 | 212,213,490 | 0 | 0 | MIT | 2019-10-01T22:47:40 | 2019-10-01T22:47:40 | null | UTF-8 | C++ | false | false | 3,992 | cpp | // Copyright (c) 2011-2013 The Bitcoin Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "editaddressdialog.h"
#include "ui_editaddressdialog.h"
#includ... | [
"j4ys0n@gmail.com"
] | j4ys0n@gmail.com |
9f1fc75c22014d0a28b26241ed4e20bd657ea96b | 2d72d92fb8cd65e72f7e97ad4695c4f3bfba44c7 | /include/quadtree.h | c0bec05c440ada3b20e5862025898fc2879710ef | [] | no_license | CzzzzH/Photorealistic-Renderer | 8865625aa3366e4470118c62bce49e1d6469a7de | b587c7d4f6fe746d5e77ce6dcfeed1035142c8b8 | refs/heads/master | 2023-04-13T13:25:52.012150 | 2021-04-14T13:05:25 | 2021-04-14T13:05:25 | 357,900,002 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,958 | h | #ifndef QUADTREE_H
#define QUADTREE_H
#include "object.hpp"
class ParmetricSurface;
class QuadTreeNode
{
public:
double minU, maxU, minV, maxV, centerU, centerV;
bool leaf = false;
Point center, lowerBound, upperBound;
QuadTreeNode* child[4];
double intersect(const Ray &ray)
{
Vector... | [
"morphling233@gmail.com"
] | morphling233@gmail.com |
ba3580095a06543b08e44b90b0cbf26fe2b394b3 | 915c488ca25aac64c03ff16ce4adeea48ef8a976 | /Lab06/src/Product.cpp | f9dc87923f7aa663955bb901cc9969fddabd8942 | [] | no_license | Dodzik/PO | adacc54574cc31a747f1bf5858e561b1c55c763d | 7174b119f3c60b663605b2608d801950cf9c8b83 | refs/heads/main | 2023-05-26T00:12:06.495644 | 2021-06-15T13:47:35 | 2021-06-15T13:47:35 | 346,689,770 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 688 | cpp | #include "Product.h"
Product::Product(Primitive& a,Primitive& b):pra(a),prb(b){
// pra = a; //takie przypisanie powoduje błąd wymug listy inicjalizacyjnej
// prb = b;
}
float Product::Get()const{
return pra.Get() * prb.Get();
}
void Product::prt()const {
std::cout<<"(";
pra.prt();
std::cout<<"*";
prb.... | [
"noreply@github.com"
] | noreply@github.com |
1ab2702cb83f7bebfae84b8a1d13c578380c9b68 | e9c01b7f3237705f5d8e2407e8b56392d77e94e0 | /src/pkcs7.cpp | 0817dd497aa86008eac890751d96a2a5ba68be10 | [
"MIT"
] | permissive | rufus-stone/hamarr | bddb82a54dca346e9ce3895109e3232ba47b32f1 | 72b82b76ae8269fb730c918a6e87463b75ac8664 | refs/heads/master | 2023-02-25T04:25:12.254259 | 2021-02-01T15:33:00 | 2021-02-01T15:33:00 | 239,369,889 | 0 | 0 | MIT | 2021-02-01T15:33:01 | 2020-02-09T20:31:55 | C++ | UTF-8 | C++ | false | false | 1,088 | cpp | #include "hamarr/pkcs7.hpp"
namespace hmr::pkcs7
{
////////////////////////////////////////////////////////////
auto pad(std::string_view input, std::size_t block_size) noexcept -> std::string
{
uint8_t pad_byte = input.size() % block_size;
if (pad_byte == 0)
{
return std::string{input.data()};
}
pad... | [
"60827786+rufus-stone@users.noreply.github.com"
] | 60827786+rufus-stone@users.noreply.github.com |
462cb4e062aac3f8b7805d08900ce515aea8bf92 | c07a5abb018c2be9d3d2500df3e33af59d7e7d69 | /Source/Twaliens/EnemySpawner.cpp | 00e0a841ac78aff26526c1df00090f6c6576e248 | [] | no_license | Nekroarteriaa/TwaliensFinal | a9a4126215b04caf8ab2d3eddf1b1105b71e78ef | 2f41fa788da3d9125c499250a0e85a6d52cbeba1 | refs/heads/master | 2023-02-25T02:48:58.988462 | 2021-02-07T02:50:20 | 2021-02-07T02:50:20 | 336,685,682 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,345 | cpp | // All rights reserved.
#include "EnemySpawner.h"
#include "ConstructorHelpers.h"
#include "Kismet/GameplayStatics.h"
#include "Runtime/Engine/Public/EngineUtils.h"
#include "Runtime/Core/Public/Math/UnrealMathUtility.h"
#include "Engine/Engine.h"
#include "TimerManager.h"
#include "Components/BoxComponent.h"
#include... | [
"Nekroarteriaa@gmail.com"
] | Nekroarteriaa@gmail.com |
3ccd15103e90185d86187464031dde249b561c16 | 55694e4d97858c28c29cb6fccdd6df5a938ea858 | /Temp/il2cppOutput/il2cppOutput/Il2CppMethodPointerTable.cpp | 9ba7cda6178f76502ad1414631f519221f1b4c2d | [] | no_license | abenzer/unity-rollaball | 681afe78aa1730f70aadd2d45323c62908ef58b9 | a29097f4df81a96d8b7af734eac54ba8ab9652ad | refs/heads/master | 2021-01-10T14:43:37.642848 | 2016-02-16T01:06:03 | 2016-02-16T01:06:03 | 51,746,616 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,033,819 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include "class-internals.h"
#include "codegen/il2cpp-codegen.h"
extern "C" void Locale_GetText_m2389348044 ();
extern "C" void Locale_GetText_m2218462520 ();
extern "C" void SafeHandleZeroOrMinusOneIsInvalid__ctor_... | [
"abenzer@gmail.com"
] | abenzer@gmail.com |
7868c56edba74fad9cd2693651ceb682eed26600 | 27da58458e8f4a70adcb0c1d8a7ed84e8342367f | /Libs/BaseLib/SharedLib/Behavior.cpp | f99e8599e5f858a9609edc7fcfd4a36730484eb3 | [] | no_license | WiZFramework/BaseCross | f5c5d41abb1bfc8c5e7e0fc397a522318c95a7d2 | 3166d3870e818c947c2b598ff9d629c58780168d | refs/heads/master | 2020-05-22T02:44:26.650636 | 2019-09-17T17:46:08 | 2019-09-17T17:46:08 | 64,080,808 | 16 | 4 | null | null | null | null | SHIFT_JIS | C++ | false | false | 6,213 | cpp | /*!
@file Behavior.cpp
@brief 行動クラス実体
@copyright Copyright (c) 2017 WiZ Tamura Hiroki,Yamanoi Yasushi.
*/
#include "stdafx.h"
namespace basecross {
//--------------------------------------------------------------------------------------
// struct Behavior::Impl;
//-------------------------------------... | [
"wiz.yamanoi@wiz.ac.jp"
] | wiz.yamanoi@wiz.ac.jp |
2e616f141a1d4a859cb42f601893510f84cbcd57 | 6e8ba0f2175d1432dde337ee0b32da191051ddf5 | /src/ui/SPH3DPrintPanel.cpp | cd24d2db661b9d586d8422b4a5d5c8192f725a56 | [] | no_license | alundilong/NumToolKit | 456947bf0a33808304bb759c8f859d58181deb77 | 9882919d4bf78deb7442ed9b8e01e0d9fff66495 | refs/heads/master | 2021-01-12T05:31:45.940296 | 2017-02-20T00:25:26 | 2017-02-20T00:25:26 | 77,954,776 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,709 | cpp | /* -*- c++ -*- ----------------------------------------------------------
NumToolKit - Numerical Simulation ToolKit
Yijin Mao, ymao.mu@gmail.com
This file is part of NumToolKit.
NumToolKit is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License ... | [
"ymao.mu@gmail.com"
] | ymao.mu@gmail.com |
25b63a5bde5e431c546cd2afa032eb2d54a22253 | a25f3306f77188b05ee0574c694454decf292190 | /rosplan_knowledge_base/src/VALfiles/ValidatorAPI.cpp | 963ee9b80c8a33ba4f8ff02f7b2e977e509adb62 | [
"BSD-2-Clause",
"GPL-2.0-only",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | fmrico/ROSPlan | 96165c3d3cadc28ad283abf40e18c0d5b5c22b38 | 6d8c9ec5b38cf6d641eb5f94965407dd259fdabc | refs/heads/master | 2020-04-02T22:03:06.879998 | 2018-10-26T11:01:27 | 2018-10-26T11:01:27 | 154,820,150 | 3 | 2 | BSD-2-Clause | 2018-10-26T12:34:55 | 2018-10-26T10:51:12 | C++ | UTF-8 | C++ | false | false | 9,040 | cpp |
#include <iostream>
#include <string>
#include "State.h"
#include "Plan.h"
#include "Validator.h"
#include "typecheck.h"
#include "RobustAnalyse.h"
#include <cstdio>
#include <iostream>
#include <fstream>
#include "ptree.h"
#include "FlexLexer.h"
#include "Utils.h"
#include "Validator.h"
#include "LaTeXSupport.h"
e... | [
"michael.cashmore@kcl.ac.uk"
] | michael.cashmore@kcl.ac.uk |
bda3de061c51156859ad0a672d8da1e2d783a740 | 08b17eb651963352921ccb596b7c61be4a40cdb2 | /Video-Tools/AVIMux_GUI/VideoSource_Matroska.h | 3e5ab97a9b3489979dfccca77a1a0d4371b40018 | [] | no_license | BrunoReX/avimuxgui | c798baf50d0bcb4572a97267eb8b5a58c9705ab5 | bfe14ecd7bf6fc34c5cab4c241ed788dd6b04b38 | refs/heads/master | 2021-01-19T15:01:28.551533 | 2014-03-17T21:27:03 | 2014-03-17T21:27:03 | 17,843,935 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,767 | h | #ifndef I_VIDEOSOOURCE_MATROSKA
#define I_VIDEOSOOURCE_MATROSKA
#include "..\matroska.h"
#include "videosource_generic.h"
typedef struct
{
MATROSKA* m;
int iStream;
__int64 size;
} VIDEOSOURCEFROMMATROSKA_DATA;
class VIDEOSOURCEFROMMATROSKA: public VIDEOSOURCE
{
private:
VIDEOSOURCEFROMMATROSKA_DATA info;
... | [
"brunorex@gmail.com"
] | brunorex@gmail.com |
3b30f5a75200b00ecc799c9832eec6aad51635cc | 693b19cd36f52a503b8ac1c9b54b9be6aeea9e76 | /componentes/TMS Component Pack/AdvObj.hpp | a04d892e196a2d9cc28aaa919a039cd67d22a31c | [] | no_license | chinnyannieb/Meus-Projetos | 728e603b451ea4262f9e6f4bf7e3dd05f0d1e79e | 6e08497c8fc45c142d7be1c4408f02fa524cd71f | refs/heads/master | 2020-12-25T23:58:02.724867 | 2015-07-05T11:45:08 | 2015-07-05T11:45:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 46,821 | hpp | // CodeGear C++Builder
// Copyright (c) 1995, 2009 by Embarcadero Technologies, Inc.
// All rights reserved
// (DO NOT EDIT: machine generated header) 'Advobj.pas' rev: 21.00
#ifndef AdvobjHPP
#define AdvobjHPP
#pragma delphiheader begin
#pragma option push
#pragma option -w- // All warnings off
#pragma option ... | [
"raphael66x@gmail.com"
] | raphael66x@gmail.com |
afb1b195818de7d07ecf892aa43d5a3c18947fcd | 1c5267a078acc756b0f39e6326ba7f51ac1c6d13 | /BOI (Baltic)/2005 Bus Trip.cpp | 052c5499aa55c8712853d30320ddf4bab10d19f8 | [] | no_license | updown2/OI-Practice | eaab5e0243410b07c7adf81aaa039049f6023438 | 0af35e40458560c1c55ccea175d47c457ad36c6f | refs/heads/master | 2021-06-26T06:20:24.304937 | 2020-09-25T18:09:13 | 2020-09-25T18:09:13 | 134,600,273 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,140 | cpp | /*
sort edges by ending time
dp[edge] = min wasted time if we take this edge (up to d[edge])
dp[x] = min(dp[y] + a[x]-d[y] for all y where there is an edge from y -- x and d[y] <= a[x])
= min(dp[y]-d[y] + a[x]) so we can store dp[y]-d[y] for all edges
add dp values to the node that the edge ends on (also store d[... | [
"riya.aro@gmail.com"
] | riya.aro@gmail.com |
9c67ffe5216dbe3ff087b9ecdb6f49dab74eaee1 | c4c0734c2ea10585e5862de8d8448df3425e8c89 | /leetcode/old_version_leetcode/152.cpp | 57bf5bf2addd7f740179c488a5f070827d5d07d3 | [] | no_license | dalalsunil1986/online-judge-boosting | 19123449ed7b78d40335b3fe9fc13626a5b79b9a | 036bd382e9ace22066f7cad05fe9e7370d0fcf1b | refs/heads/master | 2022-04-15T16:32:58.189990 | 2020-04-15T17:16:57 | 2020-04-15T17:16:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 892 | cpp | // class Solution{
// public:
// int maxProduct(vector<int>& nums){
// if(nums.size()==0) return 0;
// int res=nums[0],n=nums.size();
// vector<int> maxDp(n,0),minDp(n,0);
// maxDp[0]=res;minDp[0]=res;
// for(int i=1;i<n;++i){
// maxDp[i] = max(nums[i],max(minDp[i-1]*nums[i],maxDp[i-1]*nums[i]));
// mi... | [
"pkusp@outlook.com"
] | pkusp@outlook.com |
4477176d835221c16628641f3c25fed1b3226a23 | 30492e22d09ed0dc071370481145015832ecc312 | /izg_lab_03/src/student.cpp | 4dfc733b4731a39c02cf240ee4fc8136c084d348 | [] | no_license | xmihol00/IZG | 1ecd7c4b002610b44c3dbad563a543dc4fcc94b3 | 79e7a943173327d274542b3bfd2bc1e45e87ff12 | refs/heads/master | 2023-06-29T16:55:47.426575 | 2021-07-31T08:04:55 | 2021-07-31T08:04:55 | 391,292,125 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,614 | cpp | /**
* @file student.cpp
* @author Ladislav Mosner, VUT FIT Brno, imosner@fit.vutbr.cz
* @author Petr Kleparnik, VUT FIT Brno, ikleparnik@fit.vutbr.cz
* @author Kamil Behun, VUT FIT Brno, ibehun@fit.vutbr.cz
* @date 11.03.2018
*
* @brief Deklarace funkci studentu. DOPLNU... | [
"mihola.dejv@gmail.com"
] | mihola.dejv@gmail.com |
bf35bdd2ca97e7fefae35194381e783f35bea55c | f47639fead3e7d32c453a0c55f656dbd8e241456 | /src/common/getStatus.cpp | cadec2917b3118b9786ae4c51ff8ff6f43df4d36 | [
"Apache-2.0"
] | permissive | ErikZhou/Subprocess | fd99e25096027d779de60c105bb96a13def1ab5c | b45320878ca43ae0058676c93222be4a46ac8cd1 | refs/heads/master | 2022-01-19T06:47:28.638756 | 2019-03-31T20:20:22 | 2019-03-31T20:20:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 120 | cpp | #include "Process.hpp"
namespace lp {
int Process::getStatus() const noexcept
{
return _status;
}
} // namespace lp
| [
"leandre.blanchard@epitech.eu"
] | leandre.blanchard@epitech.eu |
bd5ea2114803a27d6a3a11edd93f14c77eab2457 | 3b15b2d3dfaa1113eec2a8cd52d523e0666a1de3 | /src/Engine/Timer.h | 19eaf085ffc72e34a8d9b6691545da6a0564b62c | [] | no_license | CryptoLover705/2d_game_engine____OLD | 764a789f297e6fd976e71c3ba4f03b1af244301c | ea369b4a0a60c5125c6e4d6547234806c5102740 | refs/heads/master | 2022-11-05T05:20:56.268580 | 2020-06-17T14:17:08 | 2020-06-17T14:17:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 343 | h | #pragma once
#include "SDL2/SDL.h"
class Timer
{
public:
Timer();
// Actions
virtual void Start();
virtual void Stop();
virtual void Pause();
virtual void Resume();
virtual void Reset();
Uint32 GetTicks();
bool IsStarted();
bool IsActive();
bool IsPaused();
private:
Uint32 StartTicks, PausedTicks;
bool... | [
"50221455+CryptoLover705@users.noreply.github.com"
] | 50221455+CryptoLover705@users.noreply.github.com |
d8679e88bbbe4fbb00ea39a4a414f185069c49c0 | a9b03f4730534da6e25e8a52ea0cd870db7c28b4 | /modules/monitor/common/recurrent_runner.h | 8edc3c637453ce301f68ee93e846a933442ae23f | [
"Apache-2.0"
] | permissive | zhuangli1987/apollo | 6bcf2ddebb23377e701ec9bf2b56c1ea4632bab9 | 2210bef1ef5aadfeccb48949c07b31de4e581b25 | refs/heads/master | 2020-03-28T00:31:50.529228 | 2018-09-25T01:29:51 | 2018-09-25T01:31:39 | 147,425,981 | 0 | 0 | null | 2018-09-04T22:11:18 | 2018-09-04T22:11:18 | null | UTF-8 | C++ | false | false | 1,635 | h | /******************************************************************************
* Copyright 2017 The Apollo 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
... | [
"ycool@users.noreply.github.com"
] | ycool@users.noreply.github.com |
58182c79bdbbdaabd87e0ad0109a0387f72f8b07 | e833512c775ee03178b236098922f323e803a64c | /dualJets3Mesh_kappaEpsilonTurbulenceOff_v2_fvSolution_changed_relaxationfactors/30/U | 1e88dc4a2c6262491bc97f136accb228e4fa7e1c | [] | no_license | bshambaugh/TrySolversAndModelsOpenFoamCFD | 19a8820d30dc6c8c41bd5b05065ded6e18ccffdc | c914b049aa65f47d1475cf28b58154c334e084ad | refs/heads/master | 2020-04-24T04:19:55.332736 | 2019-02-20T17:40:56 | 2019-02-20T17:40:56 | 171,698,766 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 43,934 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 4.1 |
... | [
"brent.shambaugh@gmail.com"
] | brent.shambaugh@gmail.com | |
c9b7a106aae0181438214ec98d999b1be1f78fe1 | e4d3d56265ed372e08976670143ee88e54b84b2e | /src/features/classes.h | 9d52756e7313a204036d8e594ba72d4fba476f8c | [
"MIT"
] | permissive | tigerwood/spec-cpp | e681d2a9de1e8469054ecf9a4b1aa109909a5774 | 1d7e33e93b9dfcecf8c79a94ee572965f6360247 | refs/heads/master | 2020-04-29T02:13:38.606000 | 2018-08-14T16:15:43 | 2018-08-14T16:15:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 101 | h | #pragma once
namespace features {
namespace classes {
void run_tests();
} // classes
} // features
| [
"tatum.creative@gmail.com"
] | tatum.creative@gmail.com |
181ce530b270ff6805a7c09436563cda3e0696fb | 9d0d9492c12b3e88303c87134d6c0536e727b34f | /t39_decorator_pattern.cpp | b9b0525fbf35c3b1d7c7b46985686e2ce2c3b024 | [] | no_license | s-kramer/cpp_tests | 361929b81b99fcb17da13014e78748f7578becc1 | 2d6d3404bc5d6405e0cba8159e1cce0248efc194 | refs/heads/master | 2021-01-10T03:54:39.174981 | 2017-08-07T08:16:14 | 2017-08-07T08:16:14 | 53,738,390 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,873 | cpp | #include <iostream>
#include <memory>
class SingleCharPrinter
{
public:
explicit SingleCharPrinter (void) = default;
virtual void draw(void) = 0;
};
class ACharPrinter : public SingleCharPrinter
{
public:
explicit ACharPrinter (void) = default;
virtual void draw(void) override
{
std::cout... | [
"sebastian.kramer@wp.pl"
] | sebastian.kramer@wp.pl |
cb992508ae4727f56b47e9e66215149bca5c53a5 | 4d6f9eaeb9738c9e2cfa1502d1136ebe4bffb2c1 | /src/TimePanel.cpp | ca64a84e7c032f73e6e6da3333cb8cfad994e806 | [] | no_license | serjikz/Tir | fabbcffbfd0f9eefc5a46baa62aaba0ccfa13457 | 3ff07017faa84b79810018ba0137718d8f430dfe | refs/heads/master | 2023-05-05T04:50:05.612266 | 2020-09-20T19:16:08 | 2020-09-20T19:16:08 | 280,805,912 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,711 | cpp | #include "stdafx.h"
#include "TimePanel.h"
TimePanel::TimePanel(rapidxml::xml_node<>* settings)
:Panel(settings),
_text(""),
_timeAvailable(0.f),
_t0(0)
{
rapidxml::xml_node<>* timeText = settings->first_node("text");
_textX = Xml::GetIntAttributeOrDef(timeText, "x", 0);
_textY = Xml::GetIntAttributeOrDef(timeT... | [
"zalukaev-sergey@yandex.ru"
] | zalukaev-sergey@yandex.ru |
03ed5bd900bf6d0f69b064c57de4c4f5907ffb3e | cd790fb7e8ef78b1989531f5864f67649dcb1557 | /uva11340(Newspaper).cpp | f9b729876f051895d28701b919b7791917accdbc | [] | no_license | FatimaTasnim/uva-solution | 59387c26816c271b17e9604255934b7c8c7faf11 | c7d75f0a5384229b243504dfbef4686052b9dea8 | refs/heads/master | 2020-03-27T22:23:18.611201 | 2018-10-23T05:53:46 | 2018-10-23T05:53:46 | 147,226,519 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 764 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
int c,n,m,rt;
double sum=0.0;
char ch;
char line[10001];
scanf("%d",&c);
while(c--)
{
int amount[1500]={0};
sum=0.0;
scanf("%d",&n);
getchar();
for(int i=0;i<n;i++)
{
scanf("... | [
"tasnim.roujat@gmail.com"
] | tasnim.roujat@gmail.com |
10f41b833df6cbd5b6f0e2ee6d856677fd916baf | 1636e263470286f72a659bc25f39027c6923b8b1 | /tags/1.21/boost/libs/regex/test/regress/test_sets.cpp | bc394909a79ffdefea7bc8fd385000712029acbd | [
"BSL-1.0"
] | permissive | BackupTheBerlios/rsxplusplus-svn | 62e87121306dbbf055248ac7b97995d83cca09f9 | d50d613b085bd2ab958b0cdc884bcb6a8aacbf39 | refs/heads/master | 2020-04-20T18:05:23.244919 | 2012-02-08T23:13:04 | 2012-02-08T23:13:04 | 40,820,934 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 30,203 | cpp | /*
*
* Copyright (c) 2004
* John Maddock
*
* Use, modification and distribution are subject to the
* Boost Software License, Version 1.0. (See accompanying file
* LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
*
*/
#include "test.hpp"
#ifdef BOOST_MSVC
#pragma warning(disabl... | [
"adrian_007@d6b4a1ff-313e-0410-9c6d-9e6e276248f2"
] | adrian_007@d6b4a1ff-313e-0410-9c6d-9e6e276248f2 |
99567ef26ac8736092dd9cecf4115f5c59ce9390 | eac71e4c7f960160887ab5ce675f8b2903ed51bb | /Punteros 2/X66203_ca/program.hh | 1edcdddf5513cf8ad23ce3c3bba2e17ba1087d3a | [
"Apache-2.0"
] | permissive | go3212/FIB-PRO2 | 14947931a37e9f52b154904b2d229785d3a76fbb | 383cc7568583e164d740b87b9e7ad4eb06fee5d9 | refs/heads/main | 2023-06-02T02:34:23.503813 | 2021-06-14T10:20:48 | 2021-06-14T10:20:48 | 341,898,013 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 502 | hh | void node_search_max (const node_arbreNari* node, T& maxVal) const
{
if (node == NULL) return void();
if (node->info > maxVal) maxVal = node->info;
int size = node->seg.size();
for (int i = 0; i < size; ++i)
{
node_search_max (node->seg[i], maxVal);
}
}
/* Pre: el p.i. no és buit */
/* ... | [
"go3212@hotmail.com"
] | go3212@hotmail.com |
95a2b958ba47d25b8a59cdc61a907f88d1d1b0c3 | 2a7a95716ab7ee907cad2a0ccf1b64f7464c8d35 | /Win32Project1/Win32Project1.cpp | 4b5f3d99690f7a299a8619c8556ed1b5be1a7b27 | [] | no_license | sotigr/GLEngine | b77e0ecc3d2492e59ab57da7f5938332c2fa1886 | 1ab0c044707e3d07a19315030091badded33cf0f | refs/heads/master | 2021-04-28T21:22:27.125216 | 2017-01-01T09:07:11 | 2017-01-01T09:07:11 | 77,772,515 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 725 | cpp |
//
// FUNCTION: WndProc(HWND, UINT, WPARAM, LPARAM)
//
// PURPOSE: Processes messages for the main window.
//
// WM_COMMAND - process the application menu
// WM_PAINT - Paint the main window
// WM_DESTROY - post a quit message and return
//
//
#include <windows.h>;
#include <stdlib.h>;
#include <stdio.h>;... | [
"sotiris.papaioannou@hotmail.com"
] | sotiris.papaioannou@hotmail.com |
fc3c0a1d330d1788f146a891b538c0c53ac7f621 | cb32fa11a240707ef689e90fdf749337db4c9b4c | /esp8266-christmastree.ino | 590d36089e9d949bb091244a96cdde73d4821312 | [] | no_license | mverboom/esp8266christmastree | 1f7ab4598bb03524815cbe4de13843f14b7d76b1 | aec5eb92cc7f29e0a4a028ffd32c7080bee9542d | refs/heads/master | 2021-01-12T05:35:33.006122 | 2016-12-22T19:36:28 | 2016-12-22T19:36:28 | 77,136,112 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,263 | ino | #include <Adafruit_NeoPixel.h>
#include <ESP8266WiFi.h>
#include <DNSServer.h>
#include <ESP8266WebServer.h>
#include <ESP8266mDNS.h>
#include <WiFiManager.h>
#include <WebSocketsServer.h>
#define PIN D1
#define NUM_PIXELS 10
#define COLOR_RANDOM -2
#define COLOR_GET -1
#define COLOR_STATE -3
#define UPDATE_GET -1
... | [
"mark@verboom.net"
] | mark@verboom.net |
5c886edca70ad724982338724c3796f2dacc1430 | d97f3028824433efd31c390bb3a78d08cae82fe6 | /jshEngine/src/ImGui/imgui_demo.cpp | f20828bf38d9c4216a5f9c2dfe20559da6c2166b | [
"Apache-2.0"
] | permissive | JoseLRM/jshEngine | db434bdafb19f4e56717116b2df42d992b9b0f82 | 589851ca3e845e407d81dc555dc76dc70c010f25 | refs/heads/master | 2022-07-16T15:26:31.238268 | 2020-05-22T06:04:35 | 2020-05-22T06:04:35 | 247,751,536 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 256,036 | cpp | #include "common.h"
// dear imgui, v1.76 WIP
// (demo code)
// Help:
// - Read FAQ at http://dearimgui.org/faq
// - Newcomers, read 'Programmer guide' in imgui.cpp for notes on how to setup Dear ImGui in your codebase.
// - Call and read ImGui::ShowDemoWindow() in imgui_demo.cpp for demo code. All applications in exam... | [
"joselrm890@gmail.com"
] | joselrm890@gmail.com |
633328f09d5cc7dea0ef92530b95ba0f2f25efa2 | 325a5127e8871e36d36ce3cc61f4e936843836b2 | /Random_Terrain_Generator/Utility.h | 2e85f0e1fdee553c0bb305dc2b9c8c81508ea982 | [
"MIT"
] | permissive | GoddessOfProphercy/Random-Terrain-Generator | f142514b7a2e2cc71ed519be39929b7ead1390a9 | c329396321555a5ca5021b9b7117fc0f81d629b6 | refs/heads/main | 2023-09-04T01:52:58.337857 | 2021-11-03T09:14:16 | 2021-11-03T09:14:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,217 | h | #ifndef _UTILITY_H_
#define _UTILITY_H_
#include <gl\glew.h>
#include <glm\glm.hpp>
#include <glm\gtc\type_ptr.hpp>
#include <glm\gtc\matrix_transform.hpp>
#include <fstream>
#include <iostream>
#include <string>
#include <SOIL2\SOIL2.h>
using namespace std;
using namespace glm;
struct Utility
{
stri... | [
"noreply@github.com"
] | noreply@github.com |
47d39b98a38c0985c84dc1ccd54a2bdfc94bdbf7 | 21c3db737a0c69f8e9d649ecf0c1aee256f143d8 | /main.cpp | 9e28b2a85d5074544a3e6a41a9127ab1e6dd6db0 | [] | no_license | Fidelgonzales10/Unit-2-assignment | 716e6ca04c11ed8b2b219dde636bb3d2994dcca6 | 5781c00b4d8d12a2673bcbd7d75fe1d03aaa3b5b | refs/heads/main | 2023-08-27T06:47:04.889333 | 2021-11-05T23:18:44 | 2021-11-05T23:18:44 | 425,108,648 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,284 | cpp | //Dr_T Unit 2 COSC-1437 Starter
/* Task -
Top level solution folder: C_STL_Library_YourLastName
create a single main.cpp that contains code samples and implementations of each of the following topics */
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
using namespace std;
//Credit htt... | [
"92833979+Fidelgonzales10@users.noreply.github.com"
] | 92833979+Fidelgonzales10@users.noreply.github.com |
8f4f874e4fb050170cc5db56c44a406e11f6aea4 | c9cf0586ace11aa32fa67606d237a130a06364ee | /circular-cylinder-3-40/20.75/U | c0074a8da32d7bcddde919978b6bacb92b1cf97c | [] | no_license | jezvonek/CFD-Final-Project | c74cfa21f22545c27d97d85cf30eb6dc8c824dc1 | 7c9a7fb032d74f20888effa0a0b75b212bf899f4 | refs/heads/master | 2022-07-05T14:43:52.967657 | 2020-05-14T03:40:56 | 2020-05-14T03:40:56 | 262,370,756 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 544,280 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1912 |
... | [
"jezvonek@gmail.com"
] | jezvonek@gmail.com | |
14ac84387fa863f81936cc75111357c6604880e8 | bac7267590c6267b489178c8717e42a1865bb46b | /WildMagic5/LibMathematics/Intersection/Wm5IntrLine2Line2.h | 5a15b66d768b13edd7db3bf37cd1477d4fb40d42 | [] | no_license | VB6Hobbyst7/GeometricTools-Apple | 1e53f260e84f8942e12adf7591b83ba2dd46a7f1 | 07b9764871a9dbe1240b6181039dd703e118a628 | refs/heads/master | 2021-02-11T11:17:56.813941 | 2013-11-26T15:25:10 | 2013-11-26T15:25:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,041 | h | // Geometric Tools, LLC
// Copyright (c) 1998-2013
// Distributed under the Boost Software License, Version 1.0.
// http://www.boost.org/LICENSE_1_0.txt
// http://www.geometrictools.com/License/Boost/LICENSE_1_0.txt
//
// File Version: 5.0.1 (2010/10/01)
#ifndef WM5INTRLINE2LINE2_H
#define WM5INTRLINE2LINE2_H... | [
"tprepscius"
] | tprepscius |
5c325d8a8b7eb383625785674ab7bab5798daf99 | 3d9d8bb23bc237cbeb71827093cf39314144747f | /src/qt/guiutil.cpp | f98e6218627e81db8af88a0edb4ba86fa35cb697 | [
"MIT"
] | permissive | Gundrak/Civitas-1 | 809e4670624393cc8488885d181dea3b52fa4bb4 | 0b9733e0c15cca4b72e339445d1515d40eeaf82d | refs/heads/master | 2020-06-27T11:38:31.750308 | 2019-07-31T23:52:37 | 2019-07-31T23:52:37 | 199,944,147 | 0 | 0 | MIT | 2019-07-31T23:49:02 | 2019-07-31T23:49:02 | null | UTF-8 | C++ | false | false | 31,012 | cpp | // Copyright (c) 2011-2014 The Bitcoin developers
// Copyright (c) 2014-2015 The Dash developers
// Copyright (c) 2015-2017 The PIVX developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "guiutil.h"
#include "... | [
"debian@packer-debian-7-amd64.droplet.local"
] | debian@packer-debian-7-amd64.droplet.local |
8560b1d65cba4d0e63f64eabbd9e5b3aea3ecd8e | 75452de12ec9eea346e3b9c7789ac0abf3eb1d73 | /src/ui/bin/root_presenter/tests/fakes/fake_session.h | 3d7f18142b6a70f5bc2d0960c29dfbe204f0b7dc | [
"BSD-3-Clause"
] | permissive | oshunter/fuchsia | c9285cc8c14be067b80246e701434bbef4d606d1 | 2196fc8c176d01969466b97bba3f31ec55f7767b | refs/heads/master | 2022-12-22T11:30:15.486382 | 2020-08-16T03:41:23 | 2020-08-16T03:41:23 | 287,920,017 | 2 | 2 | BSD-3-Clause | 2022-12-16T03:30:27 | 2020-08-16T10:18:30 | C++ | UTF-8 | C++ | false | false | 2,140 | h | // Copyright 2019 The Fuchsia 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 SRC_UI_BIN_ROOT_PRESENTER_TESTS_FAKES_FAKE_SESSION_H_
#define SRC_UI_BIN_ROOT_PRESENTER_TESTS_FAKES_FAKE_SESSION_H_
#include <fuchsia/ui/scenic/cp... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
f06fa5497ea4003a6ade039bd42cc30f09521a42 | 79636d9a11c4ac53811d55ef0f432f68ab62944f | /smart-darkgdk/include/Listener.h | 3f9ff71e9b68d45492883549145a61ece626d84e | [
"MIT"
] | permissive | endel/smart-darkgdk | 44d90a1afcd71deebef65f47dc54586df4ae4736 | 6235288b8aab505577223f9544a6e5a7eb6bf6cd | refs/heads/master | 2021-01-19T10:58:29.387767 | 2009-06-26T16:44:15 | 2009-06-26T16:44:15 | 32,123,434 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 145 | h | #pragma once
#include "Event.h"
class Listener
{
public:
Listener(void);
~Listener(void);
virtual void execute(Event* e) = 0;
};
| [
"endel.dreyer@0995f060-2c81-11de-ae9b-2be1a451ffb1"
] | endel.dreyer@0995f060-2c81-11de-ae9b-2be1a451ffb1 |
c44fa3eaa733e64269c5036c323381e28311ff0d | 92f4662156d763cc8e244d12932ba32496c21eb0 | /Project/clientserver/src/newsclient.cc | 9a37526518625216ba137da654755be6f83803de | [] | no_license | antongudjonsson/EDAF50 | 86ae36a3b35ce4e3e9adcb2544e3908b99e21184 | 95c56d5acf5431d5ab8088819941c4cc381691d4 | refs/heads/master | 2020-04-20T20:30:43.045693 | 2019-04-21T16:15:03 | 2019-04-21T16:15:03 | 169,078,654 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 10,358 | cc | #include "messagehandler.h"
#include "server.h"
#include "connection.h"
#include <iostream>
#include <istream>
#include <limits>
using namespace std;
using std::cin;
Connection init(int argc, char *argv[])
{
if (argc != 3)
{
cerr << "Usage: myclient host port-number" << endl;
exit(1);
}
... | [
"dat14agu@student.lu.se"
] | dat14agu@student.lu.se |
60130dd2022c53c56914f4f7a72fad8432441772 | ec10d899e0d6465e474fda57ae4e459e98476825 | /TopiVarScores.hpp | 5b7616b650e1b018b4b1facf2ce80d195d785013 | [
"MIT"
] | permissive | alexander-nadel/intel_sat_solver | 7cf7e68bc466f96f447387846e57d685ff755d1c | 65e7e751740585fee8c6ec6047b0a46d098259f3 | refs/heads/main | 2023-08-08T20:57:22.555200 | 2023-08-07T08:44:37 | 2023-08-07T08:44:37 | 485,669,789 | 13 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 6,141 | hpp | // Copyright(C) 2021-2022 Intel Corporation
// SPDX - License - Identifier: MIT
#pragma once
#include "ToporVector.hpp"
// Variable scores handler, including a heap implementation
namespace Topor
{
template <typename TUVar, typename TUV>
class CVarScores
{
public:
// The heap's 0 index must always be occupi... | [
"alexander.nadel@intel.com"
] | alexander.nadel@intel.com |
e463694aa8cddaa656cc151771edad11fb52fef6 | e724711f52ecd3e1e4f0b4ec9bec017c9c5f9a6a | /nano/lib/lmdbconfig.cpp | a4387fcaa8147f54dceb6b47459acfaa47905399 | [
"BSD-3-Clause"
] | permissive | nanocurrency/nano-node | 43e56ecf12ced0d2b20ea65b1bbf4125476470a9 | da9cf6ac004dec6944c01f638bf70f620cc98e91 | refs/heads/develop | 2023-08-16T18:53:08.724630 | 2023-07-29T11:27:07 | 2023-07-29T11:27:07 | 19,347,340 | 1,392 | 492 | BSD-3-Clause | 2023-09-13T17:09:35 | 2014-05-01T14:49:25 | C++ | UTF-8 | C++ | false | false | 2,215 | cpp | #include <nano/lib/lmdbconfig.hpp>
#include <nano/lib/tomlconfig.hpp>
#include <nano/secure/common.hpp>
#include <iostream>
nano::error nano::lmdb_config::serialize_toml (nano::tomlconfig & toml) const
{
std::string sync_string;
switch (sync)
{
case nano::lmdb_config::sync_strategy::always:
sync_string = "alw... | [
"noreply@github.com"
] | noreply@github.com |
0956ecbc9d873cb0b3606b7810b3538b008abe94 | 486e96a5a383d7cc6e42f4344428af8de5d350bf | /headers/I_unmark.h | 0ae1264ed86c9f95510a3445a0e90232d3038d3f | [] | no_license | Smehta97/bugworld_phase_3 | 71640ecf1bcf4c484734dbc42cd1f77b06899607 | 8e9f6f7e294c71cb52b998af9125daca334f53d7 | refs/heads/master | 2020-03-09T02:55:16.514292 | 2018-04-09T18:10:57 | 2018-04-09T18:10:57 | 128,552,251 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 337 | h | /**
I_unmark.h
*/
#ifndef _I_UNMARK_H
#define _I_UNMARK_H
class I_unmark: public Bug, public Instruction, public tstate{
private:
// attributes
int m;
tstate z;
//functions
public:
//attributes
//functions
void execute(Bug b);
void parse(string args);
void unmark(int m, tsat... | [
"mehta.sahil1997@gmail.com"
] | mehta.sahil1997@gmail.com |
694db7abce01fe8fe1b8cc147cebef7030431ca9 | 8aa4219a652175ce28a15dbdcf83f2568c9ae46f | /scenes/gamescene.cpp | 47ea727f116502282ecf61f46524542d2125503d | [] | no_license | 2hdddg/pac | acac251f3d8398e1f1391d3ba199b18b3e8ddc27 | e13fdf38eaf0e0cbf58a134c6540d0f4ce28055e | refs/heads/master | 2021-07-06T20:21:15.377225 | 2017-08-01T09:28:22 | 2017-10-02T17:07:11 | 105,561,565 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,701 | cpp | #include <memory>
#include <iostream>
#include "scenes/gamescene.hpp"
#include "util/tileset.hpp"
#include "game/playerview.hpp"
#define D(x)
namespace game {
GameScene::GameScene(std::shared_ptr<Resources> resources,
std::shared_ptr<Game> game) :
_resources(resources),
_game(game)
{
... | [
"2hdddg@gmail.com"
] | 2hdddg@gmail.com |
a0bc432c25cc512bab0c2574dcf486c0f834c7ce | 604f92bbe3cf39a18398b3a584d0a9fd36fd94c2 | /SDP_Project/main.cpp | 687007ab7eb7314d2509bd1ee12437ceb1dd2ad3 | [] | no_license | nikdenev/sdp | 20002faebc0a8601e89c49834d333eeecbd5b44d | e4115d2f735782834cfb9cfae0e5d2b17518c1d0 | refs/heads/master | 2021-01-21T05:10:44.003605 | 2017-02-25T17:01:10 | 2017-02-25T17:01:10 | 83,145,223 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 937 | cpp | /**
*
* Solution to homework task
* Data Structures Course
* Faculty of Mathematics and Informatics of Sofia University
* Winter semester 2016/2017
*
* @author Nikolay Denev
* @idnumber 45231
* @task 0
* @compiler VC
*
*/
#include <iostream>
#include <cstring>
#include "Archive.h"
#include "Unarch... | [
"noreply@github.com"
] | noreply@github.com |
814326c0b7f355f0faa85d9bb064cc3f7d22b43c | bc720faf86f20ee4387e2300506b7add80c8c028 | /Multiplayer Game/ReplicationManagerServer.cpp | 1114001afd3a9ef1c64b654611e83e0ae43727db | [
"MIT"
] | permissive | lakaens/multiplayer-game | f27ae016938c455768a0089065789872d391235c | c2369ceb5435105ce5dcff41f67016343744ad84 | refs/heads/master | 2022-03-10T21:35:16.228942 | 2019-12-01T19:34:12 | 2019-12-01T19:34:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,594 | cpp | #include "ReplicationManagerServer.h"
#include "Networks.h"
ReplicationManagerServer::ReplicationManagerServer()
: m_replicationCommands()
{
}
ReplicationManagerServer::~ReplicationManagerServer()
{
}
void ReplicationManagerServer::create(uint32 networkID)
{
auto it = m_replicationCommands.find(networkID);
if ... | [
"sandruskiag@gmail.com"
] | sandruskiag@gmail.com |
55da799c4106988a198266685af24cb999f2cf87 | 03d80412e26676ac81fc23d0ab580b08066860e8 | /priority_queue.h | 48a1c074b12b3fc483a4548f6b42cc321545e8f8 | [] | no_license | Aparajith-S/Dijkstras_Algorithm | f3fe15a5c6a5e94e9d4ba475a0dbda0e734629f4 | 289627188ff7c5d5c24adb734611a7af8d47a90f | refs/heads/master | 2022-12-07T04:08:19.497515 | 2020-08-31T05:36:04 | 2020-08-31T05:36:04 | 291,623,490 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,694 | h | /// @file:
/// @author:
/// @date :
/// @brief : workaround for template class definitions.
#pragma once
#include<vector>
#include"myalgorithm.h"
typedef unsigned int uint32;
/// @class Priority queue based on min heap
/// @brief Priority queue which accepts a pair <prio,name> where name is a type could ... | [
"noreply@github.com"
] | noreply@github.com |
a6a967fd7fa064a0bd48ac578a19b3b75a0a747e | 0b15d36c0abe3379554a3c959cd31d08fb9ca078 | /spavanac.cpp | e9c4ae02bc6b691ac5027570549bec3807c1f196 | [] | no_license | adhwa98/week_01-Folder | 61562d37846a839e823c94fa22b34ebce71e610f | d5390a1b76c876d651c1eed7dbfb820d07e58fa2 | refs/heads/main | 2023-01-01T08:43:39.069377 | 2020-10-29T16:30:49 | 2020-10-29T16:30:49 | 308,382,513 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 298 | cpp | #include <stdio.h>
int mod(int x, int y) {
return (x >= 0) ? x % y : x % y + y;
}
int main() {
int h, m; // hours, minutes
scanf("%d %d", &h, &m);
m -= 45;
if (m > 0)
printf("%d %d\n", h, m);
else
printf("%d %d\n", mod(h - 1, 24), 60 + m);
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
56d7024ff94489af8cc0fe72c3e07fede3e66781 | 4bc7bbfb9808e619ceae51d698afc1d95bce497d | /Project4/src/main.cpp | f37df4b3abe9889fb165f912c77679d45b141c38 | [] | no_license | Nimtaa/ERS-Homework | cac6ca5aeda45d7052f8cfec0ff1477658bb9f3a | 9fd1e151e0c8f95ecc2c0f4b2aff408769384e6d | refs/heads/master | 2020-04-02T01:58:57.534848 | 2019-09-05T10:27:26 | 2019-09-05T10:27:26 | 153,885,126 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,305 | cpp | // #include <mbed.h>
// // System Outputs
// DigitalOut red_led(PTC1);
// DigitalOut green_led(PTC2);
// BusOut display(PTE5,PTE4,PTE3,PTE2,PTB11,PTB10,PTB9,PTB8);
// // Intrupts
// InterruptIn push_button1(PTD1);
// InterruptIn push_button2(PTD2);
// InterruptIn push_button3(PTD3);
// bool but1_presed = false;
// ... | [
"nima.tavassoli2@gmail.com"
] | nima.tavassoli2@gmail.com |
a67b4c2f47a942bc35503f1dd629d0685ff532ac | 786de89be635eb21295070a6a3452f3a7fe6712c | /O2OTranslator/tags/V00-29-08/src/O2OCvtFactory.cpp | af1a000f06367755dcd4224bbdb0da89a5768b76 | [] | no_license | connectthefuture/psdmrepo | 85267cfe8d54564f99e17035efe931077c8f7a37 | f32870a987a7493e7bf0f0a5c1712a5a030ef199 | refs/heads/master | 2021-01-13T03:26:35.494026 | 2015-09-03T22:22:11 | 2015-09-03T22:22:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 30,117 | cpp | //--------------------------------------------------------------------------
// File and Version Information:
// $Id$
//
// Description:
// Class O2OCvtFactory...
//
// Author List:
// Andy Salnikov
//
//------------------------------------------------------------------------
//-----------------------
// This Cl... | [
"salnikov@SLAC.STANFORD.EDU@b967ad99-d558-0410-b138-e0f6c56caec7"
] | salnikov@SLAC.STANFORD.EDU@b967ad99-d558-0410-b138-e0f6c56caec7 |
8c050208488f501261e0726e3939dc8eed09afdd | 0d0e78c6262417fb1dff53901c6087b29fe260a0 | /ie/src/v20200304/model/CoverTaskResult.cpp | 5b06b951d6d7c0f19081b859bf60f57fc42f2a0c | [
"Apache-2.0"
] | permissive | li5ch/tencentcloud-sdk-cpp | ae35ffb0c36773fd28e1b1a58d11755682ade2ee | 12ebfd75a399ee2791f6ac1220a79ce8a9faf7c4 | refs/heads/master | 2022-12-04T15:33:08.729850 | 2020-07-20T00:52:24 | 2020-07-20T00:52:24 | 281,135,686 | 1 | 0 | Apache-2.0 | 2020-07-20T14:14:47 | 2020-07-20T14:14:46 | null | UTF-8 | C++ | false | false | 5,326 | 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@tenent.com"
] | tencentcloudapi@tenent.com |
879ea5f0a78dddf8b4dd34711f36339aec4cd755 | 980ff4935a3ec6fc38e6aa41301b970c50f3c802 | /inverse_pendulum_control/src/pid_inverse_pendulum.h | 019b44585a3a817ce54620bd93721e9c7bf6b1d1 | [] | no_license | vuvuzella/ros_inverse_pendulum | ee06b8842cd42fd672d7477f6a3eec12c17327b5 | 5138b827c5355ca77bae69e8761d60205f97f6e1 | refs/heads/master | 2022-10-24T19:33:44.740198 | 2020-06-13T13:38:24 | 2020-06-13T13:38:24 | 272,016,075 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,083 | h | #include "ros/init.h"
#include "ros/node_handle.h"
#include <ros/ros.h>
#include "ros/subscriber.h"
#include "ros/rate.h"
#include "sensor_msgs/JointState.h"
#include <sensor_msgs/Imu.h>
#include <geometry_msgs/Quaternion.h>
#include <string.h>
#include <std_msgs/Float64.h>
class PIDInversePendulum {
public:
... | [
"j.tabacii@gmail.com"
] | j.tabacii@gmail.com |
9c59624b9f0dffd64adf0513cc99198506b19748 | 64732dfaeb3efb781db6e894bebfe23d627278e7 | /LoganEngine/old/lInterfaces/lResourceManager/liGPUFactory.h | 259fc2f53a0554da918bc778b76c515197d03bc8 | [
"MIT"
] | permissive | sereslorant/logan_engine | b791f843a36bd19caa4cc97dc4ec102a37cb650a | a596b4128d0a58236be00f93064e276e43484017 | refs/heads/master | 2020-05-21T19:41:45.676116 | 2018-01-28T10:25:43 | 2018-01-28T10:25:43 | 63,418,341 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,340 | h | #ifndef LI_GPU_FACTORY_H
#define LI_GPU_FACTORY_H
/*
* Itt include-oljuk be azokat az interface-eket, amelyeken keresztül a resource manager adatokat közöl a
* motor rendererével.
*
*/
#include "liBitmap.h"
#include "../../lMath/lMath.h"
#include <string>
class liStaticMeshResource
{
public:
virtual unsigned in... | [
"sereslorant@gmail.com"
] | sereslorant@gmail.com |
2c45ac23d611bd1bda3d25aa72731e03dfea34e5 | a6b698105aec67701cdd509cb9a48528786049d2 | /RegainEarthCheat/SDK/Slate_classes.h | 6e92261d23554e25d8a09313cd78157df9acfa17 | [] | no_license | ejiaogl/RegainEarth-Cheat | 859d44d8400a3694b4e946061b20d30561c6304f | 4136c2c11e78e9dbb305e55556928dfba7f4f620 | refs/heads/master | 2023-08-29T09:39:45.222291 | 2021-10-19T19:56:05 | 2021-10-19T19:56:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,495 | h | #pragma once
// Name: RegainEart-FirtstStrike, Version: Version-1
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Classes
//--------------------------------------... | [
"64608145+Fischsalat@users.noreply.github.com"
] | 64608145+Fischsalat@users.noreply.github.com |
d9a6dacc07d3cfb517fbec5a4ecc266907508caa | f72c4c4641a17a07e58196ff14c9d5c3edb86eda | /CryptoRedux.cpp | df371290dfc15fd580fea2c153be13e0eede108f | [] | no_license | madcapheathen/CryptoRedux | 1aae5f5b70737a6463f66209002d4e7ad82f9b37 | e27758b27070a08cb665db0d99b527a0fc34cc2c | refs/heads/master | 2021-01-25T12:08:32.931304 | 2016-02-19T06:37:41 | 2016-02-19T06:37:41 | 37,689,479 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,631 | cpp | // CryptoRedux.cpp :
//
// Now with 100% more Git!
#include "Standard_Include.h"
#include "Bitwise.h"
#include <fstream>
using namespace std;
int main(int argc, char* argv[])
{
// Set 1, Challenge 1
//cout << bits_to_b64(hex_to_bits("49276d206b696c6c696e6720796f757220627261696e206c696b65206120706f69736f6e6f757320... | [
"madcapheathen@gmail.com"
] | madcapheathen@gmail.com |
6322cba6f37c5737e1b7c1965bb2c735c1eba957 | 83fa4cc511d9dda8ee4625e9fd432c2c16a504c7 | /Day-1/merge without extra space.cpp | 71d642c5eb20db1c8d1bc25a2eef5a25ceab0348 | [] | no_license | Himansh1706/Competitive-programming-C- | 0cee06f93486c59eedbf6ec6be1313c972647447 | 66062b8f6478948c989e80ad5a9949223ebc6f49 | refs/heads/master | 2023-02-03T01:23:31.704977 | 2020-12-22T19:40:42 | 2020-12-22T19:40:42 | 285,493,597 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,819 | cpp | /* Given two sorted arrays arr1[] and arr2[] in non-decreasing order with size n and m. The task is to merge the two sorted arrays into one sorted array (in non-decreasing order).
Note: Expected time complexity is O((n+m) log(n+m)). DO NOT use extra space. We need to modify existing arrays as following.
Input:
First... | [
"himanshsharma0622@gmail.com"
] | himanshsharma0622@gmail.com |
92102613caa617978877ee4eeff038bf86035ff5 | 8d39f509abf62a0947f3e9dd11a1bc02665b609e | /comp2012h/csd_only/assignments/PA5-InhPoly/Sol/lzhaoaj/LegendAnimal.cpp | ff348b0a95e9f051c8bd77a2a1bb6bab5ab94243 | [] | no_license | clcheungac/clcheungac.github.io | c77c8a0c5b2261cf37602ce644c143e266184277 | 815885f2af89ef3ac32fad607786c6e8fa47c6e0 | refs/heads/master | 2021-01-10T13:08:37.959427 | 2018-12-30T13:44:20 | 2018-12-30T13:44:20 | 48,602,655 | 1 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 550 | cpp | /*
* LegendAnimal.cpp
*
* Created on: 2015Äê11ÔÂ21ÈÕ
* Author: Lucen
*/
#include "LegendAnimal.h"
LegendAnimal::LegendAnimal(Game* game, int player, int position):AnimalAtk(game,player,position){
}
bool LegendAnimal::isLegendAnimal() const{
return true;
}
LegendAnimal::~LegendAnimal(){
}
bool LegendA... | [
"clcheungac@connect.ust.hk"
] | clcheungac@connect.ust.hk |
cd42a4e38cfa5e31feb98ceeced10a991aa3ae94 | 205b4e41e101350a67cc399cc594ae2a7cd210e1 | /Package Inheritance Hierarchy(standard answer)/Package Inheritance Hierarchy/Router.cpp | 4419a2f76b51b3dfbfc1302856a20ec79a6cfa12 | [
"MIT"
] | permissive | JJLOVEXX/programLearningInSCUT | 890310b47dbaf76d4617e1bc1a376da0d7c85fa2 | 525bdbf963086acd281755d17e830aa57f4bc833 | refs/heads/master | 2020-12-22T18:43:10.367234 | 2020-01-30T00:04:12 | 2020-01-30T00:04:12 | 236,882,608 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 99 | cpp | #include "stdafx.h"
#include "Router.h"
Router::Router()
{
}
Router::~Router()
{
}
| [
"895846885@qq.com"
] | 895846885@qq.com |
bf855233981b50a9e94ecbc45cd9a865062e31da | 7b0cb17217327a5d2c8d787fdf8e2c440621ebb2 | /src/modules/cameratools.h | 3b1e059e5d1a3afd09b4dc973d17562bb22b4ebc | [
"BSD-2-Clause"
] | permissive | bmcfetty/StatusSpec | 68ae32bdf1c76726536c96fbf07c5a93cad2db0f | 89031ca4127ab99d169733e44efc0f20fd60cfb7 | refs/heads/master | 2021-07-14T06:17:44.077603 | 2014-12-23T05:24:30 | 2014-12-23T05:24:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 826 | h | /*
* cameratools.h
* StatusSpec project
*
* Copyright (c) 2014 thesupremecommander
* BSD 2-Clause License
* http://opensource.org/licenses/BSD-2-Clause
*
*/
#pragma once
#include "../stdafx.h"
#include <algorithm>
#include <array>
#include <vector>
#include "convar.h"
#include "vgui/IScheme.h"
#include... | [
"thesupremecmdr@gmail.com"
] | thesupremecmdr@gmail.com |
5231e8ee36964c5547a75c8b8ce9c9d94e03f974 | f4c05c00bedd9252b70f7436804644dba5d2fb95 | /剑指offer_c++/51_构建乘积数组.cpp | 1d2f6661ac743a6bad4151faf98284cdbe179b87 | [] | no_license | zhugege215/JianzhiOffer_C | af0768556947a2a2592b61f6635dedc54c3ab2b7 | 7072c21f261fd40eafcd80668e35112d0bc9e766 | refs/heads/master | 2021-05-02T03:59:00.404897 | 2019-03-06T00:59:54 | 2019-03-06T00:59:54 | 120,907,479 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 399 | cpp | #include <vector>
using namespace std;
class Solution {
public:
vector<int> multiply(const vector<int>& A) {
vector <int> vec;
int sz = A.size();
if (sz == 0)
return vec;
vec.push_back(1);
for (int i = 0; i < sz - 1; i++)
vec.push_back(vec.back()*A[i]);
int temp = 1;
for (int i = sz - 1; i >= 0; i... | [
"839568703@qq.com"
] | 839568703@qq.com |
3258288e64fb14a2ea0d2bae76945d4d075d9130 | 8271f54e1c3e7fc13f05f202c7a6b3e7a5561623 | /src/ofxMicroUIRemote.h | b73b9d6bae18fec4992e73a9d79e732e6ecaa25d | [] | no_license | ofxyz/ofxMicroUI | fe5654c32f2cacbbf262b28eb97dd4c7024d7ef9 | 68a4c4a1b280ae3560a484114ec3948eb679e12b | refs/heads/master | 2021-05-18T23:38:49.718348 | 2020-02-10T18:05:13 | 2020-02-10T18:05:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 944 | h | /*
placeholder
*/
#pragma once
#if defined( TARGET_OF_IPHONE ) || defined( TARGET_OF_IOS ) || defined( TARGET_ANDROID )
#define MICROUI_TARGET_TOUCH
#endif
#include "ofEvents.h"
#include "ofxMicroUI.h"
#include "ofxOsc.h"
#ifdef MICROUI_TARGET_TOUCH
#include "ofxAccelerometer.h"
#endif
class ofxMicroUIRemote ... | [
"dimitre@users.noreply.github.com"
] | dimitre@users.noreply.github.com |
9d6da1d16e3828b87d157d4be21b583d6fd257f7 | d8bdd07d7fff442a028ca9edbb4d66660621442d | /src/form/ApplyArgsCont.cpp | 0b813eb8f1d132c0f6f1f4e88e625b7a380bb512 | [] | no_license | xprime480/scam | 0257dc2eae4aede8594b3a3adf0a109e230aae7d | a567d7a3a981979d929be53fce0a5fb5669ab294 | refs/heads/master | 2020-03-31T23:03:19.143250 | 2020-02-10T20:58:59 | 2020-02-10T20:58:59 | 152,641,151 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 919 | cpp | #include "form/ApplyArgsCont.hpp"
#include "ScamEngine.hpp"
#include "env/Env.hpp"
#include "expr/EvalOps.hpp"
#include "value/ScamData.hpp"
#include "value/TypePredicates.hpp"
using namespace scam;
using namespace std;
ApplyArgsCont::ApplyArgsCont(ScamValue op, Continuation * cont, Env * env)
: Continuation("Ap... | [
"xprime480@gmail.com"
] | xprime480@gmail.com |
6c012dcc88450b348363b8744992f9d0109664f5 | 67b29354900dbdb003fb68301a0d4d257e9d0c0c | /EECS_560/Lab08/leftist-min-heap-lab-8/priority-queue.cpp | c7c894267fb32b367bcad8e6a131640d133801a8 | [] | no_license | budlinville/EECS_560 | ed930daa5c85ef0612a6a237b17fb84b8fb71c23 | 0ec7337dc0df183626f009be4ce6d72c2bf39ae5 | refs/heads/master | 2021-09-03T01:44:17.136059 | 2018-01-04T16:42:52 | 2018-01-04T16:42:52 | 112,029,590 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 7,819 | cpp | #include "priority-queue.hpp"
#include "util.hpp"
///////////////////////////////////
// Private Functions Definitions //
///////////////////////////////////
//////////////////////////////////
// Public functions Definitions //
//////////////////////////////////
PriorityQueue::PriorityQueue(){
rootPtr = nullptr;
... | [
"budlinville@gmail.com"
] | budlinville@gmail.com |
bd04bd8d0d3033a0e2fbf37a8f7ae196dff8909f | 63792101db5716e2dcd57668e6d16d26233094b6 | /ch16_drill/ch16_drill.cpp | 4d044dd68f222ff342c152b2d83c48f940c6a01b | [] | no_license | Armisam/prog1 | 357bdfe35b8ac8c8349b67468f6b3c53cbab6bd2 | 2fe4b91062972a473650eff81305ed6abcf42076 | refs/heads/main | 2023-04-10T17:47:28.154765 | 2021-04-19T08:37:35 | 2021-04-19T08:37:35 | 337,112,864 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 150 | cpp | #include "Graph.h"
#include "Lines_window.h"
int main()
{
Lines_window win {Point{100,100}, 600, 400, "lines"};
return gui_main();
}
| [
"csabaszekely99@gmail.com"
] | csabaszekely99@gmail.com |
7607988787896089a469126cd038bdec4087d531 | fb1cd787e80732bd24467f99c4ac6a1725cd3753 | /HowTOVideo.ino | ea6ee7733c3d2ec74a4da37a2a180bf21aed8cbf | [] | no_license | fandican/ESP8266 | 2700628fe9a2da99537e904c1e73e1cc00f0c34e | 94c75abf947083e2f438799478f15f59dd53f122 | refs/heads/master | 2021-01-22T21:57:55.237853 | 2017-03-23T12:42:23 | 2017-03-23T12:42:23 | 85,492,114 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,289 | ino | #include <ESP8266WiFi.h>
#include "Gsender.h"
// digital pin D6 has a door sensor attached to it. Give it a name:
int pushButton = D3;
int buttonState = 0; // current state of the button
int lastButtonState = 0; // previous state of the button
#pragma region Globals
const char* ssid = "WIFINAME"; ... | [
"fbagmu@gmail.com"
] | fbagmu@gmail.com |
ff4460684cedbf1833a3277b12c0b8397941a917 | a44956f74a894a5439ef93df1647c87ed08d3fa2 | /File.h | 523a289f2ea54cd971a6e058977c4718cf127eb8 | [] | no_license | maktal/MDF | f9699c1a655a2392a0eb728801756d656bd39695 | 14fa1dbfb2a536be6a98cafe50cb28771dd6beb0 | refs/heads/master | 2020-03-20T15:47:19.442175 | 2019-09-19T06:14:23 | 2019-09-19T06:14:23 | 137,521,986 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,117 | h | // File.h: interface for the CFile class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_FILE_H__F8CF0BB9_A4AA_4829_AD26_2962F14064A2__INCLUDED_)
#define AFX_FILE_H__F8CF0BB9_A4AA_4829_AD26_2962F14064A2__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER... | [
"maktal@gmail.com"
] | maktal@gmail.com |
8d7ce22e29021302f4c008b03fc6734652380b50 | 64dfe7e6a139044799a6a54dfc2ba04c09479c8d | /Image Algorithm/image analysis/image segmentation/SLIC/slic.cpp | 7e806e86cdec9c739ee7918d748c27cdaa0955a1 | [] | no_license | chierqj/ML-and-Image | 9a1c9956eb90e41b06b0114012c4813dfcf8c9e1 | 92adc3530167ac1478808770f19baf81a18a086a | refs/heads/master | 2021-10-24T05:38:48.266694 | 2019-03-22T11:38:31 | 2019-03-22T11:38:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,432 | cpp | #include "slic.h"
/*
* Constructor. Nothing is done here.
*/
Slic::Slic() {
}
/*
* Destructor. Clear any present data.
*/
Slic::~Slic() {
clear_data();
}
/*
* Clear the data as saved by the algorithm.
*
* Input : -
* Output: -
*/
void Slic::clear_data() {
clusters.clear();
distances.clear();
... | [
"1152591772@qq.com"
] | 1152591772@qq.com |
224fab0034b6bce8d6e75d8b87a70c8e532419c6 | f4c1902534825c7b97a9392e78b148345a011147 | /DataStructure/SegmentTree/UESTC1073.cpp | 71c18956e18d325fc2d51df90669ead28ce983aa | [] | no_license | obsolescenceL/obsolescenceL | 6443fbfc88f5286007800b809839ef3b663b6ce0 | 096f50469beb0c98b71b828d185b685d071177ed | refs/heads/master | 2020-04-04T00:15:43.241792 | 2017-06-10T05:24:38 | 2017-06-10T05:24:38 | 28,584,497 | 3 | 2 | null | 2017-06-10T05:24:39 | 2014-12-29T07:41:23 | C++ | UTF-8 | C++ | false | false | 1,916 | cpp | /*************************************************************************
File Name: UESTC1073.cpp
ID: obsoles1
LANG: C++
Mail: 384099319@qq.com
Created Time: 2015年05月23日 星期六 17时24分00秒
************************************************************************/
#include<cstdio>
#include<cstrin... | [
"384099319@qq.com"
] | 384099319@qq.com |
6cc60e8323ae8ad7bfe8d80fc90f6ec219bfc31f | c022f16e7be5c20cb479ec1a884bc72aa926a8eb | /Beeftext/Group/Group.cpp | 9add31f78fd7464ab968d2c82c18cf1527a368bb | [
"LGPL-3.0-only",
"OpenSSL",
"MIT"
] | permissive | danijeljw/Beeftext | 8b59260b28a0d95ddb40a6e26b2d05a669a5a1ec | fa06366a25bf5687fc7107f53f59693bcd98c14b | refs/heads/master | 2020-09-21T16:19:25.059298 | 2019-11-20T16:11:03 | 2019-11-20T16:11:03 | 224,846,293 | 0 | 0 | MIT | 2019-11-29T12:05:05 | 2019-11-29T12:02:23 | null | UTF-8 | C++ | false | false | 6,674 | cpp | /// \file
/// \author Xavier Michelon
///
/// \brief Implementation of combo group class
///
/// Copyright (c) Xavier Michelon. All rights reserved.
/// Licensed under the MIT License. See LICENSE file in the project root for full license information.
#include "stdafx.h"
#include "Group.h"
#include <utility>
#inc... | [
"xmichelo@gmail.com"
] | xmichelo@gmail.com |
8a409861e07154bc3a433079f55ed10b228ee1b5 | fef7dfa0475cb868a5a14432eba57a81693f357d | /Management_System_Xion_2.7/include/TransaxinventarioNegocio.h | 84c980c99098b13194b4611e6897b9d29d722a7c | [] | no_license | EzequielEduardo/LAB2-SEGUNDO-PARCIAL | a656845d61d0db3ab2a619f5ab68755d9223e4cc | bad1897538361031e07b6987b44c630df51f8683 | refs/heads/main | 2023-05-31T13:52:52.378898 | 2021-07-14T15:44:10 | 2021-07-14T15:44:10 | 373,639,841 | 0 | 0 | null | 2021-06-06T21:59:55 | 2021-06-03T21:00:09 | C++ | UTF-8 | C++ | false | false | 253 | h | #ifndef TRANSAXINVENTARIONEGOCIO_H
#define TRANSAXINVENTARIONEGOCIO_H
#include "Transaxinventario.h"
class TransaxinventarioNegocio
{
public:
void actualizarstock(bool,TransaxInventario);
};
#endif // TRANSAXINVENTARIONEGOCIO_H
| [
"noreply@github.com"
] | noreply@github.com |
f209abf8622576fbc9677f632c0bf1854be0c212 | 9ab722e6b9e4ce741cc6f865ba97e0fdc0ad14e5 | /library/view/native_theme_painter.cpp | 5d717a549ec0f6066f70d21ac35255fe76c725eb | [
"MIT"
] | permissive | csjy309450/PuTTY-ng | b892c6474c8ff797f1d0bf555b08351da4fe617b | 0af73729d45d51936810f675d481c47e5588407b | refs/heads/master | 2022-12-24T13:31:22.786842 | 2020-03-08T16:53:51 | 2020-03-08T16:53:51 | 296,880,184 | 1 | 0 | MIT | 2020-09-19T13:54:25 | 2020-09-19T13:54:24 | null | UTF-8 | C++ | false | false | 2,138 | cpp |
#include "native_theme_painter.h"
#include "base/logging.h"
#include "ui_gfx/canvas_skia.h"
#include "ui_gfx/rect.h"
#include "ui_base/animation/animation.h"
#include "native_theme_delegate.h"
namespace view
{
NativeThemePainter::NativeThemePainter(NativeThemeDelegate* delegate)
: delegate_(delegate)... | [
"wlwlxj@gmail.com@b2b8c3b8-ce47-b78c-ec54-380d862a5473"
] | wlwlxj@gmail.com@b2b8c3b8-ce47-b78c-ec54-380d862a5473 |
813cd6ebd3695c7e876485353068757370c570b2 | 5144bebd786c4ed9a08583c3e9e797f3079b2c8b | /src/Scene/Scene.cpp | 3d05e6847dc1a3060e5bdcfd3aef677fe20bfe06 | [
"MIT"
] | permissive | swindesr/ss_raytracer | 62b49afdbf2656aa2263132af46661e64c65cff0 | 44fc726fb97cf4a2b1aefc5026b37ab7b8eaedaa | refs/heads/main | 2023-03-04T03:35:22.388316 | 2021-02-16T02:40:40 | 2021-02-16T02:40:40 | 339,261,460 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 621 | cpp | #include "Scene.h"
#include "Light/Color.h"
#include "variables.h"
Scene::Scene(const Sampler& sampler, const Painter& painter, const Camera& camera, const RayTracer& rt)
: sampler_(sampler), painter_(painter), camera_(camera), ray_tracer_(rt) {}
// Loop through every pixel, trace its ray, and paint it
void Scene... | [
"swindesr@users.noreply.github.com"
] | swindesr@users.noreply.github.com |
2036252bf53687c8497b94b34dc49b0e9e5b2d02 | 8d1725e2bedd244d7bc865df75317a85d2468e93 | /qt_core/c_lib/src/qt_core_c_QThread.cpp | eacb059ca3a1f1db0f8990b928b5e90abb6c3c67 | [] | no_license | aristotle9/qt_generator-output | 04100597f923b117314afcc80f0ea85417d342be | be98dd92de8d2e2c43cf8e9e20ebd1316fd4b101 | refs/heads/master | 2021-07-23T12:20:15.277052 | 2017-10-24T08:20:03 | 2017-10-24T08:20:03 | 108,097,475 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,548 | cpp | #include "qt_core_c_QThread.h"
QThread* qt_core_c_QThread_G_dynamic_cast_QThread_ptr(QObject* ptr) {
return dynamic_cast<QThread*>(ptr);
}
QObject* qt_core_c_QThread_G_static_cast_QObject_ptr(QThread* ptr) {
return static_cast<QObject*>(ptr);
}
QThread* qt_core_c_QThread_G_static_cast_QThread_ptr(QObject* ptr) {... | [
"lanfan.1987@gmail.com"
] | lanfan.1987@gmail.com |
e714da230d71c5fe872d8d26647347b469fbe7f5 | 50934b4a85143039da1a52b554a503e430f05a54 | /src/qt/askpassphrasedialog.cpp | 13bbd63b49c694d26150d5f201ead174fc80fbe4 | [
"MIT"
] | permissive | bignev/GIVEAWAY | 23e079700cebf836bd7ed76fbe9f182765695f0d | 3f5299ea4c4ab70df376d96718e3bf8f35f3a06a | refs/heads/master | 2021-01-24T22:44:44.945507 | 2015-10-28T07:48:06 | 2015-10-28T07:48:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,000 | cpp | #include "askpassphrasedialog.h"
#include "ui_askpassphrasedialog.h"
#include "guiconstants.h"
#include "walletmodel.h"
#include <QMessageBox>
#include <QPushButton>
#include <QKeyEvent>
extern bool fWalletUnlockStakingOnly;
AskPassphraseDialog::AskPassphraseDialog(Mode mode, QWidget *parent) :
QDialog(parent),... | [
"freecoin@scryptmail.com"
] | freecoin@scryptmail.com |
22ccbe0ab3fabb03a724d7c72aa414d05ccea371 | fccf6a532586b8a4e59eaa021e9f9a31a0a8b05f | /Evaluador.cpp | 551e39e0f016eacb46a994423d3c4d89457bf303 | [] | no_license | williamFportillo/Tareaprogramacion1 | 61f7bf8178fd1dd01f67d9989e7c4553c4d98d10 | 2b1fc77d34c8e95570f6d8d19d7808a26fd563fb | refs/heads/master | 2021-06-28T14:48:43.344531 | 2017-09-15T03:47:53 | 2017-09-15T03:47:53 | 103,610,838 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,455 | cpp | #include "Evaluador.h"
string getPrimerElemento(stack<string> mi_cola);
void evaluar()
{
float nota = 0;
int sumar(int a, int b);
int restar(int a, int b);
int multiplicar(int a, int b);
int dividir(int a, int b);
int getMayor(int a, int b);
int getMenor(int a, int b);
int getMayor(... | [
"portillowilliam18@gmail.com"
] | portillowilliam18@gmail.com |
1266ef40d85d3f7cf35cd310a048ac1a762184ad | 680440f5e59eb2157c1ecb41fd891880ac47c459 | /XJOI/Level2/XJOI1160 选择排序/choose.cpp | 97be7db4466f27cb80a2d318e1b5d19d149fa2cf | [] | no_license | Skywt2003/codes | a705dc3a4f5f79d47450179fc597bd92639f3d93 | 0e09198dc84e3f6907a11b117a068f5e0f55ca68 | refs/heads/master | 2020-03-29T09:29:54.014364 | 2019-11-15T12:39:47 | 2019-11-15T12:39:47 | 149,760,952 | 6 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 545 | cpp | #include<cstdio>
#include<cstring>
#include<iostream>
using namespace std;
const int maxn=1005;
int n,a[maxn];
inline int read(){
int ret=0,f=1;char ch=getchar();
while (ch<'0'||ch>'9') {if (ch=='-') f=-1;ch=getchar();}
while (ch>='0'&&ch<='9') ret=ret*10+ch-'0',ch=getchar();
return ret*f;
}
int main(){... | [
"skywt2003@gmail.com"
] | skywt2003@gmail.com |
8c98cf9d6a25309020a6fcb4f0e9cd2359e49e27 | e0ccf15621f604f9932de759cce2ee407ae4ece5 | /src/MagnumPlugins/GlslangShaderConverter/Test/GlslangConverterTest.cpp | 8d2b89531e5592722b730859356d1770e9579842 | [
"MIT"
] | permissive | mosra/magnum-plugins | 65e722d32f920c9bd9d3684528c2056b5e328fed | 6d57e20347d92d5b43dd6c74a8ba2a4f8bf891e2 | refs/heads/master | 2023-08-17T18:27:44.289631 | 2023-08-17T16:00:11 | 2023-08-17T16:03:43 | 2,982,886 | 113 | 77 | NOASSERTION | 2023-09-04T21:05:59 | 2011-12-14T20:43:25 | C++ | UTF-8 | C++ | false | false | 43,270 | cpp | /*
This file is part of Magnum.
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019,
2020, 2021, 2022, 2023 Vladimír Vondruš <mosra@centrum.cz>
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation ... | [
"mosra@centrum.cz"
] | mosra@centrum.cz |
e458854a6f52c93a289f2f497b4159136c72118f | 4f4ddc396fa1dfc874780895ca9b8ee4f7714222 | /src/twng/tests/TestJString.cpp | f4a711bd8f1d21333af5abd44497817a91df957c | [] | no_license | UtsavChokshiCNU/GenSym-Test2 | 3214145186d032a6b5a7486003cef40787786ba0 | a48c806df56297019cfcb22862dd64609fdd8711 | refs/heads/master | 2021-01-23T23:14:03.559378 | 2017-09-09T14:20:09 | 2017-09-09T14:20:09 | 102,960,203 | 3 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 983 | cpp | #include "stdafx.h"
#include "TestJString.h"
#include "JString.h"
CPPUNIT_TEST_SUITE_REGISTRATION(TestJString);
void TestJString::Test()
{
JString str1 = "mwef[m[23-3j-23ej2mfmoewmo fnofnopinfo-n-0320-j23rnf2nfqwdqwmlqw";
JString str2 = str1;
CPPUNIT_ASSERT(Equal(str1, str2));
CString strX = _T("... | [
"utsavchokshi@Utsavs-MacBook-Pro.local"
] | utsavchokshi@Utsavs-MacBook-Pro.local |
7bd4404f5efe4dcf7a63a25681423a9af9e9c2e7 | 0f1be23bd2715d1b9e1d4a160f5a177b38323e03 | /hw6/curricula.hpp | 6e4b43b2b0e740ff64f06e267b956d1431e38122 | [] | no_license | usc-csci104-fall2019/homework_grading | 9c85ad3a85af1c4b37e3248c004691299e105a5a | b47d0fbcf1e6a3a5bf329a09cb3b3f4dad9846a8 | refs/heads/master | 2020-08-13T00:41:24.276277 | 2019-12-19T05:37:16 | 2019-12-19T05:37:16 | 214,876,032 | 2 | 12 | null | null | null | null | UTF-8 | C++ | false | false | 682 | hpp | #include <vector>
#include <string>
#include <functional>
#define EXPECT_TRUE(condition) if (!condition) { return 1; }
#define EXPECT_FALSE(condition) if (condition) { return 1; }
#define EXPECT_EQUAL(left, right) if (left != right) { return 1; }
#define EXPECT_UNEQUAL(left, right) if (left == right) { return 1; }
#de... | [
"noahbkim@gmail.com"
] | noahbkim@gmail.com |
a073818797faa46ad7c6635dac72352bb7de15bd | 9648a5a603908a5c1c13cf25dd0db50deccfa0ad | /BasicLevel/C(C++)/1020.cpp | 7ed8425babecc26112948f097fe8d3212dee032c | [] | no_license | lwxwl/PAT | efae6caa53438adf711e4238f975483558188cbe | ba885fe8e19398a8e958505d9210447d129de70e | refs/heads/master | 2021-01-19T11:09:07.478120 | 2017-09-16T09:05:57 | 2017-09-16T09:05:57 | 87,933,153 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 945 | cpp | #include <iostream>
#include <algorithm>
using namespace std;
struct yueBing {
float unitPrice; // 单价
float inventory; // 库存量
float totalPrice; // 总售价
};
bool compare(yueBing a, yueBing b) {
return a.unitPrice > b.unitPrice;
}
int main() {
int n, d;
cin >> n >> d;
yueBing *yueBing1 ... | [
"673834671@qq.com"
] | 673834671@qq.com |
6f94b2332e4d4821111acc1543698e220d9979b8 | 1505db51031fb3b81cff6f061e050626ebad88e3 | /cascadescookbookcpp/src/recipes/colorrecipe.cpp | bc43e02540ca95e8c134c9c2d3ae50798257992d | [
"Apache-2.0"
] | permissive | dvijayak/Cascades-Samples | 6070954811891061c054ba5fcb8f56fad5c56ff3 | 000886fd612691d998a87c7045932d3baf359431 | refs/heads/master | 2021-01-17T21:31:53.763664 | 2013-04-23T18:24:31 | 2013-04-23T18:24:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,149 | cpp | /* Copyright (c) 2012 Research In Motion Limited.
*
* 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 ... | [
"jlarsby@rim.com"
] | jlarsby@rim.com |
9474deff2af5b3f2f13d27cb94e9cdb9068d0ec9 | 5b4312ddc24f29538dce0444b7be81e17191c005 | /autoware.ai/1.12.0/devel/.private/vector_map_server/include/vector_map_server/GetCrossWalkRequest.h | 8b73da7b90d976bc77689964ac0d79908fd28b5f | [
"MIT"
] | permissive | muyangren907/autoware | b842f1aeb2bfe7913fb2be002ea4fc426b4e9be2 | 5ae70f0cdaf5fc70b91cd727cf5b5f90bc399d38 | refs/heads/master | 2020-09-22T13:08:14.237380 | 2019-12-03T07:12:49 | 2019-12-03T07:12:49 | 225,167,473 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,077 | h | // Generated by gencpp from file vector_map_server/GetCrossWalkRequest.msg
// DO NOT EDIT!
#ifndef VECTOR_MAP_SERVER_MESSAGE_GETCROSSWALKREQUEST_H
#define VECTOR_MAP_SERVER_MESSAGE_GETCROSSWALKREQUEST_H
#include <string>
#include <vector>
#include <map>
#include <ros/types.h>
#include <ros/serialization.h>
#includ... | [
"907097904@qq.com"
] | 907097904@qq.com |
ca32d41d6c916727dc1f11d6f51f041e1e6166ab | 84cb6172f8afd975707c486b11ac8c812960a8a1 | /cf275A.cpp | 761a9eab09610aa8bc5a06e1b42bffe583179982 | [] | no_license | numan947/Curiously-Bored | d4d761923102831cac83c828e2e6a44daa5d5ac7 | 7bfffec3989d6cb75697bf7f569da01c3adb1a19 | refs/heads/master | 2021-07-10T22:01:27.716481 | 2020-07-02T19:16:16 | 2020-07-02T19:16:16 | 152,405,037 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,922 | cpp | #include <bits/stdc++.h>
using namespace std;
/*Like set but has some more functionality:
1. Find kth smallest minimum
2. Find the index of an element
Does these in O(log n) time
How to use:
ordered_set<type> ss;
ss.insert(val);
ss.insert(val);
ss.insert(val);
cout<<ss.ordere_of_key(val)<<endl; // number of... | [
"mahmudulhasan947@gmail.com"
] | mahmudulhasan947@gmail.com |
859b32fbcca7b7b632fa59f41117f0eb83da016f | 4382d8e976816ba2be05621b3566df9d5be9c0a6 | /OpenHome/Net/Bindings/Cpp/ControlPoint/Proxies/CpUpnpOrgContentDirectory2Std.cpp | c7308b8a2e53a13476b5032d61c226608331b454 | [
"MIT"
] | permissive | openhome/ohNetGenerated | f9e9fc591d52c1a2ed69c676046af4e931c22f7c | 05270d36e77f97a2ffd0f9eb44249a908c333d71 | refs/heads/master | 2020-12-13T18:39:35.802161 | 2018-07-12T13:09:23 | 2018-07-12T13:09:23 | 22,726,722 | 1 | 6 | null | 2016-10-17T12:43:53 | 2014-08-07T15:38:18 | C++ | UTF-8 | C++ | false | false | 56,032 | cpp | #include "CpUpnpOrgContentDirectory2.h"
#include <OpenHome/Net/Core/CpProxy.h>
#include <OpenHome/Net/Private/CpiService.h>
#include <OpenHome/Private/Thread.h>
#include <OpenHome/Net/Private/AsyncPrivate.h>
#include <OpenHome/Buffer.h>
#include <OpenHome/Net/Cpp/CpDevice.h>
#include <OpenHome/Net/Private/CpiDevice.h>
... | [
"simon.chisholm@linn.co.uk"
] | simon.chisholm@linn.co.uk |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.