View binary_search.cpp
#include <vector> | |
/** | |
Given an non-decreasing ordered array `arr`, search the biggest `i` that makes `arr[i] == value`. | |
If `i` doesn't exist, return -1 | |
*/ | |
int search_last_match(const std::vector<int>& arr, const int value) | |
{ | |
int lef = 0, rig = static_cast<int>(arr.size()); | |
while (rig-lef > 1) |
View mesg.js
/* | |
* GET message listing => show() | |
* POST meaasge posting => send() | |
*/ | |
var settings = require('../settings'); | |
var group = require('../models/group'); | |
var mesg = require('../models/mesg'); | |
var md = require('markdown').markdown.toHTML; |
NewerOlder